diff --git a/.github/workflows/run_inferno_execution_scripts.yml b/.github/workflows/run_inferno_execution_scripts.yml new file mode 100644 index 000000000..de2bef117 --- /dev/null +++ b/.github/workflows/run_inferno_execution_scripts.yml @@ -0,0 +1,106 @@ +name: Run Inferno Execution Scripts + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + + find-execution-scripts: + runs-on: ubuntu-latest + outputs: + scripts: ${{ steps.list.outputs.scripts }} + steps: + - uses: actions/checkout@v4 + - id: list + run: | + scripts=$(find execution_scripts -name '*.yaml' | sort | jq -R -s -c 'split("\n") | map(select(length > 0))') + echo "scripts=$scripts" >> "$GITHUB_OUTPUT" + + test: + needs: find-execution-scripts + runs-on: ubuntu-latest + strategy: + fail-fast: false # let all files run even if one fails + matrix: + config: ${{ fromJson(needs.find-execution-scripts.outputs.scripts) }} + + steps: + - name: Checkout Inferno + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Start Inferno + run: | + gem install foreman + mkdir -p data/redis && chmod 777 data/redis + bundle exec inferno services start + timeout 30 bash -c \ + 'until docker compose -f docker-compose.background.yml exec -T redis redis-cli ping 2>/dev/null; do + echo "Waiting for Redis..."; sleep 2 + done' + bundle exec inferno migrate + bundle exec inferno start &> /tmp/inferno.log & + echo $! > /tmp/inferno.pid + echo "Inferno PID: $(cat /tmp/inferno.pid)" + + - name: Wait for Inferno to be ready + run: | + timeout 60 bash -c \ + 'until curl -sf http://localhost:4567 > /dev/null; do + echo "Waiting for Inferno..."; sleep 3 + done' + echo "Inferno is ready" + + - name: Run execution script + run: | + flags="" + [[ "${{ matrix.config }}" == *_with_commands.yaml ]] && flags="--allow-commands" + bundle exec inferno execute_script $flags "${{ matrix.config }}" + + - name: Compute debug artifact paths + if: failure() + id: debug-paths + run: | + dir=$(dirname "${{ matrix.config }}") + prefix=$(basename "${{ matrix.config }}" .yaml) + echo "name=debug-$prefix" >> "$GITHUB_OUTPUT" + mkdir -p /tmp/docker_logs /tmp/debug_results + for service in $(docker compose -f docker-compose.background.yml config --services 2>/dev/null || true); do + docker compose -f docker-compose.background.yml logs "$service" > "/tmp/docker_logs/${service}.log" 2>&1 || true + done + find "$dir" -maxdepth 1 \( -name "${prefix}*_actual_results_*.json" -o -name "${prefix}*_compared_results_*.csv" \) \ + -exec cp {} /tmp/debug_results/ \; 2>/dev/null || true + + - name: Upload debug artifacts on failure + if: failure() + uses: actions/upload-artifact@v4 + with: + name: ${{ steps.debug-paths.outputs.name }} + path: | + /tmp/debug_results/* + /tmp/inferno.log + /tmp/docker_logs/*.log + if-no-files-found: ignore + + - name: Stop Inferno + if: ${{ always() }} + run: | + if [[ -f /tmp/inferno.pid ]]; then + kill "$(cat /tmp/inferno.pid)" 2>/dev/null || true + rm /tmp/inferno.pid + fi + + - name: Stop Inferno services + if: ${{ always() }} + run: bundle exec inferno services stop + diff --git a/.gitignore b/.gitignore index 8f3cc8ca6..a97c5c513 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,7 @@ node_modules .rubocop.yml /lib/us_core_test_kit/igs/package + +# execution script failed run artifacts +execution_scripts/**/*_actual_results*.json +execution_scripts/**/*_compared_results*.csv diff --git a/Gemfile b/Gemfile index dd583968f..2c42d7cc1 100644 --- a/Gemfile +++ b/Gemfile @@ -7,4 +7,5 @@ gemspec group :development, :test do gem 'debug' gem 'rack-test' + gem 'selenium-webdriver' end diff --git a/Gemfile.lock b/Gemfile.lock index e6091654a..1435c8e9f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,8 +2,8 @@ PATH remote: . specs: us_core_test_kit (1.1.2) - inferno_core (~> 1.2, >= 1.2.2) - smart_app_launch_test_kit (~> 1.0, >= 1.0.1) + inferno_core (~> 1.3, >= 1.3.1) + smart_app_launch_test_kit (~> 1.0, >= 1.0.2) tls_test_kit (~> 1.0, >= 1.0.2) GEM @@ -24,6 +24,8 @@ GEM addressable (2.9.0) public_suffix (>= 2.0.2, < 8.0) aes_key_wrap (1.1.0) + auth-sanitizer (0.1.4) + version_gem (~> 1.1, >= 1.1.9) base62-rb (0.3.1) base64 (0.3.0) bcp47 (0.3.3) @@ -153,7 +155,7 @@ GEM mutex_m i18n (1.14.8) concurrent-ruby (~> 1.0) - inferno_core (1.2.2) + inferno_core (1.3.1) activesupport (~> 7.2.3.1) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -197,7 +199,7 @@ GEM aes_key_wrap bindata httpclient - jwt (2.10.2) + jwt (3.2.0) base64 kramdown (2.5.2) rexml (>= 3.4.4) @@ -237,13 +239,14 @@ GEM racc (~> 1.4) nokogiri (1.19.3-x86_64-linux-musl) racc (~> 1.4) - oauth2 (2.0.18) + oauth2 (2.0.20) + auth-sanitizer (~> 0.1, >= 0.1.3) faraday (>= 0.17.3, < 4.0) jwt (>= 1.0, < 4.0) logger (~> 1.2) multi_xml (~> 0.5) rack (>= 1.2, < 4) - snaky_hash (~> 2.0, >= 2.0.3) + snaky_hash (~> 2.0, >= 2.0.4) version_gem (~> 1.1, >= 1.1.9) oj (3.11.0) pastel (0.8.0) @@ -304,18 +307,24 @@ GEM ruby2_keywords (0.0.5) rubyzip (2.4.1) securerandom (0.4.1) + selenium-webdriver (4.41.0) + base64 (~> 0.2) + logger (~> 1.4) + rexml (~> 3.2, >= 3.2.5) + rubyzip (>= 1.2.2, < 4.0) + websocket (~> 1.0) sequel (5.42.0) sidekiq (7.2.4) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.19.0) - smart_app_launch_test_kit (1.0.1) + smart_app_launch_test_kit (1.0.2) inferno_core (~> 1.2, >= 1.2.2) json-jwt (~> 1.15.3) - jwt (~> 2.6) + jwt (~> 3.2) tls_test_kit (~> 1.0, >= 1.0.2) - snaky_hash (2.0.3) + snaky_hash (2.0.4) hashie (>= 0.1.0, < 6) version_gem (>= 1.1.8, < 3) sqlite3 (1.7.3-aarch64-linux) @@ -352,7 +361,8 @@ GEM addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) - zeitwerk (2.7.5) + websocket (1.2.11) + zeitwerk (2.8.1) PLATFORMS aarch64-linux @@ -372,6 +382,7 @@ DEPENDENCIES factory_bot (~> 6.1) rack-test rspec (~> 3.10) + selenium-webdriver us_core_test_kit! webmock (~> 3.11) @@ -379,6 +390,7 @@ CHECKSUMS activesupport (7.2.3.1) sha256=11ebed516a43a0bb47346227a35ebae4d9427465a7c9eb197a03d5c8d283cb34 addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af aes_key_wrap (1.1.0) sha256=b935f4756b37375895db45669e79dfcdc0f7901e12d4e08974d5540c8e0776a5 + auth-sanitizer (0.1.4) sha256=ded72221d4d3a7c91e34e8a87b21e6a42cbf7829697f140dcf49d542422faedc base62-rb (0.3.1) sha256=24e084c7e4101366ced80facf46913e4fe975b18409c55772747f44d18bf6aa0 base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b bcp47 (0.3.3) sha256=e203e81a8f94425a0cbd3b2f05f466e5b321f38697412ba9cd121e02382d0825 @@ -436,11 +448,11 @@ CHECKSUMS http-cookie (1.1.6) sha256=ba4b82be64de61dc281243dac70e3c382c45142f20268ed9276a3670c93feaa9 httpclient (2.9.0) sha256=4b645958e494b2f86c2f8a2f304c959baa273a310e77a2931ddb986d83e498c8 i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5 - inferno_core (1.2.2) sha256=1ad8cfcb53a3c55723b4b802d467b7ff638a86ee81df4e425aba36c74bcd4284 + inferno_core (1.3.1) io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3 json-jwt (1.15.3.1) sha256=92b27378212b6aa72aba93a537eabd7f7ac7ad38e12b638863cd7727e0dcb08f - jwt (2.10.2) sha256=31e1ee46f7359883d5e622446969fe9c118c3da87a0b1dca765ce269c3a0c4f4 + jwt (3.2.0) sha256=5419b1fe37b1da0982bd07051f573a8b8789ab724c2aa7e785e4784a3ed217d7 kramdown (2.5.2) sha256=1ba542204c66b6f9111ff00dcc26075b95b220b07f2905d8261740c82f7f02fa kramdown-parser-gfm (1.1.0) sha256=fb39745516427d2988543bf01fc4cf0ab1149476382393e0e9c48592f6581729 logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203 @@ -463,7 +475,7 @@ CHECKSUMS nokogiri (1.19.3-x86_64-darwin) sha256=77f3fba57d46c53ab31e62fc6c28f705109d1bf6264356c76f132b2be5728d4d nokogiri (1.19.3-x86_64-linux-gnu) sha256=2f5078620fe12e83669b5b17311b32532a8153d02eee7ad06948b926d6080976 nokogiri (1.19.3-x86_64-linux-musl) sha256=248c906d2166eca5efb56d52fdee5f9a1f51d69a72e2b64fdac647b4ce39ea3f - oauth2 (2.0.18) sha256=bacf11e470dfb963f17348666d0a75c7b29ca65bc48fd47be9057cf91a403287 + oauth2 (2.0.20) sha256=790c6316346da12f9dcaf27a67530f802950af05d35c3874918da84f2deae674 oj (3.11.0) sha256=470d6ac425efd19c526ecea1cabb0219dd8bbcbdeeec57bd45a803b5e082ab5b pastel (0.8.0) sha256=481da9fb7d2f6e6b1a08faf11fa10363172dc40fd47848f096ae21209f805a75 pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6 @@ -493,10 +505,11 @@ CHECKSUMS ruby2_keywords (0.0.5) sha256=ffd13740c573b7301cf7a2e61fc857b2a8e3d3aff32545d6f8300d8bae10e3ef rubyzip (2.4.1) sha256=8577c88edc1fde8935eb91064c5cb1aef9ad5494b940cf19c775ee833e075615 securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1 + selenium-webdriver (4.41.0) sha256=cdc1173cd55cf186022cea83156cc2d0bec06d337e039b02ad25d94e41bedd22 sequel (5.42.0) sha256=d7309e3f792372ffad1d06a7ff826bdefa86623a055bc2f57b344eca5c77848b sidekiq (7.2.4) sha256=810e02f486ce5e102dbe6b71a19b4bf839791e11b74942ec38f5e1a6d44a0778 - smart_app_launch_test_kit (1.0.1) sha256=e2d8922dbc5f0e38203d5a35e4aa5beaeeed84eb1e176791be1ffaf3f885b5ce - snaky_hash (2.0.3) sha256=25a3d299566e8153fb02fa23fd9a9358845950f7a523ddbbe1fa1e0d79a6d456 + smart_app_launch_test_kit (1.0.2) sha256=c2f9a8d387e848a5048a037cdfb822d9e16544cdb5d4551a95c0e1d536f6f721 + snaky_hash (2.0.4) sha256=2b12758c57defa6796341a1620f84b1a23737421d8d7e2575d0550b53cc4fece sqlite3 (1.7.3-aarch64-linux) sha256=0ccb8c001cd2617f4801a2c816142d3c9bc299e3f3e0f49e03812f3610b0891c sqlite3 (1.7.3-arm-linux) sha256=eb653026d44f8502b74564e585245485a5667d72f8888854e53c561f816541b0 sqlite3 (1.7.3-arm64-darwin) sha256=b956160cc882d2568f332f915c9fe27cae9a4521b202d6e7ea540171c88e4600 @@ -518,7 +531,8 @@ CHECKSUMS us_core_test_kit (1.1.2) version_gem (1.1.9) sha256=0c1a0962ae543c84a00889bb018d9f14d8f8af6029d26b295d98774e3d2eb9a4 webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90 - zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd + websocket (1.2.11) sha256=b7e7a74e2410b5e85c25858b26b3322f29161e300935f70a0e0d3c35e0462737 + zeitwerk (2.8.1) sha256=1c85e0f28954d68cd16e575da37f26846f609b68d80b5942ccfd31030c2449d5 BUNDLED WITH 2.5.22 diff --git a/Rakefile b/Rakefile index ba716218b..82b46f520 100644 --- a/Rakefile +++ b/Rakefile @@ -27,3 +27,16 @@ namespace :us_core do USCoreTestKit::Client::Generator.generate end end + +namespace :execute_scripts do + desc 'Run all execution script YAML files against a local Inferno instance (already running). ' \ + 'Optional FILTER env var restricts by File.fnmatch pattern, e.g. FILTER="execution_scripts/demo/*". ' \ + 'Optional INFERNO_BASE_URL env var sets the target Inferno URL, e.g. INFERNO_BASE_URL="http://localhost:4567/"' + task :run_all do + require 'inferno/utils/execution_script_runner' + Inferno::Utils::ExecutionScriptRunner.run_all( + pattern: ENV.fetch('FILTER', 'execution_scripts/**/*.yaml'), + inferno_base_url: ENV.fetch('INFERNO_BASE_URL', nil) + ) + end +end \ No newline at end of file diff --git a/config/presets/inferno_reference_server_311_preset.json b/config/presets/inferno_reference_server_311_preset.json index 4844e4242..cb704cc0e 100644 --- a/config/presets/inferno_reference_server_311_preset.json +++ b/config/presets/inferno_reference_server_311_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v311_vs_ref_server", "test_suite_id": "us_core_v311", "inputs": [ { diff --git a/config/presets/inferno_reference_server_400_preset.json b/config/presets/inferno_reference_server_400_preset.json index 0f75d6f7e..a21e07fcd 100644 --- a/config/presets/inferno_reference_server_400_preset.json +++ b/config/presets/inferno_reference_server_400_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v400_vs_ref_server", "test_suite_id": "us_core_v400", "inputs": [ { diff --git a/config/presets/inferno_reference_server_501_preset.json b/config/presets/inferno_reference_server_501_preset.json index a560e3071..7b69d605a 100644 --- a/config/presets/inferno_reference_server_501_preset.json +++ b/config/presets/inferno_reference_server_501_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v501_vs_ref_server", "test_suite_id": "us_core_v501", "inputs": [ { diff --git a/config/presets/inferno_reference_server_610_preset.json b/config/presets/inferno_reference_server_610_preset.json index 5e7394548..34a3cf5bc 100644 --- a/config/presets/inferno_reference_server_610_preset.json +++ b/config/presets/inferno_reference_server_610_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v610_vs_ref_server", "test_suite_id": "us_core_v610", "inputs": [ { diff --git a/config/presets/inferno_reference_server_700_preset.json b/config/presets/inferno_reference_server_700_preset.json index 9301bd782..ce6a333dd 100644 --- a/config/presets/inferno_reference_server_700_preset.json +++ b/config/presets/inferno_reference_server_700_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v700_vs_ref_server", "test_suite_id": "us_core_v700", "inputs": [ { diff --git a/config/presets/inferno_reference_server_800_preset.json b/config/presets/inferno_reference_server_800_preset.json index 8125268bd..b144be684 100644 --- a/config/presets/inferno_reference_server_800_preset.json +++ b/config/presets/inferno_reference_server_800_preset.json @@ -1,6 +1,6 @@ { "title": "Inferno Reference Server", - "id": null, + "id": "us_core_v800_vs_ref_server", "test_suite_id": "us_core_v800", "inputs": [ { diff --git a/docker-compose.background.yml b/docker-compose.background.yml index f89b746b4..3a167a623 100644 --- a/docker-compose.background.yml +++ b/docker-compose.background.yml @@ -1,7 +1,7 @@ version: '3' services: hl7_validator_service: - image: infernocommunity/inferno-resource-validator + image: infernocommunity/inferno-resource-validator:1.0.78 environment: # Defines how long validator sessions last if unused, in minutes: # Negative values mean sessions never expire, 0 means sessions immediately expire diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_311.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_311.yaml new file mode 100644 index 000000000..0aa70f30f --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_311.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v311 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 3.1.1 session created + status: created + start_run: + runnable: 2 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 2 US Core FHIR API + + - state_description: Finished Group 2 US Core FHIR API + status: done + last_completed: 2 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_311_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_311_expected.json new file mode 100644 index 000000000..38c1f526e --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_311_expected.json @@ -0,0 +1,25070 @@ +[ + { + "id": "b7d887a5-dbdb-49f7-9e06-7d6ebcdab817", + "created_at": "2026-05-22T08:33:24.788-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement-standalone_auth_tls", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:24.788-04:00" + }, + { + "id": "cd4b698b-790a-4adc-b3be-8e530e36688f", + "created_at": "2026-05-22T08:33:25.618-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CapabilityStatement: CapabilityStatement.instantiates[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.implementationGuide[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/ImplementationGuide/hl7.fhir.uv.bulkdata'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[4].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-coverage'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[4].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-coverage-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[10].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/group-export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationdispense'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-status'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-type'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[2].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[12]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-vital-signs'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[13]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-blood-pressure'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[14]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-bmi'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[15]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-height'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[16]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[17]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-weight'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[18]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-head-circumference'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[19]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[20]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[23]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sexual-orientation'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[28]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancystatus'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[29]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancyintent'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[30]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-occupation'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[31]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[32]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[33]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[34]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[35]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[36]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-average-blood-pressure'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[18].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/patient-export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-servicerequest'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-status'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[2].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-category'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[3].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-code'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[4].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-authored'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[5].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-id'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-specimen'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-id'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[25].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-relatedperson'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[25].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-relatedperson-id'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[25].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-relatedperson-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].operation[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "68504a63-23a1-413d-81ef-b2cfdd28ed63", + "direction": "outgoing", + "index": 111341, + "result_id": "cd4b698b-790a-4adc-b3be-8e530e36688f", + "status": 200, + "timestamp": "2026-05-22T08:33:25.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement-us_core_conformance_support", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:25.618-04:00" + }, + { + "id": "62b941fc-52f3-4040-88bb-0c81bdde528d", + "created_at": "2026-05-22T08:33:25.870-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement-us_core_fhir_version", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:25.870-04:00" + }, + { + "id": "1bdc23d7-35fc-4d9d-87d6-1785b2705b8e", + "created_at": "2026-05-22T08:33:25.883-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "68504a63-23a1-413d-81ef-b2cfdd28ed63", + "direction": "outgoing", + "index": 111341, + "result_id": "cd4b698b-790a-4adc-b3be-8e530e36688f", + "status": 200, + "timestamp": "2026-05-22T08:33:25.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement-us_core_json_support", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:25.883-04:00" + }, + { + "id": "38d41899-ac05-4937-b66a-6f2d1e364dab", + "created_at": "2026-05-22T08:33:25.893-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "68504a63-23a1-413d-81ef-b2cfdd28ed63", + "direction": "outgoing", + "index": 111341, + "result_id": "cd4b698b-790a-4adc-b3be-8e530e36688f", + "status": 200, + "timestamp": "2026-05-22T08:33:25.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement-us_core_v311_resource_support", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:25.893-04:00" + }, + { + "id": "acdbb043-0671-4d5c-95d9-350e1f2d8eef", + "created_at": "2026-05-22T08:33:25.896-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_capability_statement", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:25.896-04:00" + }, + { + "id": "0e94a1a5-9a4e-4be0-ac50-9056c6dba089", + "created_at": "2026-05-22T08:33:26.341-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "19437a55-f9aa-4bb7-9da8-91e159cc421e", + "direction": "outgoing", + "index": 111342, + "result_id": "0e94a1a5-9a4e-4be0-ac50-9056c6dba089", + "status": 200, + "timestamp": "2026-05-22T08:33:26.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85", + "verb": "get" + }, + { + "id": "0d3105ec-3b0c-4ca9-a7b9-49a33cb853b2", + "direction": "outgoing", + "index": 111343, + "result_id": "0e94a1a5-9a4e-4be0-ac50-9056c6dba089", + "status": 200, + "timestamp": "2026-05-22T08:33:26.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/_search", + "verb": "post" + }, + { + "id": "30997c28-2b00-4d73-b50f-ee0f4d4a9f15", + "direction": "outgoing", + "index": 111344, + "result_id": "0e94a1a5-9a4e-4be0-ac50-9056c6dba089", + "status": 200, + "timestamp": "2026-05-22T08:33:26.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient__id_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:26.341-04:00" + }, + { + "id": "db7c80b4-a959-41e1-ad76-9b7a08557171", + "created_at": "2026-05-22T08:33:26.657-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4f034a85-eb0e-4c12-aca3-f5efeab73e5e", + "direction": "outgoing", + "index": 111345, + "result_id": "db7c80b4-a959-41e1-ad76-9b7a08557171", + "status": 200, + "timestamp": "2026-05-22T08:33:26.661-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + }, + { + "id": "763d4ff8-448e-498d-ad6d-cb5296e3aa78", + "direction": "outgoing", + "index": 111346, + "result_id": "db7c80b4-a959-41e1-ad76-9b7a08557171", + "status": 200, + "timestamp": "2026-05-22T08:33:26.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_identifier_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:26.657-04:00" + }, + { + "id": "7f417db9-1347-4ea7-8d55-aaf2ddfa2b94", + "created_at": "2026-05-22T08:33:26.827-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5bbb7f36-6efd-44d1-9dad-187259a19048", + "direction": "outgoing", + "index": 111347, + "result_id": "7f417db9-1347-4ea7-8d55-aaf2ddfa2b94", + "status": 200, + "timestamp": "2026-05-22T08:33:26.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_name_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:26.827-04:00" + }, + { + "id": "1c19fb0c-5f31-411b-8ea2-a98e4c5f5827", + "created_at": "2026-05-22T08:33:26.979-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fdc422cf-0f8d-4ef1-97a7-63570b5c08c4", + "direction": "outgoing", + "index": 111348, + "result_id": "1c19fb0c-5f31-411b-8ea2-a98e4c5f5827", + "status": 200, + "timestamp": "2026-05-22T08:33:26.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_birthdate_family_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:26.979-04:00" + }, + { + "id": "9f8c2c3d-88e3-4422-9134-33c9565e7d79", + "created_at": "2026-05-22T08:33:27.131-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2641c3bb-cfb6-4d73-b427-1d18b43858e9", + "direction": "outgoing", + "index": 111349, + "result_id": "9f8c2c3d-88e3-4422-9134-33c9565e7d79", + "status": 200, + "timestamp": "2026-05-22T08:33:27.136-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_family_gender_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:27.131-04:00" + }, + { + "id": "88297eed-5300-4cca-95ca-6e0d4a5b77b0", + "created_at": "2026-05-22T08:33:27.306-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "339a049d-6c4b-468f-8029-43c40d914f6a", + "direction": "outgoing", + "index": 111350, + "result_id": "88297eed-5300-4cca-95ca-6e0d4a5b77b0", + "status": 200, + "timestamp": "2026-05-22T08:33:27.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_birthdate_name_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:27.306-04:00" + }, + { + "id": "6cc5d55f-05b2-480a-9acc-8452371728f1", + "created_at": "2026-05-22T08:33:27.476-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "07046769-13d2-4147-8749-6c4d3ab32d93", + "direction": "outgoing", + "index": 111351, + "result_id": "6cc5d55f-05b2-480a-9acc-8452371728f1", + "status": 200, + "timestamp": "2026-05-22T08:33:27.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_gender_name_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:27.476-04:00" + }, + { + "id": "4a3eb485-dbc7-4b3c-b133-b4ec0c745137", + "created_at": "2026-05-22T08:33:27.684-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d236014-3779-4ba2-b044-6fea7ff38b2a", + "direction": "outgoing", + "index": 111352, + "result_id": "4a3eb485-dbc7-4b3c-b133-b4ec0c745137", + "status": 200, + "timestamp": "2026-05-22T08:33:27.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:27.684-04:00" + }, + { + "id": "f032b6a7-cba6-4833-a12c-5d92366dfe26", + "created_at": "2026-05-22T08:33:28.939-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "734d40a9-6e4c-40b4-9741-9c0279fb002d", + "direction": "outgoing", + "index": 111353, + "result_id": "f032b6a7-cba6-4833-a12c-5d92366dfe26", + "status": 200, + "timestamp": "2026-05-22T08:33:28.941-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target", + "verb": "get" + }, + { + "id": "c5c1f475-8535-42bf-8074-629558fa0673", + "direction": "outgoing", + "index": 111354, + "result_id": "f032b6a7-cba6-4833-a12c-5d92366dfe26", + "status": 200, + "timestamp": "2026-05-22T08:33:28.960-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:28.939-04:00" + }, + { + "id": "826766c8-b5ba-4e41-8bea-a4886780d7f5", + "created_at": "2026-05-22T08:33:29.071-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + }, + { + "message": "Patient/355: Patient.extension[3]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Patient/355: Patient.extension[3]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation", + "type": "info" + }, + { + "message": "Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:29.071-04:00" + }, + { + "id": "4a748f0c-4c20-4aef-b10c-94b37c98b283", + "created_at": "2026-05-22T08:33:29.082-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient-us_core_v311_patient_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:29.082-04:00" + }, + { + "id": "73f1e2d5-1e98-4ca9-bec3-6ddca963ecde", + "created_at": "2026-05-22T08:33:29.083-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_patient", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:29.083-04:00" + }, + { + "id": "389e0f7f-db26-413d-bd10-78974e512857", + "created_at": "2026-05-22T08:33:29.703-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4b83214b-2e73-49d9-b38d-943b2f5feb0f", + "direction": "outgoing", + "index": 111355, + "result_id": "389e0f7f-db26-413d-bd10-78974e512857", + "status": 200, + "timestamp": "2026-05-22T08:33:29.707-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85", + "verb": "get" + }, + { + "id": "a7ade80c-c7ae-402b-a691-858ad3e950e6", + "direction": "outgoing", + "index": 111356, + "result_id": "389e0f7f-db26-413d-bd10-78974e512857", + "status": 200, + "timestamp": "2026-05-22T08:33:29.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355", + "verb": "get" + }, + { + "id": "6140ede9-d744-4f1a-bb7d-6600ed64ce52", + "direction": "outgoing", + "index": 111357, + "result_id": "389e0f7f-db26-413d-bd10-78974e512857", + "status": 200, + "timestamp": "2026-05-22T08:33:29.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search", + "verb": "post" + }, + { + "id": "2483f948-7829-40fa-bb4e-1e1977ae50d4", + "direction": "outgoing", + "index": 111358, + "result_id": "389e0f7f-db26-413d-bd10-78974e512857", + "status": 200, + "timestamp": "2026-05-22T08:33:29.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:29.703-04:00" + }, + { + "id": "dc09731d-4088-4b48-ab29-17da226ef07c", + "created_at": "2026-05-22T08:33:30.080-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "981cad0a-95a3-4c83-b847-cef7b305da3a", + "direction": "outgoing", + "index": 111359, + "result_id": "dc09731d-4088-4b48-ab29-17da226ef07c", + "status": 200, + "timestamp": "2026-05-22T08:33:30.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355", + "verb": "get" + }, + { + "id": "168d8b68-eef1-4dd3-8527-103d1cffc921", + "direction": "outgoing", + "index": 111360, + "result_id": "dc09731d-4088-4b48-ab29-17da226ef07c", + "status": 200, + "timestamp": "2026-05-22T08:33:30.111-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_patient_clinical_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:30.080-04:00" + }, + { + "id": "186493ae-d9be-4ec7-aba4-ea1f2fa4dfcf", + "created_at": "2026-05-22T08:33:30.276-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "db7b7b14-af88-4e54-b2f3-88f4f707a9d2", + "direction": "outgoing", + "index": 111361, + "result_id": "186493ae-d9be-4ec7-aba4-ea1f2fa4dfcf", + "status": 200, + "timestamp": "2026-05-22T08:33:30.280-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:30.276-04:00" + }, + { + "id": "dd88cd46-dec5-40a3-8839-aa61975efa4b", + "created_at": "2026-05-22T08:33:30.661-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "76055ac5-488e-468f-9cb7-351ab9fcf182", + "direction": "outgoing", + "index": 111362, + "result_id": "dd88cd46-dec5-40a3-8839-aa61975efa4b", + "status": 200, + "timestamp": "2026-05-22T08:33:30.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "51f1269f-d087-4ae1-82f0-eb72f55d7a9b", + "direction": "outgoing", + "index": 111363, + "result_id": "dd88cd46-dec5-40a3-8839-aa61975efa4b", + "status": 200, + "timestamp": "2026-05-22T08:33:30.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:30.661-04:00" + }, + { + "id": "7da5347d-88e4-4920-a086-b8001a14d1e5", + "created_at": "2026-05-22T08:33:30.919-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'US Core Common substances for allergy and intolerance documentation including refutations' (http://hl7.org/fhir/us/core/ValueSet/us-core-allergy-substance|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:30.919-04:00" + }, + { + "id": "f60cf01a-021b-4ed2-8b69-5edab2929dd1", + "created_at": "2026-05-22T08:33:30.955-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:30.955-04:00" + }, + { + "id": "7fee5697-dd8c-4fd1-98bd-3b1313d0ff7c", + "created_at": "2026-05-22T08:33:31.091-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "38bdc0fb-eaed-49bb-bd9e-a84fd7f7313a", + "direction": "outgoing", + "index": 111364, + "result_id": "7fee5697-dd8c-4fd1-98bd-3b1313d0ff7c", + "status": 200, + "timestamp": "2026-05-22T08:33:31.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance-us_core_v311_allergy_intolerance_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:31.091-04:00" + }, + { + "id": "0dad9851-4f77-4c6b-ab96-6e85f82cb683", + "created_at": "2026-05-22T08:33:31.117-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_allergy_intolerance", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:31.117-04:00" + }, + { + "id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "created_at": "2026-05-22T08:33:32.813-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e9939f35-1231-480c-b670-bd55e100a376", + "direction": "outgoing", + "index": 111365, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "9992b4d3-df66-4be3-bad8-6b844a412139", + "direction": "outgoing", + "index": 111366, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/_search", + "verb": "post" + }, + { + "id": "c4adca76-8828-433d-aff7-b3fb331349aa", + "direction": "outgoing", + "index": 111367, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.849-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "51884d0c-47e9-40fa-987d-358f7aa6ca3d", + "direction": "outgoing", + "index": 111368, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.866-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "047dc0cd-0579-4705-81bb-eda43ea47167", + "direction": "outgoing", + "index": 111369, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.881-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "f0910b59-c1e5-4991-9bba-9ab4c447e672", + "direction": "outgoing", + "index": 111370, + "result_id": "0070f3c6-ddb9-4760-ab74-73c92cab468f", + "status": 200, + "timestamp": "2026-05-22T08:33:32.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=56cda2c1-a712-4778-8239-9dc2dfcae620\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:32.813-04:00" + }, + { + "id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "created_at": "2026-05-22T08:33:34.531-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ee3b7632-480a-4889-a6f9-251f2704d80c", + "direction": "outgoing", + "index": 111371, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.536-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "d4925d80-4863-49c2-ab5b-938e08f0acc7", + "direction": "outgoing", + "index": 111372, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "975127d5-4808-4a63-9dd1-1bfe192ec29d", + "direction": "outgoing", + "index": 111373, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "8d386451-4cb3-4c55-8bbf-8fb4e5bbbe27", + "direction": "outgoing", + "index": 111374, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "892d8f5a-b4d8-44ae-b55e-14c99d62d3bb", + "direction": "outgoing", + "index": 111375, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.609-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "c259a345-60ce-445b-b5d6-1141e757422f", + "direction": "outgoing", + "index": 111376, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "6c01a993-2e25-4f20-9686-17cd4cfab719", + "direction": "outgoing", + "index": 111377, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "661ca540-649d-4f27-9d76-02c39b7ed477", + "direction": "outgoing", + "index": 111378, + "result_id": "acaf5b7e-0460-4503-8b8a-058eea1f1580", + "status": 200, + "timestamp": "2026-05-22T08:33:34.657-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_patient_category_status_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:34.531-04:00" + }, + { + "id": "2997b4d1-9f21-4cc1-9057-e167e3e65b68", + "created_at": "2026-05-22T08:33:35.333-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d55e458e-24f1-455f-9fe9-0621e63a247b", + "direction": "outgoing", + "index": 111379, + "result_id": "2997b4d1-9f21-4cc1-9057-e167e3e65b68", + "status": 200, + "timestamp": "2026-05-22T08:33:35.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "f00ee122-13b2-4559-9711-e382a838677f", + "direction": "outgoing", + "index": 111380, + "result_id": "2997b4d1-9f21-4cc1-9057-e167e3e65b68", + "status": 200, + "timestamp": "2026-05-22T08:33:35.355-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "17721bef-227b-4f2a-8f45-471758354b6a", + "direction": "outgoing", + "index": 111381, + "result_id": "2997b4d1-9f21-4cc1-9057-e167e3e65b68", + "status": 200, + "timestamp": "2026-05-22T08:33:35.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "5dea3c7a-2653-494b-b837-5d73b880e035", + "direction": "outgoing", + "index": 111382, + "result_id": "2997b4d1-9f21-4cc1-9057-e167e3e65b68", + "status": 200, + "timestamp": "2026-05-22T08:33:35.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:35.333-04:00" + }, + { + "id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "created_at": "2026-05-22T08:33:37.322-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b81e7b27-fb4f-4c2b-beaf-4b58f538dfd4", + "direction": "outgoing", + "index": 111383, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.327-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7e5f839c-7258-4946-8b68-af666cde4169", + "direction": "outgoing", + "index": 111384, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.345-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "55bf6c54-3470-4b32-9364-f67328ce9924", + "direction": "outgoing", + "index": 111385, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "152ebc9e-a8ff-4c8b-8ecd-4077f553ae15", + "direction": "outgoing", + "index": 111386, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.374-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "610d15bd-1291-46e6-bbf1-b4d2bc2d6c94", + "direction": "outgoing", + "index": 111387, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a4f5041c-2829-40d2-9c98-a70520fbb017", + "direction": "outgoing", + "index": 111388, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.399-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "790d0835-cf30-478b-af13-fbbfbf680acb", + "direction": "outgoing", + "index": 111389, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "855828d0-586e-434b-bc85-55a8cac8b3c0", + "direction": "outgoing", + "index": 111390, + "result_id": "f161e13c-9a5e-45fb-a013-59aff785c19b", + "status": 200, + "timestamp": "2026-05-22T08:33:37.424-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=482bd78b-7c3b-4bdf-9c7d-8348521c792b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:37.322-04:00" + }, + { + "id": "96b4b1d2-8886-4c42-8ee1-7ca6fd3523d5", + "created_at": "2026-05-22T08:33:37.557-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dae3eeb7-8001-4e72-bce9-97983db85e22", + "direction": "outgoing", + "index": 111391, + "result_id": "96b4b1d2-8886-4c42-8ee1-7ca6fd3523d5", + "status": 200, + "timestamp": "2026-05-22T08:33:37.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:37.557-04:00" + }, + { + "id": "43dee287-dd33-4c0a-8f0a-8b58f1714c1f", + "created_at": "2026-05-22T08:33:38.754-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c5a75ed1-2658-4bb3-9c06-4609870d73a6", + "direction": "outgoing", + "index": 111392, + "result_id": "43dee287-dd33-4c0a-8f0a-8b58f1714c1f", + "status": 200, + "timestamp": "2026-05-22T08:33:38.759-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "63058820-86b1-45e7-96d2-337bc102ca83", + "direction": "outgoing", + "index": 111393, + "result_id": "43dee287-dd33-4c0a-8f0a-8b58f1714c1f", + "status": 200, + "timestamp": "2026-05-22T08:33:38.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "eb2c9a99-a56c-4d3f-bb8a-668f82966592", + "direction": "outgoing", + "index": 111394, + "result_id": "43dee287-dd33-4c0a-8f0a-8b58f1714c1f", + "status": 200, + "timestamp": "2026-05-22T08:33:38.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=36f89bca-f517-475f-b9c3-7c3ed7e81f74\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:38.754-04:00" + }, + { + "id": "3573dfb2-68c8-4cc4-9d90-25a8bb9ad910", + "created_at": "2026-05-22T08:33:39.473-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:39.473-04:00" + }, + { + "id": "a571b1b4-aeaf-4bbc-a6ab-39c9c1a0bed0", + "created_at": "2026-05-22T08:33:39.543-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:39.543-04:00" + }, + { + "id": "e2784d64-ec05-4c84-92fe-019048dab5c0", + "created_at": "2026-05-22T08:33:39.670-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bfdbe0a8-e986-4169-bc35-ec15098dde04", + "direction": "outgoing", + "index": 111395, + "result_id": "e2784d64-ec05-4c84-92fe-019048dab5c0", + "status": 200, + "timestamp": "2026-05-22T08:33:39.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan-us_core_v311_care_plan_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:39.670-04:00" + }, + { + "id": "087de8cd-0729-4dba-9652-0ca9bfb6a3b6", + "created_at": "2026-05-22T08:33:39.688-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_plan", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:39.688-04:00" + }, + { + "id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "created_at": "2026-05-22T08:33:42.310-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "67a58d01-6969-4a3d-828a-95565bb6e713", + "direction": "outgoing", + "index": 111396, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.317-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "e805dec6-0d7a-4111-a853-e5eef70785b3", + "direction": "outgoing", + "index": 111397, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.335-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "f95b6105-f747-4ef6-ae8a-ba842e015c2e", + "direction": "outgoing", + "index": 111398, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.350-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/_search", + "verb": "post" + }, + { + "id": "e60d1b38-1c85-4d2c-9db1-9c293dd916ab", + "direction": "outgoing", + "index": 111399, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active", + "verb": "get" + }, + { + "id": "e08ab9a5-2061-4177-bc18-e726387df54f", + "direction": "outgoing", + "index": 111400, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "23ee9e3b-e8b1-4607-b269-66a734c4c9b9", + "direction": "outgoing", + "index": 111401, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.393-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "8d97670d-78c4-4c1e-a58a-b2689ff28e00", + "direction": "outgoing", + "index": 111402, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "613cfd2c-71e2-4104-80c0-e8f27c009313", + "direction": "outgoing", + "index": 111403, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.422-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "5ed5dcc4-c54b-4ddf-84f9-ef353454c7b4", + "direction": "outgoing", + "index": 111404, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "9ab55118-93ae-4473-a9f7-0126fa797a0b", + "direction": "outgoing", + "index": 111405, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.454-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "b2607c7b-a737-44fe-b468-d689ef7c1a7b", + "direction": "outgoing", + "index": 111406, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "21ffb09e-5862-46a6-a6c6-3fc76430f926", + "direction": "outgoing", + "index": 111407, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.488-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b66d98f8-3c8d-4cf1-9148-299a8acc183c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46f1e920-afd3-4c79-9621-1003138fb586", + "direction": "outgoing", + "index": 111408, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "e6f2ee93-f482-41a7-8036-065a241cf106", + "direction": "outgoing", + "index": 111409, + "result_id": "927b4e29-0c63-4726-b3bd-9c61d215a55a", + "status": 200, + "timestamp": "2026-05-22T08:33:42.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed,active,suspended,inactive,entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:42.310-04:00" + }, + { + "id": "f53f3812-d047-4825-a511-d26686c61b49", + "created_at": "2026-05-22T08:33:42.665-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7cc77964-d2cc-4a54-95b9-1e0ce37b67c2", + "direction": "outgoing", + "index": 111410, + "result_id": "f53f3812-d047-4825-a511-d26686c61b49", + "status": 200, + "timestamp": "2026-05-22T08:33:42.669-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:42.665-04:00" + }, + { + "id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "created_at": "2026-05-22T08:33:45.428-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ff3aa664-11a9-4719-8829-b63166ebe38d", + "direction": "outgoing", + "index": 111411, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "f3db65fc-3280-4dd9-afaa-2a067dd191d2", + "direction": "outgoing", + "index": 111412, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "5df681cd-4079-41c7-85e1-54a2946e37d9", + "direction": "outgoing", + "index": 111413, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "26a44163-0619-4916-89ef-bb088c7f8560", + "direction": "outgoing", + "index": 111414, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.479-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "75a13d73-387b-49a4-badc-43877710cce0", + "direction": "outgoing", + "index": 111415, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "69aa99bf-919f-4b42-9ace-f811872f4d22", + "direction": "outgoing", + "index": 111416, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.511-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "daf67a42-a199-4d99-8f92-2dd2289eda4e", + "direction": "outgoing", + "index": 111417, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "d579499c-8ca8-4886-8073-0f77002cfb5a", + "direction": "outgoing", + "index": 111418, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.534-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "22b048fe-4375-4216-8716-377453213359", + "direction": "outgoing", + "index": 111419, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.548-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "89e2476f-c51f-40d9-b833-00bbb8678fd9", + "direction": "outgoing", + "index": 111420, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.561-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0ce00d3d-36dd-4874-bd39-ed277a56ece8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a09ac608-1ee3-4d43-8a69-fb9dc2debc37", + "direction": "outgoing", + "index": 111421, + "result_id": "4686139d-6d75-4678-96cc-d10a97f0573b", + "status": 200, + "timestamp": "2026-05-22T08:33:45.575-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:45.428-04:00" + }, + { + "id": "e3f0b0e1-a305-422d-a36a-467e7be69839", + "created_at": "2026-05-22T08:33:46.156-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#133932002)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'US Core CareTeam Provider Roles' (http://hl7.org/fhir/us/core/ValueSet/us-core-careteam-provider-roles|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:46.156-04:00" + }, + { + "id": "d7f3a79a-16f3-4a52-b491-29ea70063efd", + "created_at": "2026-05-22T08:33:46.222-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:46.222-04:00" + }, + { + "id": "d66e7473-59eb-4369-aac5-f85a47e807b8", + "created_at": "2026-05-22T08:33:46.224-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team-us_core_v311_care_team_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:46.224-04:00" + }, + { + "id": "dbf5723c-ec2b-48a8-8f22-11fe76dbdf84", + "created_at": "2026-05-22T08:33:46.228-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_care_team", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:46.228-04:00" + }, + { + "id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "created_at": "2026-05-22T08:33:49.997-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4c9c85e2-4f5b-4ae6-b955-9058c2fb8396", + "direction": "outgoing", + "index": 111422, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85", + "verb": "get" + }, + { + "id": "61bbe859-07e2-4d14-b878-f93d050835eb", + "direction": "outgoing", + "index": 111423, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=74936804-af16-4ff1-9ad8-3a8bc8217509\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5c4edf04-7dfc-4fd6-93d9-5174ed16dd24", + "direction": "outgoing", + "index": 111424, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "d9af7542-dd3b-4c0e-b8fb-074da614c88d", + "direction": "outgoing", + "index": 111425, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=74936804-af16-4ff1-9ad8-3a8bc8217509\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cf5c9834-f4be-49e5-a464-ab54b8b97238", + "direction": "outgoing", + "index": 111426, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=Patient/85", + "verb": "get" + }, + { + "id": "7c5a052f-ba91-4bb4-a53e-df84d928bb95", + "direction": "outgoing", + "index": 111427, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.075-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=974831bb-3a89-4de9-8808-9382bc36e86f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bac5dbc0-aa39-4251-9dfa-3e1955b8d8cd", + "direction": "outgoing", + "index": 111428, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355", + "verb": "get" + }, + { + "id": "330b0a31-d604-4f83-be7c-6a05048a4e9c", + "direction": "outgoing", + "index": 111429, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.105-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=df6a5656-5028-4a20-95a5-abf47875a153\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f611269-c5c3-41be-927c-30c3a65211f2", + "direction": "outgoing", + "index": 111430, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=df6a5656-5028-4a20-95a5-abf47875a153\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de9a6f3b-2c86-43ea-a848-c06139801161", + "direction": "outgoing", + "index": 111431, + "result_id": "b528224c-fa76-4434-90a7-f38b5eef7f48", + "status": 200, + "timestamp": "2026-05-22T08:33:50.133-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=df6a5656-5028-4a20-95a5-abf47875a153\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:49.997-04:00" + }, + { + "id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "created_at": "2026-05-22T08:33:52.418-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e8842189-5686-45fc-a072-9a5dc65b6f3a", + "direction": "outgoing", + "index": 111432, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c2d3e36e-a018-4094-b6e7-2c51cb597718", + "direction": "outgoing", + "index": 111433, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "aada517c-7336-45bb-a495-16c3455f6264", + "direction": "outgoing", + "index": 111434, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39f633e8-7f32-4f27-bb61-09c83af3ed8b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9887b3cf-50ae-4573-b00c-49fd602c00e8", + "direction": "outgoing", + "index": 111435, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.482-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5e1368e0-1b59-444d-8033-e4b7ffdba026", + "direction": "outgoing", + "index": 111436, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50ed97e5-3e6b-4ce3-aab1-50e56823fdd4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7a73bf21-1a0e-4faa-b81a-360bb62334b4", + "direction": "outgoing", + "index": 111437, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "36c5ddf6-adae-4c9a-9ab3-360f3bd0044d", + "direction": "outgoing", + "index": 111438, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e107b514-3982-4e75-9e12-e41f7ed2fbd6", + "direction": "outgoing", + "index": 111439, + "result_id": "c2d55e1e-a126-411a-a914-ec0f90b2f8ce", + "status": 200, + "timestamp": "2026-05-22T08:33:52.538-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_patient_onset_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:52.418-04:00" + }, + { + "id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "created_at": "2026-05-22T08:33:54.745-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ba970939-b294-478d-b7fa-5e7da4e50904", + "direction": "outgoing", + "index": 111440, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "9831c27b-a193-45ab-a81d-d72f7bbcc55f", + "direction": "outgoing", + "index": 111441, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=166fca0f-0d75-47b8-9fb6-c15499055e77\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d8199c6e-7ca2-4043-9ef7-6057cb39cafe", + "direction": "outgoing", + "index": 111442, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "19991e93-4db3-4aa9-a63b-f4411943cfd7", + "direction": "outgoing", + "index": 111443, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f1defca-2318-40be-b444-b2aef9ab5e1a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "68036a55-300e-476b-8a8b-83fff47af0e1", + "direction": "outgoing", + "index": 111444, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.798-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355", + "verb": "get" + }, + { + "id": "8a81d1c7-e440-4879-b649-b16bd94499bd", + "direction": "outgoing", + "index": 111445, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78223506-c245-45d9-a7f3-89541c5f14a1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3927d716-1a35-401e-893e-9318e4f15a13", + "direction": "outgoing", + "index": 111446, + "result_id": "b320db4f-7cf6-47d4-9a30-e474bb24bf72", + "status": 200, + "timestamp": "2026-05-22T08:33:54.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78223506-c245-45d9-a7f3-89541c5f14a1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:54.745-04:00" + }, + { + "id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "created_at": "2026-05-22T08:33:57.164-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "49f96fb1-d468-4e5b-8a41-764fc6e49c7c", + "direction": "outgoing", + "index": 111447, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.170-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85", + "verb": "get" + }, + { + "id": "8fc8bc4f-6544-4cdc-b834-6def5e238c15", + "direction": "outgoing", + "index": 111448, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.193-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dedee2b0-fbe3-40fb-ad24-255e978e72e9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26c482ca-57e6-4774-8d6c-71ed9ed8fddb", + "direction": "outgoing", + "index": 111449, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85", + "verb": "get" + }, + { + "id": "28e297eb-39a2-4092-9ab8-a986b910e890", + "direction": "outgoing", + "index": 111450, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6e67c57-acb2-4e81-9b8f-4f519f058d91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8fd6d233-22b5-4654-ac11-0a6e29558037", + "direction": "outgoing", + "index": 111451, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.237-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "b9ebecd5-f342-4526-9441-8f58ee7d9722", + "direction": "outgoing", + "index": 111452, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aeefab10-2566-4ab3-8306-a07d5772cd9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c2949f47-6bab-49e1-ab2e-32470d693e55", + "direction": "outgoing", + "index": 111453, + "result_id": "1cf6d971-a607-44fa-a199-a051c8c36fbd", + "status": 200, + "timestamp": "2026-05-22T08:33:57.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aeefab10-2566-4ab3-8306-a07d5772cd9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_patient_clinical_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:57.164-04:00" + }, + { + "id": "0a35f24f-3164-4828-b8c6-26424ee5a929", + "created_at": "2026-05-22T08:33:57.645-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "889c397e-2012-4760-84ea-0b1e9a37c160", + "direction": "outgoing", + "index": 111454, + "result_id": "0a35f24f-3164-4828-b8c6-26424ee5a929", + "status": 200, + "timestamp": "2026-05-22T08:33:57.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "a349e3a0-fe64-41a6-a3f3-54fa3036eaa4", + "direction": "outgoing", + "index": 111455, + "result_id": "0a35f24f-3164-4828-b8c6-26424ee5a929", + "status": 200, + "timestamp": "2026-05-22T08:33:57.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "e4823c24-0215-43e9-ab49-935fc7047e3e", + "direction": "outgoing", + "index": 111456, + "result_id": "0a35f24f-3164-4828-b8c6-26424ee5a929", + "status": 200, + "timestamp": "2026-05-22T08:33:57.676-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:57.645-04:00" + }, + { + "id": "876e9712-0665-4b4b-b087-aa0a55b87fa6", + "created_at": "2026-05-22T08:33:57.811-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "42a2f0e3-6b33-470e-b53f-3b1d82f040e1", + "direction": "outgoing", + "index": 111457, + "result_id": "876e9712-0665-4b4b-b087-aa0a55b87fa6", + "status": 200, + "timestamp": "2026-05-22T08:33:57.813-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:33:57.811-04:00" + }, + { + "id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "created_at": "2026-05-22T08:34:00.271-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c5528f5b-622e-4d4b-a444-d3c51fd943bc", + "direction": "outgoing", + "index": 111458, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.275-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ee43fc2b-ae51-4f48-b2ea-9386d2b580bc", + "direction": "outgoing", + "index": 111459, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.290-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9309d562-d653-4115-8511-d941c25e34a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0c438c14-4722-4242-89fa-5500a131e5b6", + "direction": "outgoing", + "index": 111460, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "c782e860-17cf-4937-b8bb-313c0a566a9c", + "direction": "outgoing", + "index": 111461, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a728b29a-751d-447d-9127-f25bd2ab5a5f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d05559ab-e95b-44b9-98dc-4063ac86c9f8", + "direction": "outgoing", + "index": 111462, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.331-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a728b29a-751d-447d-9127-f25bd2ab5a5f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6fe1e05a-99ce-4685-bcca-3817c0a3cc14", + "direction": "outgoing", + "index": 111463, + "result_id": "c459ff64-d7ba-4d45-819b-63da94f8f845", + "status": 200, + "timestamp": "2026-05-22T08:34:00.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a728b29a-751d-447d-9127-f25bd2ab5a5f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:00.271-04:00" + }, + { + "id": "695d03b3-4726-4060-8617-5a60c36284aa", + "created_at": "2026-05-22T08:34:01.492-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition.category[0]: No code provided, and a code should be provided from the value set 'US Core Condition Category Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category|3.1.1)", + "type": "warning" + }, + { + "message": "Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition: Constraint failed: us-core-1: 'A code in Condition.category SHOULD be from US Core Condition Category Codes value set.' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.code: None of the codings provided are in the value set 'US Core Condition Code' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-code|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#15777000)", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'", + "type": "info" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'US Core Condition Category Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: us-core-1: 'A code in Condition.category SHOULD be from US Core Condition Category Codes value set.' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'", + "type": "info" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_extension_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:01.492-04:00" + }, + { + "id": "7f654147-e019-44f7-a2fc-2cbe385da326", + "created_at": "2026-05-22T08:34:01.562-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:01.562-04:00" + }, + { + "id": "add74497-7891-450b-a9c5-74932101837a", + "created_at": "2026-05-22T08:34:01.565-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition-us_core_v311_condition_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:01.565-04:00" + }, + { + "id": "53f75e23-b65e-49f8-aa8a-2144f6597570", + "created_at": "2026-05-22T08:34:01.567-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_condition", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:01.567-04:00" + }, + { + "id": "506f83c0-4366-4a1c-946d-c6b64353d8f6", + "created_at": "2026-05-22T08:34:02.117-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "05a39714-6117-45af-aa44-c181ee05b9cd", + "direction": "outgoing", + "index": 111464, + "result_id": "506f83c0-4366-4a1c-946d-c6b64353d8f6", + "status": 200, + "timestamp": "2026-05-22T08:34:02.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=85", + "verb": "get" + }, + { + "id": "84d6f711-ab30-40b6-b51c-0a63fed8e50a", + "direction": "outgoing", + "index": 111465, + "result_id": "506f83c0-4366-4a1c-946d-c6b64353d8f6", + "status": 200, + "timestamp": "2026-05-22T08:34:02.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355", + "verb": "get" + }, + { + "id": "d28ec80e-dc27-48f0-bec6-40659984e012", + "direction": "outgoing", + "index": 111466, + "result_id": "506f83c0-4366-4a1c-946d-c6b64353d8f6", + "status": 200, + "timestamp": "2026-05-22T08:34:02.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/_search", + "verb": "post" + }, + { + "id": "3703b387-e23c-4048-b989-c815d48b2cc4", + "direction": "outgoing", + "index": 111467, + "result_id": "506f83c0-4366-4a1c-946d-c6b64353d8f6", + "status": 200, + "timestamp": "2026-05-22T08:34:02.179-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:02.117-04:00" + }, + { + "id": "b990106f-2bb5-40ef-8e63-ecd8b76d1ae5", + "created_at": "2026-05-22T08:34:02.451-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7f8f23ea-d6e3-4afe-bda1-07d8b1cb5564", + "direction": "outgoing", + "index": 111468, + "result_id": "b990106f-2bb5-40ef-8e63-ecd8b76d1ae5", + "status": 200, + "timestamp": "2026-05-22T08:34:02.460-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001", + "verb": "get" + }, + { + "id": "c7faf9f2-1fbf-495f-994a-4882bf4fc5cc", + "direction": "outgoing", + "index": 111469, + "result_id": "b990106f-2bb5-40ef-8e63-ecd8b76d1ae5", + "status": 200, + "timestamp": "2026-05-22T08:34:02.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_patient_type_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:02.451-04:00" + }, + { + "id": "a86f93a3-2769-4160-8f6c-ff47a9e0a7c2", + "created_at": "2026-05-22T08:34:02.650-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f266eb5b-3593-414b-ae52-2dd5a9bce211", + "direction": "outgoing", + "index": 111470, + "result_id": "a86f93a3-2769-4160-8f6c-ff47a9e0a7c2", + "status": 200, + "timestamp": "2026-05-22T08:34:02.653-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:02.650-04:00" + }, + { + "id": "6e84ca6a-025c-41a7-8c90-d3ddae3f1955", + "created_at": "2026-05-22T08:34:03.003-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4df25503-9f66-47b0-b6e6-1467a254f0b8", + "direction": "outgoing", + "index": 111471, + "result_id": "6e84ca6a-025c-41a7-8c90-d3ddae3f1955", + "status": 200, + "timestamp": "2026-05-22T08:34:03.005-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "b777d876-0226-4c9c-96f7-bcb0d91f2e3e", + "direction": "outgoing", + "index": 111472, + "result_id": "6e84ca6a-025c-41a7-8c90-d3ddae3f1955", + "status": 200, + "timestamp": "2026-05-22T08:34:03.032-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:03.003-04:00" + }, + { + "id": "c589242e-053a-4230-a313-7034843d8acc", + "created_at": "2026-05-22T08:34:03.114-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:03.114-04:00" + }, + { + "id": "bafb0070-84f1-4707-9e04-0c7e305fd577", + "created_at": "2026-05-22T08:34:03.120-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:03.120-04:00" + }, + { + "id": "625713d9-461d-4817-b624-65c5d080cb2b", + "created_at": "2026-05-22T08:34:03.123-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device-us_core_v311_device_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:03.123-04:00" + }, + { + "id": "9d714748-062d-467d-b613-e4a046002026", + "created_at": "2026-05-22T08:34:03.125-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_device", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:03.125-04:00" + }, + { + "id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "created_at": "2026-05-22T08:34:05.404-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2015bca4-6910-40b9-be5c-cd99f16ab751", + "direction": "outgoing", + "index": 111473, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "96af4ebb-2537-4c40-85f5-49533b0a604d", + "direction": "outgoing", + "index": 111474, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.424-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "7b4dc026-dbe8-4526-be9b-4750c1024e97", + "direction": "outgoing", + "index": 111475, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "48752c75-9279-4cfc-97ad-b3cdbbbc7075", + "direction": "outgoing", + "index": 111476, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.454-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "2c9b988c-c186-481a-a7bd-0e67b8b916bb", + "direction": "outgoing", + "index": 111477, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "f252e277-e449-48fb-81d0-34c5560eb286", + "direction": "outgoing", + "index": 111478, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "9cccda7d-d49c-435a-821c-4618772d210d", + "direction": "outgoing", + "index": 111479, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "43853126-c089-4045-9b83-c1947dad4ab8", + "direction": "outgoing", + "index": 111480, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "c1694c55-6531-4a14-aace-4256842f4945", + "direction": "outgoing", + "index": 111481, + "result_id": "48c637f3-6ac5-43c4-a7ec-04c6649da4d7", + "status": 200, + "timestamp": "2026-05-22T08:34:05.517-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:05.404-04:00" + }, + { + "id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "created_at": "2026-05-22T08:34:07.422-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "09c0f561-d2cc-48b5-b556-a9e52231668b", + "direction": "outgoing", + "index": 111482, + "result_id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "status": 200, + "timestamp": "2026-05-22T08:34:07.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "42532611-e33d-4413-a94b-9c193d3ac867", + "direction": "outgoing", + "index": 111483, + "result_id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "status": 200, + "timestamp": "2026-05-22T08:34:07.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5df23821-b96d-4903-bdde-695868d00172\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eb07cfdb-7e9c-46bf-b31e-9e115f1d1090", + "direction": "outgoing", + "index": 111484, + "result_id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "status": 200, + "timestamp": "2026-05-22T08:34:07.469-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "c217428c-8488-4011-826a-a46e310bc806", + "direction": "outgoing", + "index": 111485, + "result_id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "status": 200, + "timestamp": "2026-05-22T08:34:07.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3671874f-fd37-479c-b437-0f4907481505\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "854efa72-38a5-49ee-b63b-d0b0798c49e6", + "direction": "outgoing", + "index": 111486, + "result_id": "c39abd81-0adb-4285-bd0d-742e0e846e3a", + "status": 200, + "timestamp": "2026-05-22T08:34:07.500-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3671874f-fd37-479c-b437-0f4907481505\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:07.422-04:00" + }, + { + "id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "created_at": "2026-05-22T08:34:08.615-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "280360a9-6ae4-4621-b8af-81d091380f5e", + "direction": "outgoing", + "index": 111487, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.621-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8a5dbe93-9c4c-473f-bf60-ad3f47259791", + "direction": "outgoing", + "index": 111488, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fde9983d-fb79-442f-aa3e-a8d2a97a73ec", + "direction": "outgoing", + "index": 111489, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0e586125-9de1-4e45-95e8-5fd1869a2918", + "direction": "outgoing", + "index": 111490, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.680-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c44ff974-45cc-44ee-a2ea-7c7e478e9e98", + "direction": "outgoing", + "index": 111491, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4e0d5442-b8f3-4e2b-9ca4-14a4dcf79040", + "direction": "outgoing", + "index": 111492, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1d9a8983-62cd-42f1-98da-5a7206f4f548", + "direction": "outgoing", + "index": 111493, + "result_id": "f5dcb8e3-3c64-4dba-9f55-6ae9cf30dcc8", + "status": 200, + "timestamp": "2026-05-22T08:34:08.723-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:08.615-04:00" + }, + { + "id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "created_at": "2026-05-22T08:34:11.899-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3fadc3bc-1dbb-49e8-8532-74fb0f4bcf53", + "direction": "outgoing", + "index": 111494, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "1f3fc481-9e3d-421f-a692-b848e60c3a79", + "direction": "outgoing", + "index": 111495, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.929-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d0575a39-b831-436c-acc6-4d58dff79d8d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "45c5084c-6754-41ef-a0bf-bd317ecf2f15", + "direction": "outgoing", + "index": 111496, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.945-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "5c092c55-9d7d-4c6d-8207-8063acb6ebb6", + "direction": "outgoing", + "index": 111497, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=18aff1ed-3154-4a42-8aa2-05d53c0f4eca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b44a436d-750e-444d-b54d-5d125816299d", + "direction": "outgoing", + "index": 111498, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.974-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=18aff1ed-3154-4a42-8aa2-05d53c0f4eca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8723494c-0f99-4567-b09b-6d629ce7b2b3", + "direction": "outgoing", + "index": 111499, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:11.988-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "73d8aec3-9e21-4928-873e-f7ac0608efce", + "direction": "outgoing", + "index": 111500, + "result_id": "22f4f038-688b-427c-adb3-73aca6c0b4d1", + "status": 200, + "timestamp": "2026-05-22T08:34:12.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f82ccd14-0078-4b90-bfde-b22eb4a7eeb8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:11.899-04:00" + }, + { + "id": "14984d69-24aa-46f1-9f22-bad3335de521", + "created_at": "2026-05-22T08:34:13.013-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9cd139cf-d3fa-445d-8e4f-c61ee082631b", + "direction": "outgoing", + "index": 111501, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4e9dd1d4-781e-4db8-a8b8-024d94eb1636", + "direction": "outgoing", + "index": 111502, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9218d337-50cc-40a5-9adb-3e5adce29fc1", + "direction": "outgoing", + "index": 111503, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "cb039b70-fe99-4043-9c90-b7ea362c3c87", + "direction": "outgoing", + "index": 111504, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "67534444-9654-411d-99f1-468e82020199", + "direction": "outgoing", + "index": 111505, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7d4d9c91-7fc6-43bd-bf7a-c0df55051569", + "direction": "outgoing", + "index": 111506, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "70d3187f-b34a-43be-8289-749a2c7650b4", + "direction": "outgoing", + "index": 111507, + "result_id": "14984d69-24aa-46f1-9f22-bad3335de521", + "status": 200, + "timestamp": "2026-05-22T08:34:13.099-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:13.013-04:00" + }, + { + "id": "c2df3eaf-9720-4fdb-9075-70351919cf4e", + "created_at": "2026-05-22T08:34:13.919-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c21c7678-8903-45b7-bd80-891187f75285", + "direction": "outgoing", + "index": 111508, + "result_id": "c2df3eaf-9720-4fdb-9075-70351919cf4e", + "status": 200, + "timestamp": "2026-05-22T08:34:13.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "69d651d8-e504-49ed-9b93-318f9e8acf90", + "direction": "outgoing", + "index": 111509, + "result_id": "c2df3eaf-9720-4fdb-9075-70351919cf4e", + "status": 200, + "timestamp": "2026-05-22T08:34:13.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "ed0104f9-1625-45ac-a70f-b0ab69b853ab", + "direction": "outgoing", + "index": 111510, + "result_id": "c2df3eaf-9720-4fdb-9075-70351919cf4e", + "status": 200, + "timestamp": "2026-05-22T08:34:13.961-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:13.919-04:00" + }, + { + "id": "3b49de8b-0822-40c1-b9fe-560f5d7119a7", + "created_at": "2026-05-22T08:34:14.097-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "db4d1464-16e2-4dc9-b31b-7cf36598d218", + "direction": "outgoing", + "index": 111511, + "result_id": "3b49de8b-0822-40c1-b9fe-560f5d7119a7", + "status": 200, + "timestamp": "2026-05-22T08:34:14.099-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:14.097-04:00" + }, + { + "id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "created_at": "2026-05-22T08:34:15.408-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "11b49436-d8f9-471e-9cc4-6483a15d5716", + "direction": "outgoing", + "index": 111512, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.412-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "8d493986-f796-461f-acba-841bb4af18ab", + "direction": "outgoing", + "index": 111513, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "03150d91-f374-4da6-b92d-5fee612d2123", + "direction": "outgoing", + "index": 111514, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "cbbe7eff-f068-4d21-ac0f-115e33adbf48", + "direction": "outgoing", + "index": 111515, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "c76518d7-5def-4deb-9dc0-c8b5bbd611fa", + "direction": "outgoing", + "index": 111516, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "e5456cf8-a867-48c0-ba57-89ef4ea51142", + "direction": "outgoing", + "index": 111517, + "result_id": "87938e68-05a9-45d1-ab35-4b763653bbea", + "status": 200, + "timestamp": "2026-05-22T08:34:15.485-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:15.408-04:00" + }, + { + "id": "063b2a26-8db5-4e1e-b49a-d005f86ece4f", + "created_at": "2026-05-22T08:34:16.518-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:16.518-04:00" + }, + { + "id": "a9d061d2-67e7-44de-a1f2-7527ea8abc52", + "created_at": "2026-05-22T08:34:16.581-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:16.581-04:00" + }, + { + "id": "978ba78e-be48-4021-9aac-e901ea83096c", + "created_at": "2026-05-22T08:34:16.826-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cf15a58f-3731-4dc8-8a18-6aa507447894", + "direction": "outgoing", + "index": 111518, + "result_id": "978ba78e-be48-4021-9aac-e901ea83096c", + "status": 200, + "timestamp": "2026-05-22T08:34:16.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082", + "verb": "get" + }, + { + "id": "86eff2e8-a10c-4764-b114-74d51c96c1b0", + "direction": "outgoing", + "index": 111519, + "result_id": "978ba78e-be48-4021-9aac-e901ea83096c", + "status": 200, + "timestamp": "2026-05-22T08:34:16.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note-us_core_v311_diagnostic_report_note_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:16.826-04:00" + }, + { + "id": "ee476d54-88f8-4b06-b2e4-19e0244f4f8a", + "created_at": "2026-05-22T08:34:16.884-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_note", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:16.884-04:00" + }, + { + "id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "created_at": "2026-05-22T08:34:17.587-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0b1488ff-bb3e-45e2-be02-d4050d6f9173", + "direction": "outgoing", + "index": 111520, + "result_id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "status": 200, + "timestamp": "2026-05-22T08:34:17.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "57444ce0-70c1-44a3-859e-8fe3ec74f1d0", + "direction": "outgoing", + "index": 111521, + "result_id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "status": 200, + "timestamp": "2026-05-22T08:34:17.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "54694cb5-3beb-4eca-b67a-26a285c436ad", + "direction": "outgoing", + "index": 111522, + "result_id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "status": 200, + "timestamp": "2026-05-22T08:34:17.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "5e4080a5-533a-4a15-9af8-430bf8ec9001", + "direction": "outgoing", + "index": 111523, + "result_id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "status": 200, + "timestamp": "2026-05-22T08:34:17.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "695b0188-768e-4f21-a3c3-ef9c940c05da", + "direction": "outgoing", + "index": 111524, + "result_id": "6104d907-0f1a-4d0c-a29a-32a5773491f4", + "status": 200, + "timestamp": "2026-05-22T08:34:17.669-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:17.587-04:00" + }, + { + "id": "b674b4b5-e948-453e-becd-af8692f601a8", + "created_at": "2026-05-22T08:34:18.510-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "884ab474-8f55-4015-ba39-5b98422a9a50", + "direction": "outgoing", + "index": 111525, + "result_id": "b674b4b5-e948-453e-becd-af8692f601a8", + "status": 200, + "timestamp": "2026-05-22T08:34:18.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "414383ad-9d87-403e-9211-957760b4ee82", + "direction": "outgoing", + "index": 111526, + "result_id": "b674b4b5-e948-453e-becd-af8692f601a8", + "status": 200, + "timestamp": "2026-05-22T08:34:18.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5df23821-b96d-4903-bdde-695868d00172\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0a03fb6-f190-4a6b-ad26-9660509511d4", + "direction": "outgoing", + "index": 111527, + "result_id": "b674b4b5-e948-453e-becd-af8692f601a8", + "status": 200, + "timestamp": "2026-05-22T08:34:18.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "c43fd959-4bcf-4345-8c02-5a9755ff7f78", + "direction": "outgoing", + "index": 111528, + "result_id": "b674b4b5-e948-453e-becd-af8692f601a8", + "status": 200, + "timestamp": "2026-05-22T08:34:18.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3671874f-fd37-479c-b437-0f4907481505\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6bb0458b-7d90-422c-9d5a-2f6371862301", + "direction": "outgoing", + "index": 111529, + "result_id": "b674b4b5-e948-453e-becd-af8692f601a8", + "status": 200, + "timestamp": "2026-05-22T08:34:18.594-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3671874f-fd37-479c-b437-0f4907481505\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:18.510-04:00" + }, + { + "id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "created_at": "2026-05-22T08:34:19.406-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ac51da4f-6cce-46f9-94eb-ff986417544a", + "direction": "outgoing", + "index": 111530, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9eccbd3d-bd96-4bef-a787-75572229ba32", + "direction": "outgoing", + "index": 111531, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "13835626-9516-42ea-ad9d-0c8bc77298d2", + "direction": "outgoing", + "index": 111532, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d41d94f6-8c49-43e0-991e-b11f2c15a19d", + "direction": "outgoing", + "index": 111533, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2d1bf4b0-3416-46ed-a15d-8694c84840f9", + "direction": "outgoing", + "index": 111534, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8424c7c3-3a03-4dfb-af09-c452e7ae991e", + "direction": "outgoing", + "index": 111535, + "result_id": "ecf8d777-795b-4f54-9508-819cb781c0ca", + "status": 200, + "timestamp": "2026-05-22T08:34:19.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:19.406-04:00" + }, + { + "id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "created_at": "2026-05-22T08:34:21.069-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "96d2d8ff-cbde-428f-9dc1-7275090df044", + "direction": "outgoing", + "index": 111536, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "d28ebaf1-453c-49f7-b198-d9714c4d0d4e", + "direction": "outgoing", + "index": 111537, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=18aff1ed-3154-4a42-8aa2-05d53c0f4eca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "674d841e-c5e4-474f-8ca6-d6a8196ba476", + "direction": "outgoing", + "index": 111538, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.117-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=18aff1ed-3154-4a42-8aa2-05d53c0f4eca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7c0c2696-cb6e-4e5f-bf15-f3ad20c7c813", + "direction": "outgoing", + "index": 111539, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "d9cb25fb-de1a-41ba-9f65-8d7718c79216", + "direction": "outgoing", + "index": 111540, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=352f7d8e-cac3-4694-91c7-b668cb0c24d1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "695fac0c-561b-44c1-88b2-f5cbfe8a1581", + "direction": "outgoing", + "index": 111541, + "result_id": "dd69eefd-d353-45c9-a76e-eaed1e43e9b7", + "status": 200, + "timestamp": "2026-05-22T08:34:21.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=352f7d8e-cac3-4694-91c7-b668cb0c24d1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:21.069-04:00" + }, + { + "id": "13be89f6-3763-440c-870f-990e3361ef92", + "created_at": "2026-05-22T08:34:22.117-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "93c82b73-983b-409a-ad57-5a5a4618f6bc", + "direction": "outgoing", + "index": 111542, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "75a33ff8-de8e-43ff-9569-73f4e636b8da", + "direction": "outgoing", + "index": 111543, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7108cd5e-3894-47b8-a260-6d25539e3f74", + "direction": "outgoing", + "index": 111544, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.148-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7ef19ae2-d7db-4ebc-88d6-f709dd5597ac", + "direction": "outgoing", + "index": 111545, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "defcb1e6-9e2e-4ab2-b4c2-e44dea7eabb4", + "direction": "outgoing", + "index": 111546, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e1c660da-2b72-4d4d-bdc1-a8264dd900d3", + "direction": "outgoing", + "index": 111547, + "result_id": "13be89f6-3763-440c-870f-990e3361ef92", + "status": 200, + "timestamp": "2026-05-22T08:34:22.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:22.117-04:00" + }, + { + "id": "5346c409-ada3-4473-b138-07b255abd1d0", + "created_at": "2026-05-22T08:34:22.459-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f4d10212-4f47-48a2-a535-c361be574726", + "direction": "outgoing", + "index": 111548, + "result_id": "5346c409-ada3-4473-b138-07b255abd1d0", + "status": 200, + "timestamp": "2026-05-22T08:34:22.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355", + "verb": "get" + }, + { + "id": "c2b6d070-c1c3-4135-96e2-c9a8f23432d1", + "direction": "outgoing", + "index": 111549, + "result_id": "5346c409-ada3-4473-b138-07b255abd1d0", + "status": 200, + "timestamp": "2026-05-22T08:34:22.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:22.459-04:00" + }, + { + "id": "62dca4e6-d649-4d38-ae4c-ebe03d8a4fb3", + "created_at": "2026-05-22T08:34:22.605-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "24c69ee9-fe3c-4cd9-9c4e-ea06a4b8978c", + "direction": "outgoing", + "index": 111550, + "result_id": "62dca4e6-d649-4d38-ae4c-ebe03d8a4fb3", + "status": 200, + "timestamp": "2026-05-22T08:34:22.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:22.605-04:00" + }, + { + "id": "5f968d1d-1737-473f-aa31-e87a6ffb9cee", + "created_at": "2026-05-22T08:34:23.063-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8bf0e6e8-4a25-49d2-aa15-7d6e599d8d62", + "direction": "outgoing", + "index": 111551, + "result_id": "5f968d1d-1737-473f-aa31-e87a6ffb9cee", + "status": 200, + "timestamp": "2026-05-22T08:34:23.068-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "8eb8f3f1-a1e4-48af-b889-913ce18f307d", + "direction": "outgoing", + "index": 111552, + "result_id": "5f968d1d-1737-473f-aa31-e87a6ffb9cee", + "status": 200, + "timestamp": "2026-05-22T08:34:23.082-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:23.063-04:00" + }, + { + "id": "934d5098-722a-47ea-88eb-c466e33e4fea", + "created_at": "2026-05-22T08:34:23.150-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:23.150-04:00" + }, + { + "id": "35ac89c4-016c-4abf-be14-138d9c383b9e", + "created_at": "2026-05-22T08:34:23.156-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:23.156-04:00" + }, + { + "id": "be515899-30db-4172-affa-5550d607ca26", + "created_at": "2026-05-22T08:34:23.409-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e37a2d64-de29-498b-9ca4-c8822dba4246", + "direction": "outgoing", + "index": 111553, + "result_id": "be515899-30db-4172-affa-5550d607ca26", + "status": 200, + "timestamp": "2026-05-22T08:34:23.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "10a491e9-8aed-4067-af5c-f4d8a13723df", + "direction": "outgoing", + "index": 111554, + "result_id": "be515899-30db-4172-affa-5550d607ca26", + "status": 200, + "timestamp": "2026-05-22T08:34:23.438-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab-us_core_v311_diagnostic_report_lab_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:23.409-04:00" + }, + { + "id": "4a88a2b5-f2dc-43fb-a013-a9f75f09474e", + "created_at": "2026-05-22T08:34:23.461-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_diagnostic_report_lab", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:23.461-04:00" + }, + { + "id": "5458b275-e73c-4f2f-8965-100038682541", + "created_at": "2026-05-22T08:34:27.318-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8e521dd9-c875-4706-bff0-3250a7364a1b", + "direction": "outgoing", + "index": 111555, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.322-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "abafef3a-889c-4ba3-8d38-553220152f38", + "direction": "outgoing", + "index": 111556, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.336-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35f62adb-69d2-4fdb-ba3f-fb7c7ee9c650\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95497101-90ed-4cfb-ad12-40bcf3b52f6a", + "direction": "outgoing", + "index": 111557, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35f62adb-69d2-4fdb-ba3f-fb7c7ee9c650\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2061f31c-212d-44b6-83d2-f83c6391c9cb", + "direction": "outgoing", + "index": 111558, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.364-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search", + "verb": "post" + }, + { + "id": "b282d53c-7147-4771-a83d-96c6d53e392f", + "direction": "outgoing", + "index": 111559, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.377-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35f62adb-69d2-4fdb-ba3f-fb7c7ee9c650\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "57485fbf-cb1c-4c72-9be2-6c4bdd1db4d7", + "direction": "outgoing", + "index": 111560, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35f62adb-69d2-4fdb-ba3f-fb7c7ee9c650\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "31347ac0-c33f-4ed0-b856-0781dfeb4bb6", + "direction": "outgoing", + "index": 111561, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85", + "verb": "get" + }, + { + "id": "46a1b4ae-6497-4954-9a20-a18659d7a8eb", + "direction": "outgoing", + "index": 111562, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a1b13304-3ab1-4c92-8d24-63e78354d477\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4b2fb12d-a818-4526-9704-a956a3fd65aa", + "direction": "outgoing", + "index": 111563, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a1b13304-3ab1-4c92-8d24-63e78354d477\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0b70b736-85e6-4770-a41e-494c403104c9", + "direction": "outgoing", + "index": 111564, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.446-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "b6b085cc-d293-450d-ac47-07edc52ae863", + "direction": "outgoing", + "index": 111565, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.460-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae492fb0-821e-4a54-8652-08125b9ca20e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0e42f8a8-e5cb-489d-a1ed-f8373ca3464e", + "direction": "outgoing", + "index": 111566, + "result_id": "5458b275-e73c-4f2f-8965-100038682541", + "status": 200, + "timestamp": "2026-05-22T08:34:27.474-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae492fb0-821e-4a54-8652-08125b9ca20e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:27.318-04:00" + }, + { + "id": "0f18d502-a96b-48c0-9b24-752c787338d2", + "created_at": "2026-05-22T08:34:27.609-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9cf5a284-c86d-42c2-b273-ce34617a1ab1", + "direction": "outgoing", + "index": 111567, + "result_id": "0f18d502-a96b-48c0-9b24-752c787338d2", + "status": 200, + "timestamp": "2026-05-22T08:34:27.614-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference__id_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:27.609-04:00" + }, + { + "id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "created_at": "2026-05-22T08:34:28.606-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "56473d1d-2393-4a86-a487-56e01a55190d", + "direction": "outgoing", + "index": 111568, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.610-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "65a1e849-84a3-41cb-ae7c-81d3cf031d2c", + "direction": "outgoing", + "index": 111569, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.632-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "cd1f2396-b2ad-47ef-8be9-aa2691af5d25", + "direction": "outgoing", + "index": 111570, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "8dce30af-b6ac-4d23-ad88-2652ddf6000e", + "direction": "outgoing", + "index": 111571, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "f0e8d7c7-d046-4ccd-98f2-ffefeb12a2d5", + "direction": "outgoing", + "index": 111572, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "7676022e-d7c6-4853-bd14-117a5e8021d1", + "direction": "outgoing", + "index": 111573, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "89d4251f-e858-4a47-b75d-90b5b001fd08", + "direction": "outgoing", + "index": 111574, + "result_id": "751bcc4d-8aa9-49ed-ac9e-c61ccf01abe3", + "status": 200, + "timestamp": "2026-05-22T08:34:28.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_type_period_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:28.606-04:00" + }, + { + "id": "53c7c471-6607-41e5-9c5d-ee208a803892", + "created_at": "2026-05-22T08:34:29.147-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "47d32ccf-c56c-4796-84ea-1816f92173bb", + "direction": "outgoing", + "index": 111575, + "result_id": "53c7c471-6607-41e5-9c5d-ee208a803892", + "status": 200, + "timestamp": "2026-05-22T08:34:29.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3", + "verb": "get" + }, + { + "id": "33ee5a72-1f4a-43c8-8202-8a2968609b00", + "direction": "outgoing", + "index": 111576, + "result_id": "53c7c471-6607-41e5-9c5d-ee208a803892", + "status": 200, + "timestamp": "2026-05-22T08:34:29.173-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "3c99dd61-24d3-4fdc-97a7-0060072d2e5d", + "direction": "outgoing", + "index": 111577, + "result_id": "53c7c471-6607-41e5-9c5d-ee208a803892", + "status": 200, + "timestamp": "2026-05-22T08:34:29.187-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_type_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:29.147-04:00" + }, + { + "id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "created_at": "2026-05-22T08:34:32.547-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e54d0f2c-5b8a-4ccd-9ce7-ab258e5a5225", + "direction": "outgoing", + "index": 111578, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "853c4183-d6a0-4e32-8483-9d4bc65edc4c", + "direction": "outgoing", + "index": 111579, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d9bfcd2c-e3cc-45ca-8535-02d4417d9813", + "direction": "outgoing", + "index": 111580, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.599-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9de18f12-77ba-4e44-a1fe-e13a5a16ca2e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eee9cbe1-4410-45e8-8dc5-9e26c7a8f25f", + "direction": "outgoing", + "index": 111581, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9de18f12-77ba-4e44-a1fe-e13a5a16ca2e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec47dec1-2d56-4020-995f-9e1fb8e941e8", + "direction": "outgoing", + "index": 111582, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.628-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "33f2ab01-0f2e-4a86-ad91-aadbf1ac5a9d", + "direction": "outgoing", + "index": 111583, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=792e440c-37b2-4246-a71f-450e55948492\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dbf902b8-fb88-4586-9a52-5cd6d82b0cc4", + "direction": "outgoing", + "index": 111584, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=792e440c-37b2-4246-a71f-450e55948492\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "976e0321-5e0e-4ebe-85aa-79a667e8a6f0", + "direction": "outgoing", + "index": 111585, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c38b668b-68a1-49c9-9973-49ed386a4b73", + "direction": "outgoing", + "index": 111586, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5db791be-10e9-49ae-b73a-2e4f53dd5ae1", + "direction": "outgoing", + "index": 111587, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "094866f5-cec1-401a-af6c-601a45d3a938", + "direction": "outgoing", + "index": 111588, + "result_id": "5b74137c-c57b-400f-bed7-c85bcf4775a2", + "status": 200, + "timestamp": "2026-05-22T08:34:32.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:32.547-04:00" + }, + { + "id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "created_at": "2026-05-22T08:34:35.618-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "5f997e3d-8ed1-40cc-a399-d87fb8cf0776", + "direction": "outgoing", + "index": 111589, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded", + "verb": "get" + }, + { + "id": "0e50a48e-180b-41bf-b820-e4aa89d720bc", + "direction": "outgoing", + "index": 111590, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0568fddc-6a50-4e44-87e5-cec71b1faefc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "44ea433c-10a0-40c0-a21b-bec3b6d63835", + "direction": "outgoing", + "index": 111591, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded", + "verb": "get" + }, + { + "id": "81af0bff-0d6e-437f-9834-0f94dc9e4155", + "direction": "outgoing", + "index": 111592, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4520a16c-a773-494c-9eec-74fdfbedd458\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aad5082a-68b6-4fec-a657-99c9d12acc29", + "direction": "outgoing", + "index": 111593, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.700-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error", + "verb": "get" + }, + { + "id": "56ccaf88-1b4f-4be5-87e7-0e4c642deaf6", + "direction": "outgoing", + "index": 111594, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.716-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e539fe37-235c-423c-91ad-2e2441e5d0b9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0fa43fc4-6fa7-4bff-a1c1-16f23fdf5550", + "direction": "outgoing", + "index": 111595, + "result_id": "68d6cd89-222e-44c5-9db0-5fc51ab7b019", + "status": 200, + "timestamp": "2026-05-22T08:34:35.731-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e539fe37-235c-423c-91ad-2e2441e5d0b9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:35.618-04:00" + }, + { + "id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "created_at": "2026-05-22T08:34:38.985-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5069d1f2-858c-427c-a57d-327aac7b7631", + "direction": "outgoing", + "index": 111596, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:38.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "a03de36c-7493-43d5-bfa8-bc622b137ac7", + "direction": "outgoing", + "index": 111597, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.016-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=98394c59-6024-4a7e-a4c5-c8e109a54237\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b7d7c48a-2d4d-4b13-9c19-7de755853099", + "direction": "outgoing", + "index": 111598, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.035-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=98394c59-6024-4a7e-a4c5-c8e109a54237\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6b023974-6934-4e97-ac76-894ce5032667", + "direction": "outgoing", + "index": 111599, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "6d5d5bbc-8507-40c4-a2fb-468efee790fc", + "direction": "outgoing", + "index": 111600, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c60ed28f-c167-4d45-9ba0-3a55be2445a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "87dc4045-043f-4502-8ff8-f8747534cdb3", + "direction": "outgoing", + "index": 111601, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.081-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c60ed28f-c167-4d45-9ba0-3a55be2445a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5377f5af-4524-4922-9187-3689f84884e6", + "direction": "outgoing", + "index": 111602, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355", + "verb": "get" + }, + { + "id": "df313eac-520c-4416-95ee-326dd8b7514b", + "direction": "outgoing", + "index": 111603, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.107-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=88b29b52-5084-4dc0-82bb-74d4aaa108ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a154c95-2a63-4d1c-bdff-d52ef8562f46", + "direction": "outgoing", + "index": 111604, + "result_id": "f474c17f-7495-4ff4-841a-39ec2ab006ae", + "status": 200, + "timestamp": "2026-05-22T08:34:39.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=88b29b52-5084-4dc0-82bb-74d4aaa108ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:38.985-04:00" + }, + { + "id": "d5a456fc-be93-4050-9d98-86221b7b5440", + "created_at": "2026-05-22T08:34:39.261-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f70b7144-26bb-4848-b9fc-1ad57c155385", + "direction": "outgoing", + "index": 111605, + "result_id": "d5a456fc-be93-4050-9d98-86221b7b5440", + "status": 200, + "timestamp": "2026-05-22T08:34:39.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:39.261-04:00" + }, + { + "id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "created_at": "2026-05-22T08:34:41.569-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "476d3f84-2e4d-42b5-b8fd-00be08f08002", + "direction": "outgoing", + "index": 111606, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "4ee232ea-13cf-4dcd-b878-19884d311fc2", + "direction": "outgoing", + "index": 111607, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7087f69-886e-4ba7-855b-3c5cc3406b4f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "16dcdbad-edab-4119-a239-66e58af0b5fa", + "direction": "outgoing", + "index": 111608, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7087f69-886e-4ba7-855b-3c5cc3406b4f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9eb4118-2eeb-4d92-bc64-f7951bd448b3", + "direction": "outgoing", + "index": 111609, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "ad7f7728-4e8b-464c-82e3-740194bb5c43", + "direction": "outgoing", + "index": 111610, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2802b42e-0e67-4a2b-a74c-3af22e55e43b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "68bd2233-9fb6-4de2-a1fe-572be9d212a0", + "direction": "outgoing", + "index": 111611, + "result_id": "d6eb35d4-8279-4f6d-b20c-608a12c25684", + "status": 200, + "timestamp": "2026-05-22T08:34:41.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2802b42e-0e67-4a2b-a74c-3af22e55e43b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:41.569-04:00" + }, + { + "id": "e2e57c0e-a8f6-4c92-9824-5d8efd30ee3f", + "created_at": "2026-05-22T08:34:42.987-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.category[0]: None of the codings provided are in the value set 'US Core DocumentReference Category' (http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-category|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#42348-3)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1')", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:42.987-04:00" + }, + { + "id": "6df8990e-b195-4bae-81c6-4bcbd11a1cca", + "created_at": "2026-05-22T08:34:43.109-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:43.109-04:00" + }, + { + "id": "4ae96965-5a70-4a6f-9561-fd4356bda3df", + "created_at": "2026-05-22T08:34:43.114-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference-us_core_v311_document_reference_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:43.114-04:00" + }, + { + "id": "89c070f9-0ed7-4463-b137-39b1115138be", + "created_at": "2026-05-22T08:34:43.115-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_document_reference", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:43.115-04:00" + }, + { + "id": "36ac00ba-9800-430a-8f62-7ed8d5fad56b", + "created_at": "2026-05-22T08:34:43.603-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c61a4eb8-c35e-41e1-b063-24fb0b5a80f3", + "direction": "outgoing", + "index": 111612, + "result_id": "36ac00ba-9800-430a-8f62-7ed8d5fad56b", + "status": 200, + "timestamp": "2026-05-22T08:34:43.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=85", + "verb": "get" + }, + { + "id": "8c5d6ba3-4326-48fb-a292-05c082170c1a", + "direction": "outgoing", + "index": 111613, + "result_id": "36ac00ba-9800-430a-8f62-7ed8d5fad56b", + "status": 200, + "timestamp": "2026-05-22T08:34:43.653-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355", + "verb": "get" + }, + { + "id": "f5eac12d-51bc-486d-a4e2-6c0c5a56e70d", + "direction": "outgoing", + "index": 111614, + "result_id": "36ac00ba-9800-430a-8f62-7ed8d5fad56b", + "status": 200, + "timestamp": "2026-05-22T08:34:43.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/_search", + "verb": "post" + }, + { + "id": "e2daf6f1-0ea3-47e0-8e12-fac1e7d2e164", + "direction": "outgoing", + "index": 111615, + "result_id": "36ac00ba-9800-430a-8f62-7ed8d5fad56b", + "status": 200, + "timestamp": "2026-05-22T08:34:43.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:43.603-04:00" + }, + { + "id": "37977689-787b-448b-b4d7-25e9e4b83895", + "created_at": "2026-05-22T08:34:43.814-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "705b9ae2-bf1b-4630-8737-57a471b648bd", + "direction": "outgoing", + "index": 111616, + "result_id": "37977689-787b-448b-b4d7-25e9e4b83895", + "status": 200, + "timestamp": "2026-05-22T08:34:43.817-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_patient_lifecycle_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:43.814-04:00" + }, + { + "id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "created_at": "2026-05-22T08:34:44.510-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "625f6692-59c7-45d7-bb4c-3c515fd9ca13", + "direction": "outgoing", + "index": 111617, + "result_id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "status": 200, + "timestamp": "2026-05-22T08:34:44.517-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07", + "verb": "get" + }, + { + "id": "eb2851b1-9b9f-40d4-ab87-45157300f74b", + "direction": "outgoing", + "index": 111618, + "result_id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "status": 200, + "timestamp": "2026-05-22T08:34:44.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "faf0741a-a224-4c17-8ecc-3866d61d228e", + "direction": "outgoing", + "index": 111619, + "result_id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "status": 200, + "timestamp": "2026-05-22T08:34:44.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "3bee21e7-984b-478d-9a85-0ce4aec9a53b", + "direction": "outgoing", + "index": 111620, + "result_id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "status": 200, + "timestamp": "2026-05-22T08:34:44.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "653c8e0a-f6a9-412d-9b17-4e358b9e3edd", + "direction": "outgoing", + "index": 111621, + "result_id": "7876726a-c59c-4899-8cab-151a16e7d5ff", + "status": 200, + "timestamp": "2026-05-22T08:34:44.586-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_patient_target_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:44.510-04:00" + }, + { + "id": "ad8dcda4-0260-4545-b707-40521a51d875", + "created_at": "2026-05-22T08:34:44.710-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b75f3547-30c2-4e39-a913-b92af498b45d", + "direction": "outgoing", + "index": 111622, + "result_id": "ad8dcda4-0260-4545-b707-40521a51d875", + "status": 200, + "timestamp": "2026-05-22T08:34:44.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:44.710-04:00" + }, + { + "id": "c0018767-8525-4198-b1d8-6c08693811f9", + "created_at": "2026-05-22T08:34:45.051-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ea739815-a7f3-4945-9389-95b497c02e49", + "direction": "outgoing", + "index": 111623, + "result_id": "c0018767-8525-4198-b1d8-6c08693811f9", + "status": 200, + "timestamp": "2026-05-22T08:34:45.055-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "4a466439-6d56-4699-b3da-35b592ef65a7", + "direction": "outgoing", + "index": 111624, + "result_id": "c0018767-8525-4198-b1d8-6c08693811f9", + "status": 200, + "timestamp": "2026-05-22T08:34:45.071-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:45.051-04:00" + }, + { + "id": "7a529220-a9a0-47da-ab88-336b810527a2", + "created_at": "2026-05-22T08:34:45.120-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:45.120-04:00" + }, + { + "id": "74e63245-d465-4d27-8299-49ea3120e584", + "created_at": "2026-05-22T08:34:45.125-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:45.125-04:00" + }, + { + "id": "f7ab52b2-1d46-4d59-baa5-70fd13322859", + "created_at": "2026-05-22T08:34:45.128-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal-us_core_v311_goal_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:45.128-04:00" + }, + { + "id": "bf4d07c3-8b98-4fe9-8562-d92d6a50fe6b", + "created_at": "2026-05-22T08:34:45.129-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_goal", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:45.129-04:00" + }, + { + "id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "created_at": "2026-05-22T08:34:47.957-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5bd22bc7-7c06-493e-8328-ac998dbd91d3", + "direction": "outgoing", + "index": 111625, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:47.962-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85", + "verb": "get" + }, + { + "id": "1790e21e-7144-4526-8b7b-4a448d1d5944", + "direction": "outgoing", + "index": 111626, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:47.980-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e3dd23a-45ae-4cfe-b327-d418c15a3c63\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6296affa-3621-4a94-8694-01363fd337ae", + "direction": "outgoing", + "index": 111627, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:47.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/_search", + "verb": "post" + }, + { + "id": "0adf7fdf-d5a0-4a79-88a8-1891c401781e", + "direction": "outgoing", + "index": 111628, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:48.011-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e3dd23a-45ae-4cfe-b327-d418c15a3c63\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aba07e13-353d-4ea6-8ef9-eea6252b09e5", + "direction": "outgoing", + "index": 111629, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:48.025-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85", + "verb": "get" + }, + { + "id": "dd7daf77-e678-4f73-b766-bcafd0a82da0", + "direction": "outgoing", + "index": 111630, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:48.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b1abe790-95f6-4ef7-bc8f-d2664d707b20\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfe6f973-28e5-41a2-9ebc-4366d29603f9", + "direction": "outgoing", + "index": 111631, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:48.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355", + "verb": "get" + }, + { + "id": "996dd701-a48e-487a-8e3a-2144e9069f3c", + "direction": "outgoing", + "index": 111632, + "result_id": "180ee103-685d-4df8-83d5-51f01df46dd5", + "status": 200, + "timestamp": "2026-05-22T08:34:48.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f8f465c6-5876-457b-8d78-0136c11e8766\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:47.957-04:00" + }, + { + "id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "created_at": "2026-05-22T08:34:50.249-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "47853241-6844-4c78-977d-5865d4c10aaf", + "direction": "outgoing", + "index": 111633, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.255-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b31a1e65-50a3-49e8-ac22-669249199a20", + "direction": "outgoing", + "index": 111634, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4199d997-45a2-4dad-8042-e4c52d149114", + "direction": "outgoing", + "index": 111635, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a0966dbc-20b4-4927-afe9-8748ca089aae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00be136c-497f-4152-a927-cb2d4c57b984", + "direction": "outgoing", + "index": 111636, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "37f08c99-32db-4e55-bdbf-85b3e09dc8ac", + "direction": "outgoing", + "index": 111637, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37e1e01b-3f7f-4c40-9c47-0d5d1046916b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c8ff01e7-7cef-4b61-a6bb-9985893c89f1", + "direction": "outgoing", + "index": 111638, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.345-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1bd6a51b-b8ab-47ad-90c9-3e61c16fc976", + "direction": "outgoing", + "index": 111639, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "399e4106-52d7-400c-a87f-93c60772f0a5", + "direction": "outgoing", + "index": 111640, + "result_id": "987efce1-d65a-48d3-9bc1-41d88d94f408", + "status": 200, + "timestamp": "2026-05-22T08:34:50.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_patient_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:50.249-04:00" + }, + { + "id": "84d4e512-ae74-4484-ab57-36f61673f960", + "created_at": "2026-05-22T08:34:51.422-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0bd712d0-4771-4889-a436-4d0ea216851f", + "direction": "outgoing", + "index": 111641, + "result_id": "84d4e512-ae74-4484-ab57-36f61673f960", + "status": 200, + "timestamp": "2026-05-22T08:34:51.429-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "525cf262-ea39-43c7-8d1e-2416fd3ace4e", + "direction": "outgoing", + "index": 111642, + "result_id": "84d4e512-ae74-4484-ab57-36f61673f960", + "status": 200, + "timestamp": "2026-05-22T08:34:51.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=353c876b-162c-4bf7-b540-82c16df035f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f2ca108-0a46-4887-816a-a7a1c00d2e6f", + "direction": "outgoing", + "index": 111643, + "result_id": "84d4e512-ae74-4484-ab57-36f61673f960", + "status": 200, + "timestamp": "2026-05-22T08:34:51.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:51.422-04:00" + }, + { + "id": "ac0ec622-804f-449b-a592-abc54131fe27", + "created_at": "2026-05-22T08:34:51.604-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4eeb6a9d-6c43-4081-87e0-57cc3a1e7e2d", + "direction": "outgoing", + "index": 111644, + "result_id": "ac0ec622-804f-449b-a592-abc54131fe27", + "status": 200, + "timestamp": "2026-05-22T08:34:51.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:51.604-04:00" + }, + { + "id": "747d3bfc-4013-4c1d-a68d-fca8961fd7f2", + "created_at": "2026-05-22T08:34:53.569-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b5733043-7f48-4197-a120-5ee733a9ea1b", + "direction": "outgoing", + "index": 111645, + "result_id": "747d3bfc-4013-4c1d-a68d-fca8961fd7f2", + "status": 200, + "timestamp": "2026-05-22T08:34:53.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "213e6df2-a0ea-41c9-9fa1-a34b97282ee4", + "direction": "outgoing", + "index": 111646, + "result_id": "747d3bfc-4013-4c1d-a68d-fca8961fd7f2", + "status": 200, + "timestamp": "2026-05-22T08:34:53.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4762e113-4fea-4b9c-8697-1d4232cb3abe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e7aa6f1-2369-43e1-9af3-6180dd5cbee2", + "direction": "outgoing", + "index": 111647, + "result_id": "747d3bfc-4013-4c1d-a68d-fca8961fd7f2", + "status": 200, + "timestamp": "2026-05-22T08:34:53.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "64cc19bc-2e72-477d-9346-ce6edb29d478", + "direction": "outgoing", + "index": 111648, + "result_id": "747d3bfc-4013-4c1d-a68d-fca8961fd7f2", + "status": 200, + "timestamp": "2026-05-22T08:34:53.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f8705890-80a3-4dc4-a65e-7bc0a7fd32ff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:53.569-04:00" + }, + { + "id": "542f4df3-0df3-45c3-bc4f-e8513c381a47", + "created_at": "2026-05-22T08:34:54.585-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'US Core Vaccine Administered Value Set (CVX)' (http://hl7.org/fhir/us/core/ValueSet/us-core-vaccines-cvx|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_code_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:54.585-04:00" + }, + { + "id": "7a46b30d-6add-4f60-8e47-d72b1078d339", + "created_at": "2026-05-22T08:34:54.643-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:54.643-04:00" + }, + { + "id": "301872cb-3221-402f-86e8-a067c21f8271", + "created_at": "2026-05-22T08:34:54.647-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization-us_core_v311_immunization_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:54.647-04:00" + }, + { + "id": "9196d53b-825a-451a-b2b9-810523781f07", + "created_at": "2026-05-22T08:34:54.648-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_immunization", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:34:54.648-04:00" + }, + { + "id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "created_at": "2026-05-22T08:35:01.413-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f281d146-7ba2-46b1-b819-6d9b5f013e76", + "direction": "outgoing", + "index": 111649, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "c62e3d3f-e740-43a5-9108-d821d337e347", + "direction": "outgoing", + "index": 111650, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "1c942296-7492-4603-8d69-a939a45c64af", + "direction": "outgoing", + "index": 111651, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.477-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "bab655e1-592b-4e17-bd90-be746c1bd942", + "direction": "outgoing", + "index": 111652, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.490-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c749f582-f2a3-47fb-88e2-7437cb7bc448\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63ab7f8d-397a-45f9-8ed9-d742eeb6420b", + "direction": "outgoing", + "index": 111653, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search", + "verb": "post" + }, + { + "id": "5e21e706-4ef2-4cb4-892d-d7753d9426c9", + "direction": "outgoing", + "index": 111654, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.518-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c749f582-f2a3-47fb-88e2-7437cb7bc448\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad569631-c043-4b4b-bbab-874a1364d5ac", + "direction": "outgoing", + "index": 111655, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "5caa59d2-f940-40db-9e2a-6843488f64f4", + "direction": "outgoing", + "index": 111656, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.551-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2e529332-4368-41d3-a91e-dea0ab3ed42c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a6b80bda-fd6e-4b75-987a-07c70f1f230e", + "direction": "outgoing", + "index": 111657, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.566-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "8f6ec61a-a323-4814-9839-dd58517a0925", + "direction": "outgoing", + "index": 111658, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.582-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4b090356-866e-4101-a63e-880effa40800\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6bfea2f8-92c4-45af-8fa2-6f0bad0484ea", + "direction": "outgoing", + "index": 111659, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.597-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "1562382b-d70d-498b-a8a6-0db5fbd57f4b", + "direction": "outgoing", + "index": 111660, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.610-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "11e2fa49-6d27-4e08-a82e-439c4cf398b8", + "direction": "outgoing", + "index": 111661, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "47d69965-0cb6-4f41-9ae2-f30f9ef4d6e8", + "direction": "outgoing", + "index": 111662, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "1a660164-85c5-4032-976c-9a99ad13b381", + "direction": "outgoing", + "index": 111663, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.654-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "9d18bee1-7831-42d2-8b9d-bca6f9f6372f", + "direction": "outgoing", + "index": 111664, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "d5c5941b-8c2c-48f6-b7b7-d1a23fb96bc4", + "direction": "outgoing", + "index": 111665, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "bb748f42-6608-448b-8157-c281be54387f", + "direction": "outgoing", + "index": 111666, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.715-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "2fd0d958-9634-4802-b5e9-10a6d38e1d9e", + "direction": "outgoing", + "index": 111667, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=69d946cf-5213-4922-b71f-ad33009971f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0e4f9ca-79ab-47e8-94f1-4a24b9b08e5e", + "direction": "outgoing", + "index": 111668, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "841f2ec5-d7cd-48c0-a735-27db02cf0ca5", + "direction": "outgoing", + "index": 111669, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "f8fff3b5-5501-46d6-a6cc-7509af0a5b08", + "direction": "outgoing", + "index": 111670, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "0cad0745-9bc0-48cf-8b44-5cf3ae100e3d", + "direction": "outgoing", + "index": 111671, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "10424f86-c9dc-4958-826d-81be5abdf19b", + "direction": "outgoing", + "index": 111672, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355", + "verb": "get" + }, + { + "id": "91f6cba2-e7ab-4af1-bc92-8b66a410891c", + "direction": "outgoing", + "index": 111673, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + }, + { + "id": "3fe5220f-539f-4086-bcf0-5899b0f8f221", + "direction": "outgoing", + "index": 111674, + "result_id": "4932c59e-dbd6-426a-89d6-e96bd4ba68f9", + "status": 200, + "timestamp": "2026-05-22T08:35:01.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7288e477-0666-4225-a9ac-7a7c654473fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_patient_intent_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:01.413-04:00" + }, + { + "id": "09b0e766-8c29-42f3-a778-b841152cb937", + "created_at": "2026-05-22T08:35:02.301-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "698b6937-cf93-49e4-9476-5ac477fcd07e", + "direction": "outgoing", + "index": 111675, + "result_id": "09b0e766-8c29-42f3-a778-b841152cb937", + "status": 200, + "timestamp": "2026-05-22T08:35:02.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "124ef663-13ff-48d9-9d29-fabfcc6e24fd", + "direction": "outgoing", + "index": 111676, + "result_id": "09b0e766-8c29-42f3-a778-b841152cb937", + "status": 200, + "timestamp": "2026-05-22T08:35:02.319-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "d5acc57c-54a9-4a3d-b162-8c69f96479ea", + "direction": "outgoing", + "index": 111677, + "result_id": "09b0e766-8c29-42f3-a778-b841152cb937", + "status": 200, + "timestamp": "2026-05-22T08:35:02.334-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_patient_intent_encounter_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:02.301-04:00" + }, + { + "id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "created_at": "2026-05-22T08:35:04.699-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c7a48f18-84fc-4e7b-8234-d1981bb21fd0", + "direction": "outgoing", + "index": 111678, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "f2d7cb60-a1ba-4996-bc68-0728f3d17cc2", + "direction": "outgoing", + "index": 111679, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "b1ecbafa-531f-4e2f-bd3b-6886e06069ad", + "direction": "outgoing", + "index": 111680, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8a1331fd-4e87-4b24-b72c-e9f22563f159\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "09f9e95e-8025-4a4e-aa87-2465cd78a8bd", + "direction": "outgoing", + "index": 111681, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.760-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "75d04432-970c-4558-8032-dc882ad3541e", + "direction": "outgoing", + "index": 111682, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.773-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8a40d449-ef3e-49f7-96cf-0f968be58fa2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "abafc9e4-97a1-4e43-a510-8fbeac8f1e04", + "direction": "outgoing", + "index": 111683, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "6473f4c2-263c-4a83-847d-8c0c09aa94a2", + "direction": "outgoing", + "index": 111684, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.799-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "c0dd23b0-0d5f-4efe-ad68-5776c25751e9", + "direction": "outgoing", + "index": 111685, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.812-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "563b74f3-ecee-45b6-8f15-3bb7e91ed2ee", + "direction": "outgoing", + "index": 111686, + "result_id": "06ee24cf-3a0f-4e6d-9761-85fa9c176217", + "status": 200, + "timestamp": "2026-05-22T08:35:04.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_patient_intent_authoredon_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:04.699-04:00" + }, + { + "id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "created_at": "2026-05-22T08:35:06.080-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6ca9ee57-70ae-4af2-9361-9b596b63ae87", + "direction": "outgoing", + "index": 111687, + "result_id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "status": 200, + "timestamp": "2026-05-22T08:35:06.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped", + "verb": "get" + }, + { + "id": "f0dd20cf-33d2-43cc-9cf6-83ea75127253", + "direction": "outgoing", + "index": 111688, + "result_id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "status": 200, + "timestamp": "2026-05-22T08:35:06.114-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a68e1d1e-8715-496b-a6b1-1b13f1bad6e1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "508fa856-cf3c-422a-8176-cfb9a658b8bf", + "direction": "outgoing", + "index": 111689, + "result_id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "status": 200, + "timestamp": "2026-05-22T08:35:06.133-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped", + "verb": "get" + }, + { + "id": "ccce9e62-f4c6-45b0-b655-88259deb7e1e", + "direction": "outgoing", + "index": 111690, + "result_id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "status": 200, + "timestamp": "2026-05-22T08:35:06.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown", + "verb": "get" + }, + { + "id": "ee6aa3f2-0dbf-4c75-b618-f8816a3a2e86", + "direction": "outgoing", + "index": 111691, + "result_id": "48544fd7-a9e3-411a-8dfc-e0ed2f16535e", + "status": 200, + "timestamp": "2026-05-22T08:35:06.159-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=476e7d0d-3d58-445c-9514-cdc62e1ef283\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_patient_intent_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:06.080-04:00" + }, + { + "id": "014e1e1c-a2b4-4aab-af8f-f531ab212498", + "created_at": "2026-05-22T08:35:06.289-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "854a229a-f81d-46b0-9d2a-f5becf42fada", + "direction": "outgoing", + "index": 111692, + "result_id": "014e1e1c-a2b4-4aab-af8f-f531ab212498", + "status": 200, + "timestamp": "2026-05-22T08:35:06.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:06.289-04:00" + }, + { + "id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "created_at": "2026-05-22T08:35:10.057-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3d915948-4690-4ce5-91ec-1bd02236bd52", + "direction": "outgoing", + "index": 111693, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "7b80cbec-f50d-48c6-a294-4fbe6a7a1625", + "direction": "outgoing", + "index": 111694, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "84d4d484-18b3-4750-aff1-28369bd595b9", + "direction": "outgoing", + "index": 111695, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "c70c8fc7-5e47-40d6-8f2e-228ef7f587fc", + "direction": "outgoing", + "index": 111696, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14967550-3aeb-4cc9-afd6-8f67aeeb13ad\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "03bde335-054d-40cb-a289-3b6136c524e9", + "direction": "outgoing", + "index": 111697, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "2772e2ef-94a9-42d9-9507-b126f940c38a", + "direction": "outgoing", + "index": 111698, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "7033fdf2-7f05-475c-812d-ee09ad327ca9", + "direction": "outgoing", + "index": 111699, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.183-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "903529ed-1bb1-4d16-a15e-e121bb58371c", + "direction": "outgoing", + "index": 111700, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "295ab3f8-d00d-47d0-a676-e2ce25867ca5", + "direction": "outgoing", + "index": 111701, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.209-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "537badb2-c7d2-4f45-a25f-95954833f274", + "direction": "outgoing", + "index": 111702, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.221-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "5b6b98fd-733a-40b8-bec7-11c622da7c75", + "direction": "outgoing", + "index": 111703, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "b8e3f212-71ca-4617-9739-e93bc22ca7a9", + "direction": "outgoing", + "index": 111704, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "cbfed714-a699-46f5-8af1-5fd571af7b23", + "direction": "outgoing", + "index": 111705, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec6a47e7-5226-49a8-b58d-a13db2e5a672\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "053257f2-79d9-42eb-821c-c29a2200c4cf", + "direction": "outgoing", + "index": 111706, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.278-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "f8def1d6-0212-4d0f-9667-a861aeca7442", + "direction": "outgoing", + "index": 111707, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "f0297a58-13e6-4dd4-8a1b-cefb18502473", + "direction": "outgoing", + "index": 111708, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "a07b2698-9e36-4b5f-8ba9-788ed80e35ed", + "direction": "outgoing", + "index": 111709, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "5865dfed-10f3-4aee-83c9-f5edef1f4b0a", + "direction": "outgoing", + "index": 111710, + "result_id": "b90b4cb8-1693-473d-8ebb-359da3a932e4", + "status": 200, + "timestamp": "2026-05-22T08:35:10.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:10.057-04:00" + }, + { + "id": "0dd09fcd-814f-46df-93e5-05a70fbe8877", + "created_at": "2026-05-22T08:35:11.296-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication-adherence", + "type": "info" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:11.296-04:00" + }, + { + "id": "65487dd2-dfae-4f98-a45a-b74ece6f4355", + "created_at": "2026-05-22T08:35:11.366-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:11.366-04:00" + }, + { + "id": "ac570e23-0a13-4d22-9f79-b6ca83f8ac9c", + "created_at": "2026-05-22T08:35:11.371-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:11.371-04:00" + }, + { + "id": "3c3ad9f7-f1c0-4440-a0f2-22f821749241", + "created_at": "2026-05-22T08:35:11.715-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "45bc0d65-2d50-4338-ac1e-48e70e0eefbc", + "direction": "outgoing", + "index": 111711, + "result_id": "3c3ad9f7-f1c0-4440-a0f2-22f821749241", + "status": 200, + "timestamp": "2026-05-22T08:35:11.719-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1", + "verb": "get" + }, + { + "id": "fbd38483-6db3-45d4-9a94-b6b5f215d5c3", + "direction": "outgoing", + "index": 111712, + "result_id": "3c3ad9f7-f1c0-4440-a0f2-22f821749241", + "status": 200, + "timestamp": "2026-05-22T08:35:11.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078", + "verb": "get" + }, + { + "id": "ea723dd2-a864-43fb-829b-bce391184cca", + "direction": "outgoing", + "index": 111713, + "result_id": "3c3ad9f7-f1c0-4440-a0f2-22f821749241", + "status": 200, + "timestamp": "2026-05-22T08:35:11.765-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request-us_core_v311_medication_request_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:11.715-04:00" + }, + { + "id": "e91b1947-29bd-4379-bfc5-8b9701536653", + "created_at": "2026-05-22T08:35:11.779-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_medication_request", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:11.779-04:00" + }, + { + "id": "2a047a56-fea7-496d-8fca-0717292140b8", + "created_at": "2026-05-22T08:35:18.132-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4b845784-fe04-491a-bd17-2e372ba6ab76", + "direction": "outgoing", + "index": 111714, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.135-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "92174989-a1b9-4a5c-8b37-ee6292bf261a", + "direction": "outgoing", + "index": 111715, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "02d1eeb9-9e19-41ff-b2ec-b472161850a2", + "direction": "outgoing", + "index": 111716, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.168-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d62f1bae-539c-41d1-aa40-fc659bd0665a", + "direction": "outgoing", + "index": 111717, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.183-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8eb4d781-4298-4d27-8b95-b1086f61592c", + "direction": "outgoing", + "index": 111718, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "2d001baf-66a5-454f-97ed-26e255295ca6", + "direction": "outgoing", + "index": 111719, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.216-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a12e52e7-f7d3-4864-b602-f84d68b4fdfd", + "direction": "outgoing", + "index": 111720, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.231-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "553dd350-17f5-4ac8-b2a1-84ca01effeda", + "direction": "outgoing", + "index": 111721, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.247-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=06bd9ac6-9b55-4be3-8d04-665094484bfc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f03cc1a4-4907-4431-9d33-8056ed0475b4", + "direction": "outgoing", + "index": 111722, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "7bf20760-07e6-4fcb-b2d8-e6775f504330", + "direction": "outgoing", + "index": 111723, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=45de8cf8-98f3-4b0f-b7fe-7dd8c3281c76\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c6e07d41-d42c-42d5-8460-93f84a818385", + "direction": "outgoing", + "index": 111724, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.289-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=45de8cf8-98f3-4b0f-b7fe-7dd8c3281c76\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aae22ac6-7e93-471b-b3a8-b9167e7af519", + "direction": "outgoing", + "index": 111725, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=45de8cf8-98f3-4b0f-b7fe-7dd8c3281c76\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "913f22d3-1484-483e-8cc2-37aa31650b07", + "direction": "outgoing", + "index": 111726, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.320-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "ea796348-5249-4bb0-8c91-9348124f75cb", + "direction": "outgoing", + "index": 111727, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.334-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e2d93a18-d0d9-4563-8a4c-21f5e1d33a1e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "38fe7494-725f-447f-9c3d-7282d6f5aa0d", + "direction": "outgoing", + "index": 111728, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.349-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e2d93a18-d0d9-4563-8a4c-21f5e1d33a1e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1de5266a-39f1-49e2-a1b7-fbc85680dfd5", + "direction": "outgoing", + "index": 111729, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e2d93a18-d0d9-4563-8a4c-21f5e1d33a1e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dc027133-eca8-45e5-9906-28deb86300bf", + "direction": "outgoing", + "index": 111730, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "0de6e85d-aff3-4bb1-ba8d-b5c67d1e568b", + "direction": "outgoing", + "index": 111731, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.393-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2ab32385-e739-4a6a-ba62-eb76901b6262", + "direction": "outgoing", + "index": 111732, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5807a807-c1d0-43d8-8249-bc6a0b525d78", + "direction": "outgoing", + "index": 111733, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e0c857f3-104c-43f0-b175-9c21366059de", + "direction": "outgoing", + "index": 111734, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c4df94d3-3bfe-44da-8b1b-d85597b5ad76", + "direction": "outgoing", + "index": 111735, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.473-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "04c67aa3-7bd3-4488-b820-b8c11b0ff397", + "direction": "outgoing", + "index": 111736, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a7bcd3d-bc15-41a7-87d1-cc31e44f3d91", + "direction": "outgoing", + "index": 111737, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.500-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea0725ca-4eac-4b5a-8e00-0c1fcf128ba7", + "direction": "outgoing", + "index": 111738, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.516-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00093100-0233-4837-b255-1e7885399f83", + "direction": "outgoing", + "index": 111739, + "result_id": "2a047a56-fea7-496d-8fca-0717292140b8", + "status": 200, + "timestamp": "2026-05-22T08:35:18.532-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd47a17d-4fde-49e2-a253-e379bec6a631\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:18.132-04:00" + }, + { + "id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "created_at": "2026-05-22T08:35:22.511-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "941bda50-3894-4e94-bb82-2602c382a244", + "direction": "outgoing", + "index": 111740, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "dac0a543-2007-4981-a7ae-5eb8252f6dba", + "direction": "outgoing", + "index": 111741, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.527-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4d49a009-c43d-4d4a-a04b-07796040ef87", + "direction": "outgoing", + "index": 111742, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0093cc73-1b37-4813-9c53-e76fd5ad3afb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "baadb9c5-93ef-4257-9c6c-c10be0139cc4", + "direction": "outgoing", + "index": 111743, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.555-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0093cc73-1b37-4813-9c53-e76fd5ad3afb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "42b47a6b-d6a9-4e99-8d14-e7d4664de08a", + "direction": "outgoing", + "index": 111744, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0093cc73-1b37-4813-9c53-e76fd5ad3afb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b4931ff-2ccf-4427-a64e-fb13ab4a5daa", + "direction": "outgoing", + "index": 111745, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.581-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0093cc73-1b37-4813-9c53-e76fd5ad3afb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c8a6c4b5-e0e3-41b8-8e82-d934c52120b6", + "direction": "outgoing", + "index": 111746, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f25f6d99-253d-4065-b373-09b1d7dbc74a", + "direction": "outgoing", + "index": 111747, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27826482-e5dd-4e00-a464-4c6a5378cd88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "73b5dd07-0464-42dc-8cd1-b0b47991cc8f", + "direction": "outgoing", + "index": 111748, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27826482-e5dd-4e00-a464-4c6a5378cd88\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69dfd335-ecbe-4515-8b95-cba98cff2c87", + "direction": "outgoing", + "index": 111749, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.636-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27826482-e5dd-4e00-a464-4c6a5378cd88\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6c957124-1d58-4fa5-b18f-df4235fe98e1", + "direction": "outgoing", + "index": 111750, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27826482-e5dd-4e00-a464-4c6a5378cd88\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c013fb17-4f8c-4390-903d-602363bccb3a", + "direction": "outgoing", + "index": 111751, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a10dbba3-fab3-4c4e-a75a-957a49841396", + "direction": "outgoing", + "index": 111752, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.680-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b3442e10-6104-438f-82d1-8763490dbebc", + "direction": "outgoing", + "index": 111753, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a9006516-7be7-4d6f-ac4d-fa8eb128495f", + "direction": "outgoing", + "index": 111754, + "result_id": "7c064896-f713-4c36-ac91-1784fd7f6b81", + "status": 200, + "timestamp": "2026-05-22T08:35:22.707-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:22.511-04:00" + }, + { + "id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "created_at": "2026-05-22T08:35:28.831-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "18d03e8e-d2bd-448a-95d1-0034a04cba8e", + "direction": "outgoing", + "index": 111755, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.841-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "5c14cf71-53b2-4d27-a7b6-2d07032c7335", + "direction": "outgoing", + "index": 111756, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.871-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d60801c-7d65-4f9f-86e9-d805ecc22c2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f0a019e-3b67-4396-bff5-e6b4033147e7", + "direction": "outgoing", + "index": 111757, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d60801c-7d65-4f9f-86e9-d805ecc22c2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a0c8ef2a-f4ea-4283-86f3-2c7e9cd35b4d", + "direction": "outgoing", + "index": 111758, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.905-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d60801c-7d65-4f9f-86e9-d805ecc22c2c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5dad957b-e887-4d1e-8aed-1239a26b68ae", + "direction": "outgoing", + "index": 111759, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d60801c-7d65-4f9f-86e9-d805ecc22c2c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1752c328-fdcb-42ef-b8a8-75177454366f", + "direction": "outgoing", + "index": 111760, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "9dffdb85-1e52-476a-8fc1-923b6b73205f", + "direction": "outgoing", + "index": 111761, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c9d6ef1-9c25-4424-b0a5-f216493ff5fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fab3679a-34e9-415b-8e60-e90ffaa77eff", + "direction": "outgoing", + "index": 111762, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c9d6ef1-9c25-4424-b0a5-f216493ff5fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7fed0302-876b-4ac9-859c-e5869f10b617", + "direction": "outgoing", + "index": 111763, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c9d6ef1-9c25-4424-b0a5-f216493ff5fd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "500e5231-658d-4784-b8fd-1e926285801f", + "direction": "outgoing", + "index": 111764, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:28.995-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c9d6ef1-9c25-4424-b0a5-f216493ff5fd\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "696aa591-bca1-42ca-afd4-406b24b816f1", + "direction": "outgoing", + "index": 111765, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.010-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "9dfa66e0-53da-4207-a546-e2b2a8eb9b1a", + "direction": "outgoing", + "index": 111766, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b979715e-8a07-494a-a4c4-cc0d21be81fc", + "direction": "outgoing", + "index": 111767, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "34d1a2a4-d767-427f-8e61-699a5ccb02d2", + "direction": "outgoing", + "index": 111768, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3eb66cc6-6fb9-4b9f-b6d0-91698d3ee901", + "direction": "outgoing", + "index": 111769, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.064-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d002eec0-5b48-4c05-81c4-899418f01dce", + "direction": "outgoing", + "index": 111770, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.078-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c14e9d22-f36c-4a6b-9bc3-148005903c9a", + "direction": "outgoing", + "index": 111771, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f026dfd2-d890-47b7-b1a3-241861357e5e", + "direction": "outgoing", + "index": 111772, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "08a26875-dac2-4253-93fb-4cc688097ce3", + "direction": "outgoing", + "index": 111773, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.122-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0650e1d-0676-45eb-8280-46a3826af96b", + "direction": "outgoing", + "index": 111774, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.137-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd63cba5-0c8a-4d5b-b228-15fc2a4faa92\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec035ba9-464e-44c2-a3dc-ecd7f783c955", + "direction": "outgoing", + "index": 111775, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error", + "verb": "get" + }, + { + "id": "eb5620fa-47c7-48f5-9876-bd5d9816326b", + "direction": "outgoing", + "index": 111776, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b15945ca-7861-4b27-95e9-56b9a80e67bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8d1a1e7f-f269-4b7d-8d83-8279309ca44d", + "direction": "outgoing", + "index": 111777, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.179-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b15945ca-7861-4b27-95e9-56b9a80e67bf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c1c991e1-03dc-4808-91ed-b2aa94a532ae", + "direction": "outgoing", + "index": 111778, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b15945ca-7861-4b27-95e9-56b9a80e67bf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "30830f51-a912-4b20-b022-7f50d2c0b847", + "direction": "outgoing", + "index": 111779, + "result_id": "b28bd4af-1bd4-4aab-9581-ac38aee6fba5", + "status": 200, + "timestamp": "2026-05-22T08:35:29.209-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b15945ca-7861-4b27-95e9-56b9a80e67bf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:28.831-04:00" + }, + { + "id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "created_at": "2026-05-22T08:35:32.317-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "84d6c944-340a-406b-ae86-4bfa21a26b32", + "direction": "outgoing", + "index": 111780, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fb6873ef-eb31-43cd-abc7-fbccdde801d2", + "direction": "outgoing", + "index": 111781, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.340-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "35ff7bc2-b32a-4062-b5cd-77a5668a0599", + "direction": "outgoing", + "index": 111782, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5464f1eb-5841-4167-b96b-54fadba8b1b6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0ead0c3-fa65-4e8c-862e-b61e66a8c9b9", + "direction": "outgoing", + "index": 111783, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5464f1eb-5841-4167-b96b-54fadba8b1b6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a77a8130-16dd-41c3-945e-81d9c4df1b2d", + "direction": "outgoing", + "index": 111784, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.382-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5464f1eb-5841-4167-b96b-54fadba8b1b6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "618cb014-851e-42bb-8d0e-67f92cf17c56", + "direction": "outgoing", + "index": 111785, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b5ee5415-1dec-497f-bea3-ed463368d778", + "direction": "outgoing", + "index": 111786, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49f0d13b-180e-4e3e-bd57-0f46abb21f60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "494077e9-a260-4859-9d30-33dcdc318d50", + "direction": "outgoing", + "index": 111787, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.420-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49f0d13b-180e-4e3e-bd57-0f46abb21f60\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8fe25ad5-ca4e-4b1d-a0d0-186135fd080c", + "direction": "outgoing", + "index": 111788, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.436-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49f0d13b-180e-4e3e-bd57-0f46abb21f60\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "908e0855-6dcb-4d1e-902e-1ac9ce59d006", + "direction": "outgoing", + "index": 111789, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bc0e3d9a-8441-4309-9941-07ed97fb4f15", + "direction": "outgoing", + "index": 111790, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "10f81285-dbc0-485c-9a9c-9666e0a07e90", + "direction": "outgoing", + "index": 111791, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.479-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "40640905-16ff-4b1f-a261-a1b105dab5ed", + "direction": "outgoing", + "index": 111792, + "result_id": "b288cabf-7420-48d8-afc6-9e3d546b8828", + "status": 200, + "timestamp": "2026-05-22T08:35:32.490-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:32.317-04:00" + }, + { + "id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "created_at": "2026-05-22T08:35:37.443-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cb4e9a72-4e82-4a69-ba9b-1b5c2b5d0b19", + "direction": "outgoing", + "index": 111793, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "41511971-bc8b-49f8-a39d-357481ccc002", + "direction": "outgoing", + "index": 111794, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53977fcb-dd46-4567-8c47-a09b6527e21d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6278b36c-926d-4e11-81ac-75772214fdc4", + "direction": "outgoing", + "index": 111795, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.482-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53977fcb-dd46-4567-8c47-a09b6527e21d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "52fbbbbc-996b-46a7-84cc-b6c2a1fe5e07", + "direction": "outgoing", + "index": 111796, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53977fcb-dd46-4567-8c47-a09b6527e21d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f36a05a7-adf2-4128-9a89-bb73e167ddc6", + "direction": "outgoing", + "index": 111797, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.510-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53977fcb-dd46-4567-8c47-a09b6527e21d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3e9425aa-a6dd-4b14-808c-d85ea6cb6736", + "direction": "outgoing", + "index": 111798, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "6e8c3f40-1874-4260-98d3-2d945f81c0a2", + "direction": "outgoing", + "index": 111799, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c054648e-928c-4f54-9613-8e9e64dbe775\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "228a1bbc-3385-4679-a71c-2b324ea3be2a", + "direction": "outgoing", + "index": 111800, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.551-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c054648e-928c-4f54-9613-8e9e64dbe775\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "634fd866-b58e-4ea2-aab5-af1649c0ac40", + "direction": "outgoing", + "index": 111801, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.566-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c054648e-928c-4f54-9613-8e9e64dbe775\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "febdf3a8-4300-496c-b21c-d9849d989a51", + "direction": "outgoing", + "index": 111802, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.581-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c054648e-928c-4f54-9613-8e9e64dbe775\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "974dd92d-123f-41ea-8e33-bdf0feb2d323", + "direction": "outgoing", + "index": 111803, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.597-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "fce84613-016c-4575-b6fc-9fc2cfacd0fe", + "direction": "outgoing", + "index": 111804, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.609-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d4628f78-6bd8-40a5-9e7d-029d8333e8bb", + "direction": "outgoing", + "index": 111805, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b791767-d05e-4593-b766-18dfebe9ea88", + "direction": "outgoing", + "index": 111806, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.642-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9df3b480-d1be-4a46-b461-e14f812f553e", + "direction": "outgoing", + "index": 111807, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfa970e5-d86d-462c-9a49-99953e3e9a7a", + "direction": "outgoing", + "index": 111808, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8ebd9e61-1dff-4656-b11a-5aa2c1087b33", + "direction": "outgoing", + "index": 111809, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d07f8457-2ee5-4831-9e23-e0a970ad0baa", + "direction": "outgoing", + "index": 111810, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f65fedb2-fd15-400a-b6aa-ca1d7e79c87d", + "direction": "outgoing", + "index": 111811, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.716-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "37d34de5-0a3b-4a05-84d1-ec173ae7d5f4", + "direction": "outgoing", + "index": 111812, + "result_id": "7f383b3a-2aee-4917-9124-b20871ff4da4", + "status": 200, + "timestamp": "2026-05-22T08:35:37.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89bdd429-3925-48b2-8759-d08e82da80c6\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:37.443-04:00" + }, + { + "id": "7acaa2b7-d1cb-4c2d-a9ee-dd3f91b5ea4a", + "created_at": "2026-05-22T08:35:37.858-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e65ebf3a-2982-4813-846b-aa8f830b28cb", + "direction": "outgoing", + "index": 111813, + "result_id": "7acaa2b7-d1cb-4c2d-a9ee-dd3f91b5ea4a", + "status": 200, + "timestamp": "2026-05-22T08:35:37.862-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/a230c57b-b261-471c-88ed-9871547378df", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:37.858-04:00" + }, + { + "id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "created_at": "2026-05-22T08:35:41.747-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c1955c2f-e56e-407f-bbd4-1cdafa40424e", + "direction": "outgoing", + "index": 111814, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "9fb6fbf4-e310-4ead-bb9d-1fa7b9a59658", + "direction": "outgoing", + "index": 111815, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=672913ac-11fb-4154-8f3e-2fe25633ab1a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "078c2d33-2a4f-489a-9942-73e247b8c519", + "direction": "outgoing", + "index": 111816, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.829-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=672913ac-11fb-4154-8f3e-2fe25633ab1a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e5a45f86-35d7-4bc7-9634-804342d232ee", + "direction": "outgoing", + "index": 111817, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=672913ac-11fb-4154-8f3e-2fe25633ab1a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2bf465db-7aaa-43fc-8ef1-e56f97bbcc67", + "direction": "outgoing", + "index": 111818, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "22c01ef2-f460-45da-9c2f-4d0d834247d5", + "direction": "outgoing", + "index": 111819, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8c2df75-b5af-4ec3-aaac-7eeadb3b8384", + "direction": "outgoing", + "index": 111820, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:41.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e13a3a5b-864a-44ca-bb2f-b45ee734730a", + "direction": "outgoing", + "index": 111821, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ecffe89b-cb40-4054-853f-5f0bf06acfd9", + "direction": "outgoing", + "index": 111822, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.055-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d1e01a1-0610-48a0-8bdd-d5d2b52bc923", + "direction": "outgoing", + "index": 111823, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.169-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "41a396f1-812d-413d-9d82-2d87f9eb29d8", + "direction": "outgoing", + "index": 111824, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "43ccd321-ce36-4a16-b46a-aaed279e3b48", + "direction": "outgoing", + "index": 111825, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1a74cfdc-7d83-4fc6-810d-1a7dc80234e3", + "direction": "outgoing", + "index": 111826, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.253-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92a349fa-019d-4af0-b992-11693cd322fc", + "direction": "outgoing", + "index": 111827, + "result_id": "e88826bf-caac-4cac-b93d-998eafb9549b", + "status": 200, + "timestamp": "2026-05-22T08:35:42.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f00bd3b8-af8a-4c1f-868b-d9ee9c66c602\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:41.747-04:00" + }, + { + "id": "3ff76a17-c6ae-4471-a479-caf772f9ff54", + "created_at": "2026-05-22T08:35:45.636-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'US Core Smoking Status Preferred' (http://hl7.org/fhir/us/core/ValueSet/us-core-observation-smokingstatus|3.1.1), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "info" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:45.636-04:00" + }, + { + "id": "2f0bb21b-c2d9-4809-8d01-08c925c7a2cf", + "created_at": "2026-05-22T08:35:46.083-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:46.083-04:00" + }, + { + "id": "08fcff8b-68c8-487f-b25b-18ce2d9b0761", + "created_at": "2026-05-22T08:35:46.089-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus-us_core_v311_smokingstatus_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:46.089-04:00" + }, + { + "id": "c0cff1e4-e1c6-4391-9a9c-7f3973010a97", + "created_at": "2026-05-22T08:35:46.094-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_smokingstatus", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:46.094-04:00" + }, + { + "id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "created_at": "2026-05-22T08:35:46.775-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f3c940ef-8b4e-4228-869b-9c86db7b6ed4", + "direction": "outgoing", + "index": 111828, + "result_id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "status": 200, + "timestamp": "2026-05-22T08:35:46.779-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "4a5f9c44-4e90-46eb-932e-ba03e9ff931d", + "direction": "outgoing", + "index": 111829, + "result_id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "status": 200, + "timestamp": "2026-05-22T08:35:46.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "b5853066-6295-4549-88c0-e853fabb886e", + "direction": "outgoing", + "index": 111830, + "result_id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "status": 200, + "timestamp": "2026-05-22T08:35:46.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "89e7c5b2-f0c5-4be1-8590-74ef41d88768", + "direction": "outgoing", + "index": 111831, + "result_id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "status": 200, + "timestamp": "2026-05-22T08:35:46.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "d7296dc2-811b-4fef-8945-b76de756b27e", + "direction": "outgoing", + "index": 111832, + "result_id": "41835fad-c9eb-49a2-a1bd-d2163e7620a0", + "status": 200, + "timestamp": "2026-05-22T08:35:46.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:46.775-04:00" + }, + { + "id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "created_at": "2026-05-22T08:35:49.383-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ce63fa4d-a9f9-412a-b94e-16cc06faadb5", + "direction": "outgoing", + "index": 111833, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.385-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e33b1119-cf8e-4cdb-8b82-c2ffd211a79f", + "direction": "outgoing", + "index": 111834, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bc71cd59-9f97-4b1f-af02-9600c704f617", + "direction": "outgoing", + "index": 111835, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6678e9e4-d135-4f77-9afe-0b25187dbed1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ef6898a8-f30f-427a-98b1-e463eb2f7bb3", + "direction": "outgoing", + "index": 111836, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6678e9e4-d135-4f77-9afe-0b25187dbed1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec1888af-c14e-46db-986f-32c61e6abeba", + "direction": "outgoing", + "index": 111837, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.447-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "010dd660-b387-4ac5-88ed-aa47e5ceeb3b", + "direction": "outgoing", + "index": 111838, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c07e84f-f582-4cae-8d41-65df271e4195\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "301e5b21-4b8b-4722-a93a-8495e44d8080", + "direction": "outgoing", + "index": 111839, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c07e84f-f582-4cae-8d41-65df271e4195\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c4a39f86-3d47-47e1-856d-ee31fef91d77", + "direction": "outgoing", + "index": 111840, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.485-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ea7a47c7-a150-42a3-9659-ecff6189c3e6", + "direction": "outgoing", + "index": 111841, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.499-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "27e138f1-407b-4d06-b0ae-8fae320859c1", + "direction": "outgoing", + "index": 111842, + "result_id": "2f6e6809-00e4-4f5b-8aa0-ec3a3e9575f5", + "status": 200, + "timestamp": "2026-05-22T08:35:49.511-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:49.383-04:00" + }, + { + "id": "14101392-2a86-494b-a716-bd486f055e0f", + "created_at": "2026-05-22T08:35:52.596-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "605aed3b-c4ef-4933-9178-57a09d0d37ff", + "direction": "outgoing", + "index": 111843, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "dec05c6c-529e-4a50-85a6-c1cacc1faf8a", + "direction": "outgoing", + "index": 111844, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5daef5be-9ac7-4543-af40-42d0744dcbaf", + "direction": "outgoing", + "index": 111845, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7fca4aa8-b8db-4478-a4ec-4afe380bada2", + "direction": "outgoing", + "index": 111846, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "1538bee0-ac7f-470d-bc0a-ff786ec80980", + "direction": "outgoing", + "index": 111847, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.672-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3248550b-5d99-43be-ae79-9f3efabcb3fb", + "direction": "outgoing", + "index": 111848, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a73155dc-f588-4f4f-94ec-8fb8c5bc1683", + "direction": "outgoing", + "index": 111849, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "630fb870-c020-4fff-ac66-74f96c09f31c", + "direction": "outgoing", + "index": 111850, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b428b6ce-6a4e-420e-9736-4070105c2f09", + "direction": "outgoing", + "index": 111851, + "result_id": "14101392-2a86-494b-a716-bd486f055e0f", + "status": 200, + "timestamp": "2026-05-22T08:35:52.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:52.596-04:00" + }, + { + "id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "created_at": "2026-05-22T08:35:53.652-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "56ad9053-d940-43e1-bfdd-c3f29796d7d4", + "direction": "outgoing", + "index": 111852, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "952824e9-fb65-4acb-8894-13a8f7fea7da", + "direction": "outgoing", + "index": 111853, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f20b0c0f-677c-47c5-b4f6-6b798073b20a", + "direction": "outgoing", + "index": 111854, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "dd09990c-e683-4707-8d59-d9d15ac4f97f", + "direction": "outgoing", + "index": 111855, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.705-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "aa0bd344-4483-4ff3-b6dd-abd18e9ca9a5", + "direction": "outgoing", + "index": 111856, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.717-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "92137a7c-6c2d-465b-809e-86b8fdfe11fd", + "direction": "outgoing", + "index": 111857, + "result_id": "68bb3c1a-a312-42fd-8b71-612c831eb591", + "status": 200, + "timestamp": "2026-05-22T08:35:53.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:53.652-04:00" + }, + { + "id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "created_at": "2026-05-22T08:35:55.805-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "412d07cb-1ad4-4d1f-8017-a2ee0c8edd12", + "direction": "outgoing", + "index": 111858, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.811-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a17b9fce-f6bb-43f5-bb9b-1b69d4132b83", + "direction": "outgoing", + "index": 111859, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3fb49daa-0230-4db3-9209-5b8d936974b8", + "direction": "outgoing", + "index": 111860, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a09acfda-1e1c-4c64-a848-fe1b5ab0c27d", + "direction": "outgoing", + "index": 111861, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.867-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "6a73e206-a45f-4e0d-8482-f1fe7a5feeb2", + "direction": "outgoing", + "index": 111862, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.881-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f24e50d1-e0b2-46a5-9dac-e6464970f875", + "direction": "outgoing", + "index": 111863, + "result_id": "d6a3996c-517a-4562-899c-4bb028c43bfd", + "status": 200, + "timestamp": "2026-05-22T08:35:55.894-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:55.805-04:00" + }, + { + "id": "8dc8b286-3089-41ab-bb03-9533a388b20b", + "created_at": "2026-05-22T08:35:56.028-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "028fd347-47df-475f-b540-e2d01a85395a", + "direction": "outgoing", + "index": 111864, + "result_id": "8dc8b286-3089-41ab-bb03-9533a388b20b", + "status": 200, + "timestamp": "2026-05-22T08:35:56.031-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.028-04:00" + }, + { + "id": "6b3a197f-4063-4a25-83ec-54671f6cb6a7", + "created_at": "2026-05-22T08:35:56.403-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "71ff5193-24d8-41c0-a858-7ea15b870b80", + "direction": "outgoing", + "index": 111865, + "result_id": "6b3a197f-4063-4a25-83ec-54671f6cb6a7", + "status": 200, + "timestamp": "2026-05-22T08:35:56.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "a2ff26c5-74d9-484f-a10a-0149de98f614", + "direction": "outgoing", + "index": 111866, + "result_id": "6b3a197f-4063-4a25-83ec-54671f6cb6a7", + "status": 200, + "timestamp": "2026-05-22T08:35:56.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.403-04:00" + }, + { + "id": "985863ec-6a18-4089-b0bd-2ab7cd3dbd6b", + "created_at": "2026-05-22T08:35:56.490-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#77606-2)", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#77606-2)", + "type": "warning" + }, + { + "message": "Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.490-04:00" + }, + { + "id": "799709be-e477-4764-87ba-4f11f5015122", + "created_at": "2026-05-22T08:35:56.500-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.500-04:00" + }, + { + "id": "b147f2ce-67bb-4c6e-82c7-cbe2524be530", + "created_at": "2026-05-22T08:35:56.503-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height-us_core_v311_pediatric_weight_for_height_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.503-04:00" + }, + { + "id": "8060e50c-101b-40b7-b2d8-e244f1f59ffc", + "created_at": "2026-05-22T08:35:56.505-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_weight_for_height", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:56.505-04:00" + }, + { + "id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "created_at": "2026-05-22T08:35:57.632-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "64dfdd3e-6a10-4c99-800a-47f8c58ed3b8", + "direction": "outgoing", + "index": 111867, + "result_id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "status": 200, + "timestamp": "2026-05-22T08:35:57.635-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "4a7710d3-f088-4d43-9f9f-af7acc1229e4", + "direction": "outgoing", + "index": 111868, + "result_id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "status": 200, + "timestamp": "2026-05-22T08:35:57.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "31a18d10-9602-4ddb-9c14-26f1735bdbab", + "direction": "outgoing", + "index": 111869, + "result_id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "status": 200, + "timestamp": "2026-05-22T08:35:57.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "b35f46a0-58e0-4f90-ab26-798809635235", + "direction": "outgoing", + "index": 111870, + "result_id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "status": 200, + "timestamp": "2026-05-22T08:35:57.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "6b665712-0704-472d-9097-65462d6d4ab0", + "direction": "outgoing", + "index": 111871, + "result_id": "01bcefd3-629b-4a39-97cb-e455715a5bba", + "status": 200, + "timestamp": "2026-05-22T08:35:57.690-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:57.632-04:00" + }, + { + "id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "created_at": "2026-05-22T08:35:58.707-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "21dd0a18-34cb-4dcb-8e5b-667340c6963a", + "direction": "outgoing", + "index": 111872, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.712-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=2005-07-05\u0026patient=85", + "verb": "get" + }, + { + "id": "5bc12c7f-6f1c-43d4-8ea2-7d9cf2236340", + "direction": "outgoing", + "index": 111873, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c7a8b3f5-f9df-430d-a343-7d4d0224dbdc", + "direction": "outgoing", + "index": 111874, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.743-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "434d8990-64de-4c91-a785-443723b2bcd1", + "direction": "outgoing", + "index": 111875, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.757-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b80b7b20-3cde-4c01-8c79-067e5e20524a", + "direction": "outgoing", + "index": 111876, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.769-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d044adf7-b0c5-439f-b34f-6d1b7ea534d7", + "direction": "outgoing", + "index": 111877, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.783-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=2005-07-05\u0026patient=85", + "verb": "get" + }, + { + "id": "98ac0d2d-6990-4465-a738-38a89c3cacc9", + "direction": "outgoing", + "index": 111878, + "result_id": "9e8ed2b5-b33c-4dce-979a-184e62076217", + "status": 200, + "timestamp": "2026-05-22T08:35:58.798-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:58.707-04:00" + }, + { + "id": "e5668f40-e1ad-4398-8bdf-1f42b16c4fb4", + "created_at": "2026-05-22T08:35:59.362-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9dd8fedb-37f7-4ec5-a6ff-4f2ad33a273e", + "direction": "outgoing", + "index": 111879, + "result_id": "e5668f40-e1ad-4398-8bdf-1f42b16c4fb4", + "status": 200, + "timestamp": "2026-05-22T08:35:59.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "2fe0f20e-8b28-4af0-9e29-c2c5d4ecd4c1", + "direction": "outgoing", + "index": 111880, + "result_id": "e5668f40-e1ad-4398-8bdf-1f42b16c4fb4", + "status": 200, + "timestamp": "2026-05-22T08:35:59.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "4604e30c-2cac-416f-a197-b24675c08d04", + "direction": "outgoing", + "index": 111881, + "result_id": "e5668f40-e1ad-4398-8bdf-1f42b16c4fb4", + "status": 200, + "timestamp": "2026-05-22T08:35:59.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "193f29bd-4ce7-4e24-a885-72087a0525fb", + "direction": "outgoing", + "index": 111882, + "result_id": "e5668f40-e1ad-4398-8bdf-1f42b16c4fb4", + "status": 200, + "timestamp": "2026-05-22T08:35:59.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:35:59.362-04:00" + }, + { + "id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "created_at": "2026-05-22T08:36:00.342-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7c356f95-54e6-4e8b-978a-33ddba000f83", + "direction": "outgoing", + "index": 111883, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=2005-07-05\u0026patient=85", + "verb": "get" + }, + { + "id": "66ebf059-edc0-4bd5-89c6-edfef3e46c97", + "direction": "outgoing", + "index": 111884, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.365-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f5d7b548-acd6-4c6a-a07d-7aba76d0b87f", + "direction": "outgoing", + "index": 111885, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "99742278-0ccd-4922-8b20-eeab4cd172d7", + "direction": "outgoing", + "index": 111886, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ba4a9256-9dff-473e-8b67-ccbcbd7f59cf", + "direction": "outgoing", + "index": 111887, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "430b87e0-febb-4bee-b06f-25e0ee259992", + "direction": "outgoing", + "index": 111888, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=2005-07-05\u0026patient=85", + "verb": "get" + }, + { + "id": "a966e9e9-581b-4296-be7d-2b5341ae58cd", + "direction": "outgoing", + "index": 111889, + "result_id": "519821a9-0a91-43d2-b079-36fa5872ce55", + "status": 200, + "timestamp": "2026-05-22T08:36:00.430-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:00.342-04:00" + }, + { + "id": "3e476db2-15d9-45f3-8b81-7d4acc1eafd1", + "created_at": "2026-05-22T08:36:00.812-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3658901a-d9aa-4db3-8c0c-881ca8b2ede3", + "direction": "outgoing", + "index": 111890, + "result_id": "3e476db2-15d9-45f3-8b81-7d4acc1eafd1", + "status": 200, + "timestamp": "2026-05-22T08:36:00.815-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "37ce7e34-9cce-4473-bfbb-85ff534120db", + "direction": "outgoing", + "index": 111891, + "result_id": "3e476db2-15d9-45f3-8b81-7d4acc1eafd1", + "status": 200, + "timestamp": "2026-05-22T08:36:00.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "efcedb3c-3dbd-4c24-ab07-4868c2eeecf7", + "direction": "outgoing", + "index": 111892, + "result_id": "3e476db2-15d9-45f3-8b81-7d4acc1eafd1", + "status": 200, + "timestamp": "2026-05-22T08:36:00.847-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:00.812-04:00" + }, + { + "id": "391a152c-8c27-4e79-8924-ebf5bbbdf41a", + "created_at": "2026-05-22T08:36:00.971-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3e6d042d-db61-4049-8238-94605abf9c91", + "direction": "outgoing", + "index": 111893, + "result_id": "391a152c-8c27-4e79-8924-ebf5bbbdf41a", + "status": 200, + "timestamp": "2026-05-22T08:36:00.974-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:00.971-04:00" + }, + { + "id": "4a30cc11-8b0a-476b-81f9-850a5afdd7c8", + "created_at": "2026-05-22T08:36:01.385-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fef32be4-c59b-4b29-8908-1cb206d185a8", + "direction": "outgoing", + "index": 111894, + "result_id": "4a30cc11-8b0a-476b-81f9-850a5afdd7c8", + "status": 200, + "timestamp": "2026-05-22T08:36:01.387-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "02c7f3be-01fb-4794-9fa1-22feae18d7ff", + "direction": "outgoing", + "index": 111895, + "result_id": "4a30cc11-8b0a-476b-81f9-850a5afdd7c8", + "status": 200, + "timestamp": "2026-05-22T08:36:01.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:01.385-04:00" + }, + { + "id": "1f9184be-54d6-4461-8d09-4f26b9390fa5", + "created_at": "2026-05-22T08:36:01.735-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:01.735-04:00" + }, + { + "id": "75479eb3-d869-4206-8e3b-9c5dc31f53ed", + "created_at": "2026-05-22T08:36:01.764-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:01.764-04:00" + }, + { + "id": "4ec3e1f5-c1bb-498a-911e-397cb37b489a", + "created_at": "2026-05-22T08:36:01.766-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab-us_core_v311_observation_lab_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:01.766-04:00" + }, + { + "id": "d7ed482a-0cc0-4101-adeb-fc88e1d1eef0", + "created_at": "2026-05-22T08:36:01.767-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_observation_lab", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:01.767-04:00" + }, + { + "id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "created_at": "2026-05-22T08:36:02.446-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "175b067f-530a-4032-8a8c-658dd1489162", + "direction": "outgoing", + "index": 111896, + "result_id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "status": 200, + "timestamp": "2026-05-22T08:36:02.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "4488ecb7-2c1d-42fb-9050-594774805343", + "direction": "outgoing", + "index": 111897, + "result_id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "status": 200, + "timestamp": "2026-05-22T08:36:02.474-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "ebbd2e57-8979-4ac9-aaa5-aac7bc085d2a", + "direction": "outgoing", + "index": 111898, + "result_id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "status": 200, + "timestamp": "2026-05-22T08:36:02.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "f4a08384-4adf-4a59-8e16-1bd39d603d5d", + "direction": "outgoing", + "index": 111899, + "result_id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "status": 200, + "timestamp": "2026-05-22T08:36:02.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "055f1a24-4f78-463e-919f-bd68b51e0edb", + "direction": "outgoing", + "index": 111900, + "result_id": "2fae3e1c-19c3-4f6e-968a-6508c571e13f", + "status": 200, + "timestamp": "2026-05-22T08:36:02.521-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:02.446-04:00" + }, + { + "id": "29c49cee-1326-444a-9f12-aa03680da0af", + "created_at": "2026-05-22T08:36:05.121-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5bf352ed-eb0c-4130-93ec-03bbd06537cf", + "direction": "outgoing", + "index": 111901, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.128-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5c713eb5-21ad-4e66-8af8-704580da9881", + "direction": "outgoing", + "index": 111902, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.150-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "06d5d691-2f52-48f0-80e4-4d9733c17f63", + "direction": "outgoing", + "index": 111903, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.168-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=047d736a-0e84-493c-84e2-e9abb028663b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0b6ef129-0e3b-4a73-8838-65e2ebe160a0", + "direction": "outgoing", + "index": 111904, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=047d736a-0e84-493c-84e2-e9abb028663b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7b9e81b8-85fb-435f-8c5d-1a3d9cddc90b", + "direction": "outgoing", + "index": 111905, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a74d62e7-0632-496c-9bab-7f9d159b91db", + "direction": "outgoing", + "index": 111906, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.209-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1b232d71-e2ce-494b-a654-1b97d4c9dc30\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ac8e02f3-5d2b-4e23-8d70-86a6678023ab", + "direction": "outgoing", + "index": 111907, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1b232d71-e2ce-494b-a654-1b97d4c9dc30\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d6b421c9-d94e-45a4-bcc4-79536c29a436", + "direction": "outgoing", + "index": 111908, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cfd53ee5-3f77-4375-989d-4ee527877e2e", + "direction": "outgoing", + "index": 111909, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "edf8ddd9-d626-447d-8de7-87bde12516cd", + "direction": "outgoing", + "index": 111910, + "result_id": "29c49cee-1326-444a-9f12-aa03680da0af", + "status": 200, + "timestamp": "2026-05-22T08:36:05.264-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:05.121-04:00" + }, + { + "id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "created_at": "2026-05-22T08:36:06.819-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "33f7e259-47e8-433a-b943-d010973bb40d", + "direction": "outgoing", + "index": 111911, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "bd9d1f8d-ce33-4359-8064-18560b2dc8a5", + "direction": "outgoing", + "index": 111912, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b3fbe682-1b65-4876-a01d-e7219f17d295", + "direction": "outgoing", + "index": 111913, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bd5e739e-d2e3-4bd9-97c7-0aa25434fa8c", + "direction": "outgoing", + "index": 111914, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.864-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "113c3e60-6864-4243-aa1a-1ac2f1243384", + "direction": "outgoing", + "index": 111915, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "23fc8b60-6acc-4a68-a2da-a8cddc00a41f", + "direction": "outgoing", + "index": 111916, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.891-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5a94bc54-8bf3-46ac-8bc7-aaf1806025e5", + "direction": "outgoing", + "index": 111917, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "3dbe7f8c-fa32-4a03-ba25-328afadd809e", + "direction": "outgoing", + "index": 111918, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c485b624-ec37-4249-93c7-f2ded9125e9a", + "direction": "outgoing", + "index": 111919, + "result_id": "f4a5967a-1b3a-4668-ba3b-3c5359ae4036", + "status": 200, + "timestamp": "2026-05-22T08:36:06.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:06.819-04:00" + }, + { + "id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "created_at": "2026-05-22T08:36:07.799-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e419cc2e-aae3-4638-855e-017bc0fe6f27", + "direction": "outgoing", + "index": 111920, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "60ab7750-09a3-4a82-b105-35a892a00c78", + "direction": "outgoing", + "index": 111921, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "55c7aa36-aa00-485a-9561-65f2751ad041", + "direction": "outgoing", + "index": 111922, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.851-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "93103dd2-5e61-4df9-9f05-757fb09d116b", + "direction": "outgoing", + "index": 111923, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.867-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "50c755ee-62a9-453e-a302-ec5eeebc0141", + "direction": "outgoing", + "index": 111924, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.878-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2e3d9d57-2dfa-4f20-91fe-f7131c8049db", + "direction": "outgoing", + "index": 111925, + "result_id": "a0a59037-efc5-4565-a78e-546d56a5cb86", + "status": 200, + "timestamp": "2026-05-22T08:36:07.892-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:07.799-04:00" + }, + { + "id": "9d43a625-d760-467a-932a-528566557bea", + "created_at": "2026-05-22T08:36:08.919-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e3d6fb9a-b1c9-4993-a06e-3f2843fff6e6", + "direction": "outgoing", + "index": 111926, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:08.927-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "b866ef05-6218-442d-b79a-8068b630e041", + "direction": "outgoing", + "index": 111927, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:08.950-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d7b6502-f623-4f9d-baac-8348a0b92f55", + "direction": "outgoing", + "index": 111928, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:08.968-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ab06db49-0914-4c1f-a43a-9d231657a1f1", + "direction": "outgoing", + "index": 111929, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:08.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "3736125b-ea08-4ab8-9115-f7bb7574046a", + "direction": "outgoing", + "index": 111930, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:09.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "28765550-6489-4c04-a816-a3c79100be5b", + "direction": "outgoing", + "index": 111931, + "result_id": "9d43a625-d760-467a-932a-528566557bea", + "status": 200, + "timestamp": "2026-05-22T08:36:09.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:08.919-04:00" + }, + { + "id": "9f73fc40-991e-4d41-8145-88d29fdde03b", + "created_at": "2026-05-22T08:36:09.142-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b749b675-36f3-475e-93d4-28189c912982", + "direction": "outgoing", + "index": 111932, + "result_id": "9f73fc40-991e-4d41-8145-88d29fdde03b", + "status": 200, + "timestamp": "2026-05-22T08:36:09.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.142-04:00" + }, + { + "id": "d203f9f7-9903-4b26-a046-95861dec7765", + "created_at": "2026-05-22T08:36:09.482-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e2c9ff26-d266-4baa-8bc6-b607cfb0ee94", + "direction": "outgoing", + "index": 111933, + "result_id": "d203f9f7-9903-4b26-a046-95861dec7765", + "status": 200, + "timestamp": "2026-05-22T08:36:09.485-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "5c41496f-fc4e-42fd-8703-fe0ff11200fd", + "direction": "outgoing", + "index": 111934, + "result_id": "d203f9f7-9903-4b26-a046-95861dec7765", + "status": 200, + "timestamp": "2026-05-22T08:36:09.501-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.482-04:00" + }, + { + "id": "4e189651-6e02-4964-8813-9ffd23ed3b66", + "created_at": "2026-05-22T08:36:09.567-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#59576-9)", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#59576-9)", + "type": "warning" + }, + { + "message": "Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.567-04:00" + }, + { + "id": "50198b88-463b-4833-b3ad-045050e9a64d", + "created_at": "2026-05-22T08:36:09.577-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.577-04:00" + }, + { + "id": "c3874057-9f7f-42ba-915d-4de0b3c1f806", + "created_at": "2026-05-22T08:36:09.580-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age-us_core_v311_pediatric_bmi_for_age_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.580-04:00" + }, + { + "id": "447301d6-e78b-46f6-bad7-167624fe0379", + "created_at": "2026-05-22T08:36:09.581-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pediatric_bmi_for_age", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:09.581-04:00" + }, + { + "id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "created_at": "2026-05-22T08:36:10.547-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4a4ef08f-257d-40b1-aea2-0e4c916ad46d", + "direction": "outgoing", + "index": 111935, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "e366bd7c-ef00-41f3-b8fc-e4ba631992bb", + "direction": "outgoing", + "index": 111936, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "8c7202fe-6112-442e-b7d1-076de3898b06", + "direction": "outgoing", + "index": 111937, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "170ef857-903d-43df-922a-ac117058ed4f", + "direction": "outgoing", + "index": 111938, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.613-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "9a1c36f5-ba49-4537-8cae-e1df468a3793", + "direction": "outgoing", + "index": 111939, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.627-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "45f491e7-52a4-4abd-bf97-8b45c38b7d54", + "direction": "outgoing", + "index": 111940, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "0a1376e3-dc59-4547-aade-df77b8dd10b7", + "direction": "outgoing", + "index": 111941, + "result_id": "64a32072-ad55-443d-9836-7ea5cac2a9e8", + "status": 200, + "timestamp": "2026-05-22T08:36:10.654-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:10.547-04:00" + }, + { + "id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "created_at": "2026-05-22T08:36:11.596-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4fddbec0-8858-4772-bf7a-9de7f5ced027", + "direction": "outgoing", + "index": 111942, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0aa7211a-ada3-4321-a3bd-43430cfb262a", + "direction": "outgoing", + "index": 111943, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.623-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "63be8baf-1e54-42bd-b7ec-cb59e0528a69", + "direction": "outgoing", + "index": 111944, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.639-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a581cc9d-f75a-43ab-b402-dc59a6255fd7", + "direction": "outgoing", + "index": 111945, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "625d9ee5-9bf2-499e-9f1f-4240cfcf4273", + "direction": "outgoing", + "index": 111946, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0b1cde10-6390-42cd-a332-3a7e26379d7a", + "direction": "outgoing", + "index": 111947, + "result_id": "909f86ba-6aa6-4913-b719-42fa09f23c11", + "status": 200, + "timestamp": "2026-05-22T08:36:11.680-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:11.596-04:00" + }, + { + "id": "5adab013-c86d-4eb0-a732-c9ba438fce27", + "created_at": "2026-05-22T08:36:12.140-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "43ccba3c-bb9c-4227-9b4a-f0cb87933000", + "direction": "outgoing", + "index": 111948, + "result_id": "5adab013-c86d-4eb0-a732-c9ba438fce27", + "status": 200, + "timestamp": "2026-05-22T08:36:12.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "062ad286-f7b8-4094-9a00-1322cbd8b233", + "direction": "outgoing", + "index": 111949, + "result_id": "5adab013-c86d-4eb0-a732-c9ba438fce27", + "status": 200, + "timestamp": "2026-05-22T08:36:12.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "20cf0cb8-c9f0-48b4-908e-745b1d597a63", + "direction": "outgoing", + "index": 111950, + "result_id": "5adab013-c86d-4eb0-a732-c9ba438fce27", + "status": 200, + "timestamp": "2026-05-22T08:36:12.181-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:12.140-04:00" + }, + { + "id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "created_at": "2026-05-22T08:36:13.043-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "977c3eb7-a967-4eb2-8246-9c13a8058349", + "direction": "outgoing", + "index": 111951, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.046-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "891e3e4b-b2ca-48d7-81b1-cce08af1981b", + "direction": "outgoing", + "index": 111952, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.060-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "339da1fa-6fe1-4275-8bb8-d6948746cd45", + "direction": "outgoing", + "index": 111953, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.075-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f55dd392-ca24-40e3-8937-8e1a0c4276ad", + "direction": "outgoing", + "index": 111954, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5878547f-6207-4715-b46d-bb56cab1ad13", + "direction": "outgoing", + "index": 111955, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.099-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7c6e101c-8895-4490-abe1-6f8477867c51", + "direction": "outgoing", + "index": 111956, + "result_id": "ce248365-2426-4ce0-8cea-71b2b2c7493b", + "status": 200, + "timestamp": "2026-05-22T08:36:13.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:13.043-04:00" + }, + { + "id": "91a546d2-8f12-4b3a-903e-313b2f61bbcd", + "created_at": "2026-05-22T08:36:13.509-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c99512ca-b039-45e9-9d81-d497fb4f3339", + "direction": "outgoing", + "index": 111957, + "result_id": "91a546d2-8f12-4b3a-903e-313b2f61bbcd", + "status": 200, + "timestamp": "2026-05-22T08:36:13.513-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "420c0629-4e7b-497b-8eab-f3087b24ba85", + "direction": "outgoing", + "index": 111958, + "result_id": "91a546d2-8f12-4b3a-903e-313b2f61bbcd", + "status": 200, + "timestamp": "2026-05-22T08:36:13.530-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:13.509-04:00" + }, + { + "id": "d2b90843-1356-46d4-bf50-114a8f798bb2", + "created_at": "2026-05-22T08:36:13.662-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b614754d-0d50-47e2-ab55-87c60f6baf3e", + "direction": "outgoing", + "index": 111959, + "result_id": "d2b90843-1356-46d4-bf50-114a8f798bb2", + "status": 200, + "timestamp": "2026-05-22T08:36:13.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:13.662-04:00" + }, + { + "id": "238b35af-a2d8-4607-bda2-883d5b9706dc", + "created_at": "2026-05-22T08:36:14.331-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a999247a-dcb7-413e-b2b8-2f5c893158b5", + "direction": "outgoing", + "index": 111960, + "result_id": "238b35af-a2d8-4607-bda2-883d5b9706dc", + "status": 200, + "timestamp": "2026-05-22T08:36:14.336-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "f0fdddfa-c1a5-437e-8aec-689282491b07", + "direction": "outgoing", + "index": 111961, + "result_id": "238b35af-a2d8-4607-bda2-883d5b9706dc", + "status": 200, + "timestamp": "2026-05-22T08:36:14.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "a8dfd2e5-a3a5-4dd0-9ff6-a3048d34a697", + "direction": "outgoing", + "index": 111962, + "result_id": "238b35af-a2d8-4607-bda2-883d5b9706dc", + "status": 200, + "timestamp": "2026-05-22T08:36:14.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "363483cc-f344-4cf5-aa3d-903df05195c2", + "direction": "outgoing", + "index": 111963, + "result_id": "238b35af-a2d8-4607-bda2-883d5b9706dc", + "status": 200, + "timestamp": "2026-05-22T08:36:14.392-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:14.331-04:00" + }, + { + "id": "e4023b61-5783-4c65-80b4-2f31eb695fc2", + "created_at": "2026-05-22T08:36:14.510-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:14.510-04:00" + }, + { + "id": "6a7a97c6-fa61-4213-b001-c900003e0864", + "created_at": "2026-05-22T08:36:14.535-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:14.535-04:00" + }, + { + "id": "d91118c5-90a0-421e-b152-cd1487b8586c", + "created_at": "2026-05-22T08:36:14.539-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry-us_core_v311_pulse_oximetry_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:14.539-04:00" + }, + { + "id": "2688f6b8-1711-49be-b062-0de03ac34dfa", + "created_at": "2026-05-22T08:36:14.540-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_pulse_oximetry", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:14.540-04:00" + }, + { + "id": "158184bb-ae57-451d-9db6-94585a0c18da", + "created_at": "2026-05-22T08:36:15.236-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fee40281-0d76-42ce-8545-217ad29d9802", + "direction": "outgoing", + "index": 111964, + "result_id": "158184bb-ae57-451d-9db6-94585a0c18da", + "status": 200, + "timestamp": "2026-05-22T08:36:15.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "3250122e-ff12-4efd-87bd-2bba82eaa9a9", + "direction": "outgoing", + "index": 111965, + "result_id": "158184bb-ae57-451d-9db6-94585a0c18da", + "status": 200, + "timestamp": "2026-05-22T08:36:15.262-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "639f2fa8-fec1-4d81-b48d-5839a03371d3", + "direction": "outgoing", + "index": 111966, + "result_id": "158184bb-ae57-451d-9db6-94585a0c18da", + "status": 200, + "timestamp": "2026-05-22T08:36:15.276-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "756c574e-5735-4567-aa6b-04ed0bfd0ed6", + "direction": "outgoing", + "index": 111967, + "result_id": "158184bb-ae57-451d-9db6-94585a0c18da", + "status": 200, + "timestamp": "2026-05-22T08:36:15.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "5eecfe26-646b-464a-9676-cc6d3169688b", + "direction": "outgoing", + "index": 111968, + "result_id": "158184bb-ae57-451d-9db6-94585a0c18da", + "status": 200, + "timestamp": "2026-05-22T08:36:15.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:15.236-04:00" + }, + { + "id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "created_at": "2026-05-22T08:36:18.037-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0bbf7528-1cd5-47ba-be9c-f51c9db84bc8", + "direction": "outgoing", + "index": 111969, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.042-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5d5de844-eb14-4463-b9e3-83bf8330f447", + "direction": "outgoing", + "index": 111970, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.066-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "98baf745-a7c4-416e-b155-974057cd31c3", + "direction": "outgoing", + "index": 111971, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.082-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6545b049-84b1-4d75-b145-83a6009814dd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5035fe58-59d1-497c-99b6-cac56cc1bee7", + "direction": "outgoing", + "index": 111972, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6545b049-84b1-4d75-b145-83a6009814dd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1ac22684-b7d4-4179-aa97-d34e01fd96cd", + "direction": "outgoing", + "index": 111973, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "677f76e9-6993-4d5a-9159-0d5045945b55", + "direction": "outgoing", + "index": 111974, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5bb289c9-d50b-4526-85b5-058fda4499e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a37c3d87-5dc3-4d77-8ba7-60c40a569af1", + "direction": "outgoing", + "index": 111975, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.133-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5bb289c9-d50b-4526-85b5-058fda4499e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eff5555d-fde0-4486-890c-8b3ab1d6ef66", + "direction": "outgoing", + "index": 111976, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ef31aaf5-5232-4fbc-a952-70db8b842562", + "direction": "outgoing", + "index": 111977, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.159-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6b004b28-0199-4939-b302-60c0078eff20", + "direction": "outgoing", + "index": 111978, + "result_id": "7ec63bb1-1d72-4c26-826d-60e1dfb03174", + "status": 200, + "timestamp": "2026-05-22T08:36:18.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:18.037-04:00" + }, + { + "id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "created_at": "2026-05-22T08:36:19.644-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6c23f19d-1c80-42a1-ab40-92ba50ed9f86", + "direction": "outgoing", + "index": 111979, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "08c6b80a-c522-4277-9993-a6cc063ecb57", + "direction": "outgoing", + "index": 111980, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c664c610-eec8-4a60-afb5-dad0658e0e3a", + "direction": "outgoing", + "index": 111981, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "919f34f4-37d6-4fdf-bd30-021a46dbbf1e", + "direction": "outgoing", + "index": 111982, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.725-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "e8e2d726-1d63-4cc8-a8f2-81ccc19db36f", + "direction": "outgoing", + "index": 111983, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d378eacd-de9d-4540-b3fe-318b14089fc2", + "direction": "outgoing", + "index": 111984, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.757-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2e5a87ca-b48d-41e0-9c7d-c2fb76e57c99", + "direction": "outgoing", + "index": 111985, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.773-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "07fca5f9-dc99-450b-9369-9b04e7c9515b", + "direction": "outgoing", + "index": 111986, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2396ce2c-0285-46c4-830d-341a690a8b67", + "direction": "outgoing", + "index": 111987, + "result_id": "744d8911-b64d-4254-a707-2bae8382cb6e", + "status": 200, + "timestamp": "2026-05-22T08:36:19.802-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:19.644-04:00" + }, + { + "id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "created_at": "2026-05-22T08:36:20.646-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "45b357b7-5a3f-46b4-ad1f-d880d861d54f", + "direction": "outgoing", + "index": 111988, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b2c8240e-fbe7-4803-b80b-cfd1386e2803", + "direction": "outgoing", + "index": 111989, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.676-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "90121bef-3ed8-45b4-934a-6660807e44ef", + "direction": "outgoing", + "index": 111990, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b6f0906c-9f45-4e33-b4cb-6e72a4c86697", + "direction": "outgoing", + "index": 111991, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0249c01f-831c-41de-878c-08075c3cb908", + "direction": "outgoing", + "index": 111992, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.718-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4e8f6da7-ccb5-45bf-8255-ac4c215a2d07", + "direction": "outgoing", + "index": 111993, + "result_id": "1c0d3157-0818-4162-b6d5-5db8ae8c9220", + "status": 200, + "timestamp": "2026-05-22T08:36:20.731-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:20.646-04:00" + }, + { + "id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "created_at": "2026-05-22T08:36:21.743-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3664c3a5-9682-47a5-9c5a-27ec135fce67", + "direction": "outgoing", + "index": 111994, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "cab7b4d6-28c7-4ff2-bf73-761a7b3093fe", + "direction": "outgoing", + "index": 111995, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da1d83c0-1f10-4c9c-be55-15553f290148", + "direction": "outgoing", + "index": 111996, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4bd0ca46-9be4-432d-890a-3271434bae19", + "direction": "outgoing", + "index": 111997, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "c39bc385-4502-4196-989e-9c08e18f2796", + "direction": "outgoing", + "index": 111998, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8100de61-d7fd-4de1-ac84-cf91d533df80", + "direction": "outgoing", + "index": 111999, + "result_id": "5dda189e-51c2-4a0d-adfc-081da552584e", + "status": 200, + "timestamp": "2026-05-22T08:36:21.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:21.743-04:00" + }, + { + "id": "27b19e40-1293-4909-98e6-e83a57f678f3", + "created_at": "2026-05-22T08:36:21.965-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f211217f-5cc3-43ab-b388-980962d9cc05", + "direction": "outgoing", + "index": 112000, + "result_id": "27b19e40-1293-4909-98e6-e83a57f678f3", + "status": 200, + "timestamp": "2026-05-22T08:36:21.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:21.965-04:00" + }, + { + "id": "43094420-70cb-4d33-bd76-d126c2d8da27", + "created_at": "2026-05-22T08:36:22.322-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ed88942a-4a47-4095-bf54-81a275d183b4", + "direction": "outgoing", + "index": 112001, + "result_id": "43094420-70cb-4d33-bd76-d126c2d8da27", + "status": 200, + "timestamp": "2026-05-22T08:36:22.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "07cd558a-4cdd-4158-934d-e0531fd17375", + "direction": "outgoing", + "index": 112002, + "result_id": "43094420-70cb-4d33-bd76-d126c2d8da27", + "status": 200, + "timestamp": "2026-05-22T08:36:22.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:22.322-04:00" + }, + { + "id": "0741bf00-63f0-46e4-9261-1e62ffe05cce", + "created_at": "2026-05-22T08:36:22.435-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:22.435-04:00" + }, + { + "id": "a67315da-94d1-437f-99fd-140e6d9f1649", + "created_at": "2026-05-22T08:36:22.449-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:22.449-04:00" + }, + { + "id": "188e1b93-00ae-4b6c-aa01-abaebf4fa5bd", + "created_at": "2026-05-22T08:36:22.452-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference-us_core_v311_head_circumference_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:22.452-04:00" + }, + { + "id": "9aa3107b-255c-401e-8135-1f8df417d44f", + "created_at": "2026-05-22T08:36:22.453-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_head_circumference", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:22.453-04:00" + }, + { + "id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "created_at": "2026-05-22T08:36:23.149-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d8a99e8-42a9-4608-9fbb-ced639719f0c", + "direction": "outgoing", + "index": 112003, + "result_id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "status": 200, + "timestamp": "2026-05-22T08:36:23.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "a618930a-60c0-4e26-8970-fb0304cda6df", + "direction": "outgoing", + "index": 112004, + "result_id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "status": 200, + "timestamp": "2026-05-22T08:36:23.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "85dd0f81-19e7-4f19-a65e-bd7e0603b63e", + "direction": "outgoing", + "index": 112005, + "result_id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "status": 200, + "timestamp": "2026-05-22T08:36:23.179-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "3beb82e1-aff1-45f4-8308-be2c5eafe9eb", + "direction": "outgoing", + "index": 112006, + "result_id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "status": 200, + "timestamp": "2026-05-22T08:36:23.194-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "5dfdee4e-5a9b-4e67-a05b-d135c1f8ff8f", + "direction": "outgoing", + "index": 112007, + "result_id": "bef71f19-9a1c-445c-8f00-13288ce6d75e", + "status": 200, + "timestamp": "2026-05-22T08:36:23.205-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:23.149-04:00" + }, + { + "id": "67902e82-9b4a-4939-9512-f82f162e8961", + "created_at": "2026-05-22T08:36:25.686-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "00cde8d4-8827-406b-9a22-f91fc27c785d", + "direction": "outgoing", + "index": 112008, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.693-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6ae6ff11-dc45-4a47-a8bf-af24dd7ae83c", + "direction": "outgoing", + "index": 112009, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4f8c2d40-d47e-41cc-ad00-72350453b9f2", + "direction": "outgoing", + "index": 112010, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=48d33412-7bde-4b18-beb6-43293986448e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bf600c31-b359-4c15-bbab-c5613c21b1bf", + "direction": "outgoing", + "index": 112011, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1e6a2683-4544-4b08-9f4e-3db0e53bbe67", + "direction": "outgoing", + "index": 112012, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c3d9924-63c9-4c7d-a588-62f54178154e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bdef1a7c-5155-414d-9811-1423df5d2b76", + "direction": "outgoing", + "index": 112013, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9ca71f70-1139-433e-ac6f-101962e9e9fa", + "direction": "outgoing", + "index": 112014, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.800-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "08515f48-a44e-4840-a662-1918b51e42e3", + "direction": "outgoing", + "index": 112015, + "result_id": "67902e82-9b4a-4939-9512-f82f162e8961", + "status": 200, + "timestamp": "2026-05-22T08:36:25.814-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:25.686-04:00" + }, + { + "id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "created_at": "2026-05-22T08:36:27.399-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7f655d81-efa4-4e00-8e4f-f020128d630e", + "direction": "outgoing", + "index": 112016, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "ffb15a42-738f-4d34-96e9-adc44269bbc0", + "direction": "outgoing", + "index": 112017, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ef05ce54-9e5b-4651-a202-ce95ade1f1b0", + "direction": "outgoing", + "index": 112018, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.437-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0dbe6e6-9951-450e-9841-dbfc44415b6d", + "direction": "outgoing", + "index": 112019, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.450-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "231e33da-63d8-43a3-83b8-2bfff0525828", + "direction": "outgoing", + "index": 112020, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.465-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "16bfd174-0f01-42c4-9b35-ce2f02339205", + "direction": "outgoing", + "index": 112021, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4c3780fd-7bd7-411b-a38d-d640e97506aa", + "direction": "outgoing", + "index": 112022, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "bedc001f-7701-474e-8b00-892c9a5ebef7", + "direction": "outgoing", + "index": 112023, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.508-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6052b8c3-0ff0-4e9f-886e-ad736a6894cc", + "direction": "outgoing", + "index": 112024, + "result_id": "6e558d46-365e-4dd3-a5b1-02f0b98cd928", + "status": 200, + "timestamp": "2026-05-22T08:36:27.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:27.399-04:00" + }, + { + "id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "created_at": "2026-05-22T08:36:28.371-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "80f5c211-a523-4a29-94e6-12ff8dffae3e", + "direction": "outgoing", + "index": 112025, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9bd5e0b7-30c4-4e5e-b29f-9c89435a75da", + "direction": "outgoing", + "index": 112026, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1372bbdc-64e7-441a-af8d-836299a3d0e0", + "direction": "outgoing", + "index": 112027, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ff87e49f-28cb-4a20-a549-8f4ddd5b7a96", + "direction": "outgoing", + "index": 112028, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "677a34f7-d8b9-4eec-a285-97d54d05ad3b", + "direction": "outgoing", + "index": 112029, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.424-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7515924b-ccc7-4ab0-8bc3-c22bd761464f", + "direction": "outgoing", + "index": 112030, + "result_id": "73eba88a-4850-4f2f-b41d-5748b3812f2e", + "status": 200, + "timestamp": "2026-05-22T08:36:28.438-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:28.371-04:00" + }, + { + "id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "created_at": "2026-05-22T08:36:29.475-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "548eeae3-eca9-4111-91c2-3c4eca3262d8", + "direction": "outgoing", + "index": 112031, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.480-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ad6b9312-4c38-4953-8927-8576410b6e0e", + "direction": "outgoing", + "index": 112032, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.506-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f8357a80-f51a-48e9-807f-03e631a54a70", + "direction": "outgoing", + "index": 112033, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4c7abcb5-9cb1-4069-93f3-80619171d9fa", + "direction": "outgoing", + "index": 112034, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.540-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "c28c9ca1-9de4-486c-8c7d-5ea34d554b0c", + "direction": "outgoing", + "index": 112035, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "388a02e5-784d-4201-924f-3a73774aca7e", + "direction": "outgoing", + "index": 112036, + "result_id": "01844005-0d04-4265-8e6e-622e11cd8d8f", + "status": 200, + "timestamp": "2026-05-22T08:36:29.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:29.475-04:00" + }, + { + "id": "3e95e505-1573-41de-a0f4-faccaf59f7a1", + "created_at": "2026-05-22T08:36:29.705-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "405d051b-7371-48da-bfa2-9b04cfe4df6f", + "direction": "outgoing", + "index": 112037, + "result_id": "3e95e505-1573-41de-a0f4-faccaf59f7a1", + "status": 200, + "timestamp": "2026-05-22T08:36:29.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:29.705-04:00" + }, + { + "id": "5ff0ae46-d34b-4753-bd53-1adbe0ab2e82", + "created_at": "2026-05-22T08:36:30.100-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "862ed9c9-6599-4532-86ac-ed1a7227e7c3", + "direction": "outgoing", + "index": 112038, + "result_id": "5ff0ae46-d34b-4753-bd53-1adbe0ab2e82", + "status": 200, + "timestamp": "2026-05-22T08:36:30.104-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "1f11d40e-596a-45b1-8afe-e034f73d3b42", + "direction": "outgoing", + "index": 112039, + "result_id": "5ff0ae46-d34b-4753-bd53-1adbe0ab2e82", + "status": 200, + "timestamp": "2026-05-22T08:36:30.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.100-04:00" + }, + { + "id": "4c1f4f9a-b181-4c52-b4a4-c7aebb01eb33", + "created_at": "2026-05-22T08:36:30.214-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.214-04:00" + }, + { + "id": "08a52635-ed91-4fa5-a281-4d36883845ac", + "created_at": "2026-05-22T08:36:30.229-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.229-04:00" + }, + { + "id": "23338da4-15e6-4875-8dfb-9372697f09b5", + "created_at": "2026-05-22T08:36:30.232-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight-us_core_v311_bodyheight_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.232-04:00" + }, + { + "id": "ba7585b3-67f0-456b-998b-c5ad5f98b52b", + "created_at": "2026-05-22T08:36:30.233-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyheight", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.233-04:00" + }, + { + "id": "913cd429-b90c-4473-af43-7cdcf6586472", + "created_at": "2026-05-22T08:36:30.975-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "594fa9bd-0f2b-4d07-825f-ce503b57ebf4", + "direction": "outgoing", + "index": 112040, + "result_id": "913cd429-b90c-4473-af43-7cdcf6586472", + "status": 200, + "timestamp": "2026-05-22T08:36:30.980-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "cde2235e-740f-4228-bce6-7258a5989851", + "direction": "outgoing", + "index": 112041, + "result_id": "913cd429-b90c-4473-af43-7cdcf6586472", + "status": 200, + "timestamp": "2026-05-22T08:36:31.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "c3e3fcd7-49d4-40f2-826a-6641438dffd3", + "direction": "outgoing", + "index": 112042, + "result_id": "913cd429-b90c-4473-af43-7cdcf6586472", + "status": 200, + "timestamp": "2026-05-22T08:36:31.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "9aeceb68-3a9b-459e-a835-27d280a628d2", + "direction": "outgoing", + "index": 112043, + "result_id": "913cd429-b90c-4473-af43-7cdcf6586472", + "status": 200, + "timestamp": "2026-05-22T08:36:31.037-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "e3363470-516b-4f81-bd4a-b0f207f55108", + "direction": "outgoing", + "index": 112044, + "result_id": "913cd429-b90c-4473-af43-7cdcf6586472", + "status": 200, + "timestamp": "2026-05-22T08:36:31.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:30.975-04:00" + }, + { + "id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "created_at": "2026-05-22T08:36:33.758-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "104dfd07-47da-47d1-882b-a5cdd763799d", + "direction": "outgoing", + "index": 112045, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "20bba1d2-13b7-4dea-8246-cdc9c12f5c78", + "direction": "outgoing", + "index": 112046, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5865e079-3ffd-4293-a8d4-0b9f87e4dce2", + "direction": "outgoing", + "index": 112047, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.795-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e60d62f5-3e2a-45ff-8347-6b8b89156fc9", + "direction": "outgoing", + "index": 112048, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.808-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d5254430-6ff6-4182-b0e8-d860ab4c6ed9", + "direction": "outgoing", + "index": 112049, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.821-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3aee97f4-0040-4f93-80c0-a819b8146b67\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a98b068-5f49-4f7e-b50d-215a6fa9a47a", + "direction": "outgoing", + "index": 112050, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3aee97f4-0040-4f93-80c0-a819b8146b67\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7fe6a927-a38d-4519-9c58-c0e592c98332", + "direction": "outgoing", + "index": 112051, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.851-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1267d896-1c1e-4d6c-a34f-13add435b7b0", + "direction": "outgoing", + "index": 112052, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e43e0db-06eb-42db-a819-b1ae2de6aaa9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "900b47b6-1558-4743-83a4-7487d0729d47", + "direction": "outgoing", + "index": 112053, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.877-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e43e0db-06eb-42db-a819-b1ae2de6aaa9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c83758b4-d381-4634-a7ff-bf9a8eb7b203", + "direction": "outgoing", + "index": 112054, + "result_id": "79482c4e-b1b5-4ac6-bb8c-f042b307d9a0", + "status": 200, + "timestamp": "2026-05-22T08:36:33.888-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:33.758-04:00" + }, + { + "id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "created_at": "2026-05-22T08:36:35.379-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c66e3e38-b8c7-4782-9c57-3a6ef9934a7e", + "direction": "outgoing", + "index": 112055, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.382-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "de9d8c69-8ace-4450-8081-4aace0c30bea", + "direction": "outgoing", + "index": 112056, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "61c97b5a-06d6-4dae-9a62-a48382acaa64", + "direction": "outgoing", + "index": 112057, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d22482c1-fc00-404f-88ac-bd474059ff03", + "direction": "outgoing", + "index": 112058, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "fdbff3b7-f703-448c-a6d9-123dc08b8b29", + "direction": "outgoing", + "index": 112059, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "04f76704-4694-4b55-833f-7dd24df96fbd", + "direction": "outgoing", + "index": 112060, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6db081be-0775-4cd0-b044-509ee730500b", + "direction": "outgoing", + "index": 112061, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "21d739ae-2a8a-4ee8-8e14-8f231704144c", + "direction": "outgoing", + "index": 112062, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "87aa819f-d7d6-4bdd-a085-1a5ca92c8103", + "direction": "outgoing", + "index": 112063, + "result_id": "87e1eb17-9055-4ea2-820f-a0cf3935dfe4", + "status": 200, + "timestamp": "2026-05-22T08:36:35.508-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:35.379-04:00" + }, + { + "id": "7990e023-22fc-47e8-b332-35b85394b419", + "created_at": "2026-05-22T08:36:36.322-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "acdef73b-5f0f-47e0-add1-a0394084037a", + "direction": "outgoing", + "index": 112064, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2e025d27-f7c0-40ec-a9a6-4a96cd094338", + "direction": "outgoing", + "index": 112065, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2a426370-ebda-4ee2-a6aa-855887018cb3", + "direction": "outgoing", + "index": 112066, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0305f85a-719f-4772-8ee6-52cafff5e468", + "direction": "outgoing", + "index": 112067, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6075af9f-017f-44e0-b73e-9c8ffa874876", + "direction": "outgoing", + "index": 112068, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6ca97f49-de81-4c9b-b2c9-1ad978bb318a", + "direction": "outgoing", + "index": 112069, + "result_id": "7990e023-22fc-47e8-b332-35b85394b419", + "status": 200, + "timestamp": "2026-05-22T08:36:36.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:36.322-04:00" + }, + { + "id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "created_at": "2026-05-22T08:36:37.381-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "afe277e0-0b20-44f2-8ba6-919ed213d1bd", + "direction": "outgoing", + "index": 112070, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e21e4a82-5724-4d6e-97d3-c65e08ac18a2", + "direction": "outgoing", + "index": 112071, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.408-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea2ac82e-0be9-484c-8d1c-9cbd290a888d", + "direction": "outgoing", + "index": 112072, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.425-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "892d75ae-f9e4-4a75-b5fb-67666d9d14e5", + "direction": "outgoing", + "index": 112073, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "6acf87fa-ec68-4354-8c51-4b8dab6ca93d", + "direction": "outgoing", + "index": 112074, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "12b944c4-a81a-48b3-8134-f8dca3e05727", + "direction": "outgoing", + "index": 112075, + "result_id": "9f724616-52f2-4fcb-a4e6-20f6afc5297a", + "status": 200, + "timestamp": "2026-05-22T08:36:37.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:37.381-04:00" + }, + { + "id": "26d8ec08-d24d-4d97-a772-3d7249b1bdac", + "created_at": "2026-05-22T08:36:37.595-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "295bdefa-852e-4376-bedb-93b7e55d594d", + "direction": "outgoing", + "index": 112076, + "result_id": "26d8ec08-d24d-4d97-a772-3d7249b1bdac", + "status": 200, + "timestamp": "2026-05-22T08:36:37.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:37.595-04:00" + }, + { + "id": "4ec99cba-5ddc-4573-a5fe-65887d3a4b59", + "created_at": "2026-05-22T08:36:37.942-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8ae2eac5-3259-4284-bdb3-b75ef68e9b43", + "direction": "outgoing", + "index": 112077, + "result_id": "4ec99cba-5ddc-4573-a5fe-65887d3a4b59", + "status": 200, + "timestamp": "2026-05-22T08:36:37.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "26eb8d0c-e386-4124-81a0-659d29252f4e", + "direction": "outgoing", + "index": 112078, + "result_id": "4ec99cba-5ddc-4573-a5fe-65887d3a4b59", + "status": 200, + "timestamp": "2026-05-22T08:36:37.958-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:37.942-04:00" + }, + { + "id": "87069c00-dadc-4f71-97f0-1218be0d4ee3", + "created_at": "2026-05-22T08:36:38.066-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature'", + "type": "info" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature'", + "type": "info" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature'", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-body-temperature' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:38.066-04:00" + }, + { + "id": "d6aa138b-80bd-40fe-b8ec-191ec2f1f68d", + "created_at": "2026-05-22T08:36:38.089-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:38.089-04:00" + }, + { + "id": "56298660-e37e-45f7-b862-dbe2494742b2", + "created_at": "2026-05-22T08:36:38.092-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp-us_core_v311_bodytemp_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:38.092-04:00" + }, + { + "id": "b1c5ff2b-f6ff-49cb-a600-7937e55e8c7f", + "created_at": "2026-05-22T08:36:38.094-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodytemp", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:38.094-04:00" + }, + { + "id": "7efaf201-664f-4262-afe0-e37020247675", + "created_at": "2026-05-22T08:36:38.943-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "427b3375-7ac6-4314-a6db-48215113c3b0", + "direction": "outgoing", + "index": 112079, + "result_id": "7efaf201-664f-4262-afe0-e37020247675", + "status": 200, + "timestamp": "2026-05-22T08:36:38.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "7faf1dbe-41cf-4e42-9232-55589496ca51", + "direction": "outgoing", + "index": 112080, + "result_id": "7efaf201-664f-4262-afe0-e37020247675", + "status": 200, + "timestamp": "2026-05-22T08:36:38.966-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "6db88ef4-7ca2-409d-b74b-871517f9ab14", + "direction": "outgoing", + "index": 112081, + "result_id": "7efaf201-664f-4262-afe0-e37020247675", + "status": 200, + "timestamp": "2026-05-22T08:36:38.982-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "0f7d8b1a-bf4d-4d00-9cfe-10d5bf91e6e0", + "direction": "outgoing", + "index": 112082, + "result_id": "7efaf201-664f-4262-afe0-e37020247675", + "status": 200, + "timestamp": "2026-05-22T08:36:38.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "c3ffc6aa-5cb0-418a-aa3d-c37890ddb8c9", + "direction": "outgoing", + "index": 112083, + "result_id": "7efaf201-664f-4262-afe0-e37020247675", + "status": 200, + "timestamp": "2026-05-22T08:36:39.011-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:38.943-04:00" + }, + { + "id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "created_at": "2026-05-22T08:36:41.754-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "311a6bcc-5cd7-48d1-b52d-b3e6eae9e38c", + "direction": "outgoing", + "index": 112084, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.759-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "688ec7ce-6dab-44d8-9a4a-ba13ea421274", + "direction": "outgoing", + "index": 112085, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.781-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "825f9957-dc87-487a-9e58-972094243cdc", + "direction": "outgoing", + "index": 112086, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.798-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3b33e07c-0b78-40a8-8af3-dd7c8b401311\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3014b41-7a56-404c-83e6-faf761ae3bd5", + "direction": "outgoing", + "index": 112087, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bc76c007-3bf4-4bb2-995a-1910924369f3", + "direction": "outgoing", + "index": 112088, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a25f7276-7244-4dfe-ba79-2dd9cb715895\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "355acd7c-01dd-43e9-9785-cb93e83347ec", + "direction": "outgoing", + "index": 112089, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.847-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bbc0eb38-8ad5-49af-a057-660f2d9e7cad", + "direction": "outgoing", + "index": 112090, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8daf7661-3c68-4c7f-bb4e-d73e5d84bb67\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a13d9cc2-38dd-43b7-b290-760de06d9360", + "direction": "outgoing", + "index": 112091, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1b252ba9-c66b-4aee-8912-1b330f261efd", + "direction": "outgoing", + "index": 112092, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.888-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e377d519-a73f-49e0-8bce-87baf3c4acde\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e01d51ea-f4e8-4911-af34-bf6e4fc80a35", + "direction": "outgoing", + "index": 112093, + "result_id": "534acbcb-0f48-4c03-8373-80efccbcc3be", + "status": 200, + "timestamp": "2026-05-22T08:36:41.902-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:41.754-04:00" + }, + { + "id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "created_at": "2026-05-22T08:36:43.479-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d5a53faf-bfdd-4351-847a-8edd98cd13ce", + "direction": "outgoing", + "index": 112094, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "754cf3db-c7cc-4d3a-bd10-6152c86df78d", + "direction": "outgoing", + "index": 112095, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.504-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0d23fd8-9ab1-482f-839f-49ab38382401", + "direction": "outgoing", + "index": 112096, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3fd0d1e2-5912-43a0-bcf6-244fd3373b7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69851a98-4dc3-4e11-867f-953f622659f9", + "direction": "outgoing", + "index": 112097, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "75086648-0248-4062-9525-eaac6c24af31", + "direction": "outgoing", + "index": 112098, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "936ad714-2ac1-4363-a918-86b6ac233baa", + "direction": "outgoing", + "index": 112099, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcf8af06-a78e-40e2-9c75-31494b63e0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4256b1cc-e154-44ab-8e39-1b94b840ed23", + "direction": "outgoing", + "index": 112100, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.604-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "3476614e-c92c-4f93-a79b-0d5044c4fb0e", + "direction": "outgoing", + "index": 112101, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5e180f8-eda1-44fe-9521-f99b48b76059", + "direction": "outgoing", + "index": 112102, + "result_id": "e361e20d-bc6d-4bdf-a537-d44189a2f6a9", + "status": 200, + "timestamp": "2026-05-22T08:36:43.629-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e105620-3023-49d3-8205-348b2298d2f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:43.479-04:00" + }, + { + "id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "created_at": "2026-05-22T08:36:44.717-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "8b66ee0f-c9c7-484b-a1b5-13f78133ae81", + "direction": "outgoing", + "index": 112103, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.723-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "53d231c0-c9a4-4c6f-83b2-24be1738ab1a", + "direction": "outgoing", + "index": 112104, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.745-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e873eecc-37bc-4af9-a4a6-a9fb0064f687", + "direction": "outgoing", + "index": 112105, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "25c4bdd1-bbb9-4a80-a04d-719dd1f25967", + "direction": "outgoing", + "index": 112106, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b375254b-dd7b-4bf7-8dae-62a7718554ad", + "direction": "outgoing", + "index": 112107, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "11af13e6-0461-415f-86f3-05d8f64f1c64", + "direction": "outgoing", + "index": 112108, + "result_id": "84819570-d6fc-46e6-a603-dc6b57b8e4cb", + "status": 200, + "timestamp": "2026-05-22T08:36:44.802-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:44.717-04:00" + }, + { + "id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "created_at": "2026-05-22T08:36:45.893-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "95f6f6f6-e6fd-4431-b535-b56244a7d1d2", + "direction": "outgoing", + "index": 112109, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "87465ac2-c6be-41f9-9ddf-ce5cd9cfa292", + "direction": "outgoing", + "index": 112110, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0f7e0c6-9cc2-4ac0-9c53-b84282c698e2", + "direction": "outgoing", + "index": 112111, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.940-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e2cff71-6e00-4b7e-acc4-b13dc00a2173\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa220a6d-aff1-4209-be13-0547ecb9f551", + "direction": "outgoing", + "index": 112112, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.951-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "0434f4fd-954f-4424-9b9c-a4e1009fad18", + "direction": "outgoing", + "index": 112113, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.966-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea86f007-5acf-4e1c-a549-d5b9414283db", + "direction": "outgoing", + "index": 112114, + "result_id": "f72f17b4-29b4-408b-824f-50a3a407085d", + "status": 200, + "timestamp": "2026-05-22T08:36:45.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=16913b9a-df39-44fb-ab87-25b088fdfb9d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:45.893-04:00" + }, + { + "id": "4dacc3eb-cba3-4848-9503-4af484d24512", + "created_at": "2026-05-22T08:36:46.109-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "466cb9df-0375-4db2-b17f-9571f2426650", + "direction": "outgoing", + "index": 112115, + "result_id": "4dacc3eb-cba3-4848-9503-4af484d24512", + "status": 200, + "timestamp": "2026-05-22T08:36:46.111-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.109-04:00" + }, + { + "id": "371db287-a7aa-412d-a17d-3e21fb28ea40", + "created_at": "2026-05-22T08:36:46.471-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e3a0c74a-f34b-4e0b-853b-5e2d229f8fbf", + "direction": "outgoing", + "index": 112116, + "result_id": "371db287-a7aa-412d-a17d-3e21fb28ea40", + "status": 200, + "timestamp": "2026-05-22T08:36:46.474-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "4c894c63-6f80-4aa6-bd21-b8be899c1791", + "direction": "outgoing", + "index": 112117, + "result_id": "371db287-a7aa-412d-a17d-3e21fb28ea40", + "status": 200, + "timestamp": "2026-05-22T08:36:46.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.471-04:00" + }, + { + "id": "ef2e9898-c377-4296-b7b7-91db5cea810c", + "created_at": "2026-05-22T08:36:46.613-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.613-04:00" + }, + { + "id": "e2d17546-6c1c-4c00-b384-e61a29f8d36d", + "created_at": "2026-05-22T08:36:46.635-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.635-04:00" + }, + { + "id": "7a667388-573a-451a-8c07-27cd1a41576f", + "created_at": "2026-05-22T08:36:46.639-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp-us_core_v311_bp_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.639-04:00" + }, + { + "id": "09f14bec-5849-4f9e-9960-6ea42e22366c", + "created_at": "2026-05-22T08:36:46.640-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bp", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:46.640-04:00" + }, + { + "id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "created_at": "2026-05-22T08:36:47.282-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "31d5a7ae-fb1c-418a-9ca5-029894515d91", + "direction": "outgoing", + "index": 112118, + "result_id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "status": 200, + "timestamp": "2026-05-22T08:36:47.288-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "2610f675-2e73-4eff-84df-70c6472bdec7", + "direction": "outgoing", + "index": 112119, + "result_id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "status": 200, + "timestamp": "2026-05-22T08:36:47.310-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "031b5b64-11be-4af5-ad3a-7b6722f523fb", + "direction": "outgoing", + "index": 112120, + "result_id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "status": 200, + "timestamp": "2026-05-22T08:36:47.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "19f143c5-540d-4c51-ba77-972b6c1d6b74", + "direction": "outgoing", + "index": 112121, + "result_id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "status": 200, + "timestamp": "2026-05-22T08:36:47.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "4f9a4865-fe0a-480c-aa7c-dd8240919b64", + "direction": "outgoing", + "index": 112122, + "result_id": "b7062044-0f89-4dd1-8a65-c4515a33abe9", + "status": 200, + "timestamp": "2026-05-22T08:36:47.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:47.282-04:00" + }, + { + "id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "created_at": "2026-05-22T08:36:51.037-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3d640cef-c9fa-4a95-9cf5-20dee1ec3a22", + "direction": "outgoing", + "index": 112123, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.042-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4f55f778-0da4-44b1-91ce-595f4e021e5d", + "direction": "outgoing", + "index": 112124, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bfd3dd18-db89-4de2-89c2-831318737ebe", + "direction": "outgoing", + "index": 112125, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=717e358f-98dd-4251-9b1f-fdb7baf1975e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2c9f74f8-8e3d-4fa8-9016-c6ad586b8e2d", + "direction": "outgoing", + "index": 112126, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3f248ab5-fe66-403a-ad18-bb9bf1621f01", + "direction": "outgoing", + "index": 112127, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a997cb10-dd2c-487a-816d-cbee9e76da7a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3df82565-ec9b-4f3a-ae6d-1b9261bd161a", + "direction": "outgoing", + "index": 112128, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "622defbb-9d90-41be-bf0b-4b8a9b2ba4b0", + "direction": "outgoing", + "index": 112129, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.136-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f537a42-475d-40d1-9b26-e6f68183ef89\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aaa47d52-5113-4223-96bb-ae905ab863d3", + "direction": "outgoing", + "index": 112130, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.149-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ce70f777-41df-44cc-9b36-c8ac13cb6af5", + "direction": "outgoing", + "index": 112131, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7df3f868-07c7-4b6c-a2a9-321519ab3632\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0b44c5e9-df61-490a-a998-a56ed250d71f", + "direction": "outgoing", + "index": 112132, + "result_id": "3bfc0bcd-1b1c-42cc-82b9-c9523f03f8b9", + "status": 200, + "timestamp": "2026-05-22T08:36:51.175-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:51.037-04:00" + }, + { + "id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "created_at": "2026-05-22T08:36:54.357-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "99fa7f63-4f89-4be8-b30f-34b362eb46a4", + "direction": "outgoing", + "index": 112133, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "72aaa05e-9764-4f91-9465-712325e889b0", + "direction": "outgoing", + "index": 112134, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.374-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "366fbcc5-6aee-4a8e-87e7-a5147832b65a", + "direction": "outgoing", + "index": 112135, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3d7bdf0-22d7-4e87-90f7-fb31b9b6bc1a", + "direction": "outgoing", + "index": 112136, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "bac41428-01b0-48a6-b123-332d02ec5227", + "direction": "outgoing", + "index": 112137, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d7f941db-02eb-417c-aecb-3d476e29dff2", + "direction": "outgoing", + "index": 112138, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86fa3c79-2e43-4332-972c-0e09c9af67ab", + "direction": "outgoing", + "index": 112139, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "5ff8682b-d96d-4747-956d-e741f3cfdcb5", + "direction": "outgoing", + "index": 112140, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5b2f475c-05b3-441f-895b-f7dd39aa8acc", + "direction": "outgoing", + "index": 112141, + "result_id": "abc9d048-5b8f-456b-ba89-5a6555269f8f", + "status": 200, + "timestamp": "2026-05-22T08:36:54.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:54.357-04:00" + }, + { + "id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "created_at": "2026-05-22T08:36:55.285-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f08dbe05-6006-4427-a795-f07b52336325", + "direction": "outgoing", + "index": 112142, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.289-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c37273ca-012c-44fb-b519-a683d6858ff6", + "direction": "outgoing", + "index": 112143, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "03c72580-81ee-4571-aaf5-ff59c03b1258", + "direction": "outgoing", + "index": 112144, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5930f61e-5708-4e72-a59f-04ff953af78d", + "direction": "outgoing", + "index": 112145, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a4c15b45-baf5-4390-9cf8-f93405fd097e", + "direction": "outgoing", + "index": 112146, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5762ccd1-6518-48a9-9636-c7acb2f596d7", + "direction": "outgoing", + "index": 112147, + "result_id": "ddd9ce04-6b34-4755-9a02-474a46bbf513", + "status": 200, + "timestamp": "2026-05-22T08:36:55.385-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:55.285-04:00" + }, + { + "id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "created_at": "2026-05-22T08:36:57.429-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "97f0b721-4cdc-4a72-ab43-6c3e9e7bdd8a", + "direction": "outgoing", + "index": 112148, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.433-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "191f234f-d7b6-4b21-a371-bc6884e2e31d", + "direction": "outgoing", + "index": 112149, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "59aba49e-9fd4-4f57-9e4a-fa654edd2ce1", + "direction": "outgoing", + "index": 112150, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "692da468-7778-4ff5-8dc5-6f76874e16f6", + "direction": "outgoing", + "index": 112151, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.479-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "0513536e-44a1-41a0-bbea-dd1f72746475", + "direction": "outgoing", + "index": 112152, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "94860258-2e13-4fd7-b3d5-39b2f340155c", + "direction": "outgoing", + "index": 112153, + "result_id": "f098f429-c1b7-41f2-ae57-dcabe94a7eb2", + "status": 200, + "timestamp": "2026-05-22T08:36:57.504-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:57.429-04:00" + }, + { + "id": "3de013b3-3c3a-4dc7-ae4d-53d8ce189d23", + "created_at": "2026-05-22T08:36:57.632-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b86fc8b3-3d9c-4e9f-a253-a2f16a4f4bd0", + "direction": "outgoing", + "index": 112154, + "result_id": "3de013b3-3c3a-4dc7-ae4d-53d8ce189d23", + "status": 200, + "timestamp": "2026-05-22T08:36:57.635-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:57.632-04:00" + }, + { + "id": "5b5fb7a9-4910-41f9-ba60-f75d62d823d1", + "created_at": "2026-05-22T08:36:57.980-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a61eef45-0a95-45a5-9b6f-bc85a57756b2", + "direction": "outgoing", + "index": 112155, + "result_id": "5b5fb7a9-4910-41f9-ba60-f75d62d823d1", + "status": 200, + "timestamp": "2026-05-22T08:36:57.985-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "454a18a3-f15f-48e9-a7ba-ac2166cc19dc", + "direction": "outgoing", + "index": 112156, + "result_id": "5b5fb7a9-4910-41f9-ba60-f75d62d823d1", + "status": 200, + "timestamp": "2026-05-22T08:36:57.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:57.980-04:00" + }, + { + "id": "82dd5290-a4e9-4c3c-bac6-efd5e5c7ba28", + "created_at": "2026-05-22T08:36:58.092-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:58.092-04:00" + }, + { + "id": "f39307fe-c4ac-4bff-bb85-5fa93c01ac47", + "created_at": "2026-05-22T08:36:58.106-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:58.106-04:00" + }, + { + "id": "9f94e807-9373-4622-aa8c-7bc556a628b4", + "created_at": "2026-05-22T08:36:58.110-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight-us_core_v311_bodyweight_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:58.110-04:00" + }, + { + "id": "d71091a8-a220-4c6e-95de-33665a451106", + "created_at": "2026-05-22T08:36:58.111-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_bodyweight", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:58.111-04:00" + }, + { + "id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "created_at": "2026-05-22T08:36:58.854-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9c23fa61-e9b8-4ab8-b7b1-d218e746a447", + "direction": "outgoing", + "index": 112157, + "result_id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "status": 200, + "timestamp": "2026-05-22T08:36:58.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "6e792e77-3d27-4b05-90ac-a136c6e7fffc", + "direction": "outgoing", + "index": 112158, + "result_id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "status": 200, + "timestamp": "2026-05-22T08:36:58.883-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "5b739c8f-59b7-4d7c-9786-ad3874bc0184", + "direction": "outgoing", + "index": 112159, + "result_id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "status": 200, + "timestamp": "2026-05-22T08:36:58.901-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "5282c506-0c9b-4a3a-8cfe-7a7a928c9cbe", + "direction": "outgoing", + "index": 112160, + "result_id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "status": 200, + "timestamp": "2026-05-22T08:36:58.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "4ed10b8e-79b0-4565-9cb7-ceebad9b52f1", + "direction": "outgoing", + "index": 112161, + "result_id": "9eede73c-01c0-47ca-944b-c8c7c3019fad", + "status": 200, + "timestamp": "2026-05-22T08:36:58.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:36:58.854-04:00" + }, + { + "id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "created_at": "2026-05-22T08:37:01.659-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e712cd2a-08cd-4a91-a18c-0badc174602b", + "direction": "outgoing", + "index": 112162, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c015d145-3ec3-4c92-9694-c4e749b926e6", + "direction": "outgoing", + "index": 112163, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "95b32df2-4b2f-4945-8b02-b2f27698882b", + "direction": "outgoing", + "index": 112164, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.710-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8006165d-afd0-482e-be29-370cd1ee324b", + "direction": "outgoing", + "index": 112165, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4e53771d-0d7f-44d5-ada1-cd9cfa13558b", + "direction": "outgoing", + "index": 112166, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4804149c-22be-4e86-8ec1-501b565d4907\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c5a11651-525a-4998-b545-0992ce7b6ce2", + "direction": "outgoing", + "index": 112167, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4804149c-22be-4e86-8ec1-501b565d4907\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eb1b3868-951b-483c-82e2-9f0a0ece5a8b", + "direction": "outgoing", + "index": 112168, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "749f84ca-c405-4796-91f0-16636e706e00", + "direction": "outgoing", + "index": 112169, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a2424dd1-5650-49db-8426-ac561b07919b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92a412d9-6a68-4bea-8fcf-501ad3ef7b51", + "direction": "outgoing", + "index": 112170, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.803-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a2424dd1-5650-49db-8426-ac561b07919b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f55ec0ff-b558-4859-9588-afc91b7a7db8", + "direction": "outgoing", + "index": 112171, + "result_id": "dc31b1d0-90fc-4ea2-bfe4-f2cdf950e8ad", + "status": 200, + "timestamp": "2026-05-22T08:37:01.838-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:01.659-04:00" + }, + { + "id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "created_at": "2026-05-22T08:37:03.332-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c558303d-8139-4ee8-81e0-341536440c2c", + "direction": "outgoing", + "index": 112172, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "1daa622c-5eeb-49ab-af25-19fe06b66bb4", + "direction": "outgoing", + "index": 112173, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.358-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "25f2babe-3263-4826-ac5d-d19d41c819b7", + "direction": "outgoing", + "index": 112174, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95b425d3-ad31-4d3d-a92d-e001d376cfaf", + "direction": "outgoing", + "index": 112175, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.385-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "7f614c96-8d8b-4317-89e8-4ac9c2d14c71", + "direction": "outgoing", + "index": 112176, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.399-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "247a70e5-edb2-465d-bd81-860c9e2d5137", + "direction": "outgoing", + "index": 112177, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46dafa47-4d42-48e8-964e-b13b47dd45f5", + "direction": "outgoing", + "index": 112178, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "dac27b84-3861-4225-b885-1e1851eb6fa9", + "direction": "outgoing", + "index": 112179, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfce57ea-f182-4035-8dee-af5eacc6556e", + "direction": "outgoing", + "index": 112180, + "result_id": "f5e80822-0388-4cd2-a12b-5a977e24423b", + "status": 200, + "timestamp": "2026-05-22T08:37:03.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:03.332-04:00" + }, + { + "id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "created_at": "2026-05-22T08:37:04.365-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "107f2acc-f56c-4313-a4c9-8f2aa94c51da", + "direction": "outgoing", + "index": 112181, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9a3e5f74-c3fa-4720-b30a-39b503f7406c", + "direction": "outgoing", + "index": 112182, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0bb3ba8f-a504-42d2-9693-51ddd4cfe64d", + "direction": "outgoing", + "index": 112183, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "309bc393-5142-4e21-87d7-cf0e58981b45", + "direction": "outgoing", + "index": 112184, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a48754ce-6490-4c29-a3da-14c779f7c41d", + "direction": "outgoing", + "index": 112185, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "10ed9aca-190d-4dfb-ac6e-02d1a3fa9591", + "direction": "outgoing", + "index": 112186, + "result_id": "b7fc18cc-d5ed-4c5d-91be-309906142949", + "status": 200, + "timestamp": "2026-05-22T08:37:04.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:04.365-04:00" + }, + { + "id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "created_at": "2026-05-22T08:37:05.474-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7d14e5e1-8545-445a-a4dc-1186d8b6b7e4", + "direction": "outgoing", + "index": 112187, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.479-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "507e1461-3386-47e3-ac37-76b4707b7ec1", + "direction": "outgoing", + "index": 112188, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e26d8a0-cf69-46f8-9ab1-7374588ffb2c", + "direction": "outgoing", + "index": 112189, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0f2de56-f803-43a5-a3e6-8692bcc7217c", + "direction": "outgoing", + "index": 112190, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "f39d6dcc-bf3c-46f4-b290-539f0eed0627", + "direction": "outgoing", + "index": 112191, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da1b4d93-877e-4573-aee5-fbcf5e3d3f2b", + "direction": "outgoing", + "index": 112192, + "result_id": "d5456f32-41d3-4155-98ec-d18bc6ad4349", + "status": 200, + "timestamp": "2026-05-22T08:37:05.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:05.474-04:00" + }, + { + "id": "d089940f-f589-4471-9d17-a09b068a5449", + "created_at": "2026-05-22T08:37:05.736-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "991c1104-4957-4aa7-8185-1de5be78a0a9", + "direction": "outgoing", + "index": 112193, + "result_id": "d089940f-f589-4471-9d17-a09b068a5449", + "status": 200, + "timestamp": "2026-05-22T08:37:05.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:05.736-04:00" + }, + { + "id": "826a92b4-7352-49fd-be2f-3f4341038427", + "created_at": "2026-05-22T08:37:06.100-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1bc008b6-c61f-4ed6-aea4-95a87a38b275", + "direction": "outgoing", + "index": 112194, + "result_id": "826a92b4-7352-49fd-be2f-3f4341038427", + "status": 200, + "timestamp": "2026-05-22T08:37:06.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "a8d7662e-2da7-445e-be78-53fa85e4ee3c", + "direction": "outgoing", + "index": 112195, + "result_id": "826a92b4-7352-49fd-be2f-3f4341038427", + "status": 200, + "timestamp": "2026-05-22T08:37:06.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.100-04:00" + }, + { + "id": "63252e8b-6e05-4616-a19c-1eabafb7f074", + "created_at": "2026-05-22T08:37:06.219-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate'", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate'", + "type": "info" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate'", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-heart-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.219-04:00" + }, + { + "id": "ffebbb6e-8f70-4417-a0b7-a4d0e23979e0", + "created_at": "2026-05-22T08:37:06.239-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.239-04:00" + }, + { + "id": "aaee6010-b826-4c77-baf0-533c58a469c6", + "created_at": "2026-05-22T08:37:06.242-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate-us_core_v311_heartrate_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.242-04:00" + }, + { + "id": "cf59e0b7-dcf8-4df9-953b-01f4846d2939", + "created_at": "2026-05-22T08:37:06.244-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_heartrate", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.244-04:00" + }, + { + "id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "created_at": "2026-05-22T08:37:06.961-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1c63b575-c924-4afd-a8f5-e003b118fccf", + "direction": "outgoing", + "index": 112196, + "result_id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "status": 200, + "timestamp": "2026-05-22T08:37:06.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "74a47f8a-7aac-4ce7-8a73-8814bea4c904", + "direction": "outgoing", + "index": 112197, + "result_id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "status": 200, + "timestamp": "2026-05-22T08:37:06.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "a28c81f8-e504-4c9c-a56a-0532387db314", + "direction": "outgoing", + "index": 112198, + "result_id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "status": 200, + "timestamp": "2026-05-22T08:37:07.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "c0b51d61-e42b-4d63-a838-ca23dee2ccbc", + "direction": "outgoing", + "index": 112199, + "result_id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "status": 200, + "timestamp": "2026-05-22T08:37:07.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "d23cebaf-167a-4cdb-8fb1-5607729323b8", + "direction": "outgoing", + "index": 112200, + "result_id": "d1a071e1-cf36-42aa-8639-5cb278b18324", + "status": 200, + "timestamp": "2026-05-22T08:37:07.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_patient_code_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:06.961-04:00" + }, + { + "id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "created_at": "2026-05-22T08:37:10.720-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "066da760-b5c4-4f05-bf16-0011008ff214", + "direction": "outgoing", + "index": 112201, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.725-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ed74eca2-a37e-4d1a-95d6-625e396ea791", + "direction": "outgoing", + "index": 112202, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.750-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cebafeca-a2b9-44be-ab16-76f11e86a407", + "direction": "outgoing", + "index": 112203, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.764-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=215f0174-1f00-4190-8c15-8b5513324523\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9ea660c8-4e1f-4788-8d74-1cd6f1a1a768", + "direction": "outgoing", + "index": 112204, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.779-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "98744a99-2695-4157-a02f-b4631b459951", + "direction": "outgoing", + "index": 112205, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.791-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=514bb56d-8789-442d-9788-26901ace0c48\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "25ad6325-6c15-4c78-8780-a0141322131c", + "direction": "outgoing", + "index": 112206, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d934c88b-e317-4840-b942-285590aee4bd", + "direction": "outgoing", + "index": 112207, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.816-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2eab7ed8-6955-48c7-a088-a1c5ac783398\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "55eb4329-2ce7-4764-ae2b-3a2a39be46fb", + "direction": "outgoing", + "index": 112208, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.828-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e8059948-f4cf-426e-b13c-5437b3fc544e", + "direction": "outgoing", + "index": 112209, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2674e0b3-3b7e-43fd-bd1e-0a6a8db44712\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d17427c4-1689-42f6-9b81-a1012f2c9dfd", + "direction": "outgoing", + "index": 112210, + "result_id": "142d737e-dde6-41b5-b30d-f7c3fe29a0f7", + "status": 200, + "timestamp": "2026-05-22T08:37:10.849-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_patient_category_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:10.720-04:00" + }, + { + "id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "created_at": "2026-05-22T08:37:12.379-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c4420863-78c5-4a13-88fd-4736596c71c2", + "direction": "outgoing", + "index": 112211, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "07d3162a-9bd5-4a38-94d2-2e0044809d07", + "direction": "outgoing", + "index": 112212, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d709efdc-5802-4833-a7ce-b882f2ff74fc", + "direction": "outgoing", + "index": 112213, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.422-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67cb9a73-61e1-4f8e-8456-f803a0b3c5f7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "06566d5e-7069-44c9-befe-3a509afeb983", + "direction": "outgoing", + "index": 112214, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.438-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "a8ca2e0a-9cec-4f86-9af1-7fb41abd68c1", + "direction": "outgoing", + "index": 112215, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "788e9bae-3e88-4d27-98e3-c478e3df4252", + "direction": "outgoing", + "index": 112216, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6f6a41ac-9b1b-40a3-824c-f30b56bb57bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dfc131b0-3f33-4e85-a449-f199a2f137f1", + "direction": "outgoing", + "index": 112217, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "985b720d-1507-4410-89c0-68eefdf109cf", + "direction": "outgoing", + "index": 112218, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "56d196a4-ee8a-4a7b-8423-2d424b387593", + "direction": "outgoing", + "index": 112219, + "result_id": "321fd12f-6ff6-472a-bbd0-5bc3086a8365", + "status": 200, + "timestamp": "2026-05-22T08:37:12.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bd924d53-6e1f-4ae1-90bc-dbb862a5ce2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_patient_category_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:12.379-04:00" + }, + { + "id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "created_at": "2026-05-22T08:37:13.331-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1e916164-8fb1-4c62-b563-5bd9a40e8dab", + "direction": "outgoing", + "index": 112220, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.336-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c4fd5bc7-a06f-4881-ab6d-351a5e71236c", + "direction": "outgoing", + "index": 112221, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.358-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "60bb64d1-9bb2-4bb2-b5b4-5a92b6abbcdc", + "direction": "outgoing", + "index": 112222, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.372-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "140c994f-6ac4-426d-91b0-a5188de4fb01", + "direction": "outgoing", + "index": 112223, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0df51cbb-ba8e-45ad-9dac-8786ba230be1", + "direction": "outgoing", + "index": 112224, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ac426955-c50e-40c9-8aff-df07db7ba208", + "direction": "outgoing", + "index": 112225, + "result_id": "bb0a59ae-25ed-40e9-83ca-1d73d8a37d58", + "status": 200, + "timestamp": "2026-05-22T08:37:13.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:13.331-04:00" + }, + { + "id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "created_at": "2026-05-22T08:37:14.519-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a9a314bb-9834-47e7-a321-822d1d28a354", + "direction": "outgoing", + "index": 112226, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "9dec1c2b-949f-4cb4-a0fc-49646203c72c", + "direction": "outgoing", + "index": 112227, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.547-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "05d9d41d-c307-4c24-a120-2f4ad75a7b00", + "direction": "outgoing", + "index": 112228, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e533a83-0ec7-4df5-9cfd-f0371185aaf0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bce70bd3-6142-4a7e-ae77-5035f03225e0", + "direction": "outgoing", + "index": 112229, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "1357a8d2-589a-4fe0-8bb5-9086cd8507a8", + "direction": "outgoing", + "index": 112230, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c1170c65-f656-450f-94ef-096db059dda5", + "direction": "outgoing", + "index": 112231, + "result_id": "f1d5bdc7-8c49-42a2-8740-b1d67363ef6e", + "status": 200, + "timestamp": "2026-05-22T08:37:14.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2d94c2b6-48a7-4205-aa07-86108ddaddcf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_patient_category_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:14.519-04:00" + }, + { + "id": "2343d2f5-4cb8-4999-ba43-f2aa9f03a0dd", + "created_at": "2026-05-22T08:37:14.736-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "72b1a96a-9c69-4595-80c3-f838d0b4dd1a", + "direction": "outgoing", + "index": 112232, + "result_id": "2343d2f5-4cb8-4999-ba43-f2aa9f03a0dd", + "status": 200, + "timestamp": "2026-05-22T08:37:14.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:14.736-04:00" + }, + { + "id": "19bc210f-0ecd-4961-a42b-d89d0ba76bee", + "created_at": "2026-05-22T08:37:15.067-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4ce57cde-d3fa-48a7-9a77-898b7fb76208", + "direction": "outgoing", + "index": 112233, + "result_id": "19bc210f-0ecd-4961-a42b-d89d0ba76bee", + "status": 200, + "timestamp": "2026-05-22T08:37:15.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "42473861-c802-4030-abc3-0c4bdc644cf3", + "direction": "outgoing", + "index": 112234, + "result_id": "19bc210f-0ecd-4961-a42b-d89d0ba76bee", + "status": 200, + "timestamp": "2026-05-22T08:37:15.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:15.067-04:00" + }, + { + "id": "a231c66b-7da2-40db-aaee-6e647220ab29", + "created_at": "2026-05-22T08:37:15.167-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate'", + "type": "info" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate'", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate'", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-respiratory-rate' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:15.167-04:00" + }, + { + "id": "275cc494-e507-4872-9732-df20345c28e5", + "created_at": "2026-05-22T08:37:15.187-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:15.187-04:00" + }, + { + "id": "66f01564-0ad1-4dc0-a5f2-f3931f24b63a", + "created_at": "2026-05-22T08:37:15.190-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate-us_core_v311_resprate_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:15.190-04:00" + }, + { + "id": "8970073c-6c0c-4ca1-911a-ee23f0251158", + "created_at": "2026-05-22T08:37:15.192-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_resprate", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:15.192-04:00" + }, + { + "id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "created_at": "2026-05-22T08:37:18.020-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2255ba16-e267-48cc-b6b2-91ca35e2f313", + "direction": "outgoing", + "index": 112235, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.022-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85", + "verb": "get" + }, + { + "id": "143bd547-656d-427c-bc72-65f8799b50e6", + "direction": "outgoing", + "index": 112236, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2993f0ac-ad84-4d38-8f43-2b92f5159d16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "923ffef0-89bf-4006-9229-afdec0d2153b", + "direction": "outgoing", + "index": 112237, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/_search", + "verb": "post" + }, + { + "id": "4e600ef1-969f-4d0b-a5da-b76f7174620a", + "direction": "outgoing", + "index": 112238, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2993f0ac-ad84-4d38-8f43-2b92f5159d16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e4c94fa-7c27-472c-a5e7-7a46baaf6f83", + "direction": "outgoing", + "index": 112239, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85", + "verb": "get" + }, + { + "id": "55a49c3f-9545-4d94-b164-e780da858307", + "direction": "outgoing", + "index": 112240, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.078-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04dfe7e-91d1-4b57-8a4f-ad9f31af205c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "135f2576-14b7-43ca-8e8a-fb83c86ed1c6", + "direction": "outgoing", + "index": 112241, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.091-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355", + "verb": "get" + }, + { + "id": "d507723c-7046-4dde-a606-615e3872821b", + "direction": "outgoing", + "index": 112242, + "result_id": "04f8e0da-5042-4558-a74c-21c32d4034af", + "status": 200, + "timestamp": "2026-05-22T08:37:18.101-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a889413b-1df2-4bd8-9457-a702c53f5249\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:18.020-04:00" + }, + { + "id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "created_at": "2026-05-22T08:37:20.528-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b9cbb083-8519-42e8-8b17-df5a98e6fc73", + "direction": "outgoing", + "index": 112243, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "79da3491-fe05-4bb4-97fd-bf4d72c1f2be", + "direction": "outgoing", + "index": 112244, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=524e7181-8256-41c5-a928-fe6b95dff579\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0948208b-f742-420a-b1fc-96b1e0c7ae75", + "direction": "outgoing", + "index": 112245, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "90804248-733e-4e1d-a9c9-3374d949cc8c", + "direction": "outgoing", + "index": 112246, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=524e7181-8256-41c5-a928-fe6b95dff579\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "932c6601-a828-44c9-a2b5-abb03fe288c9", + "direction": "outgoing", + "index": 112247, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bdd97af1-0861-4db7-9f60-92a6d004aa87", + "direction": "outgoing", + "index": 112248, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.610-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ee07dff7-4de1-4726-9eb8-c87b8d086f63\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "07261c2c-fe3e-475b-b680-c4ad74729a81", + "direction": "outgoing", + "index": 112249, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.622-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "04732bfa-ec55-43af-8529-90b6e84e9b90", + "direction": "outgoing", + "index": 112250, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6318001d-0a91-43ad-84b7-12ebd03a97dd", + "direction": "outgoing", + "index": 112251, + "result_id": "50e7eb27-0c4f-4c30-b8a1-b5f40e5c4f81", + "status": 200, + "timestamp": "2026-05-22T08:37:20.653-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_patient_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:20.528-04:00" + }, + { + "id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "created_at": "2026-05-22T08:37:23.145-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2e0be318-b045-4791-bd28-16af0f566600", + "direction": "outgoing", + "index": 112252, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "2c6b95ae-8bca-459a-bbca-721fe1cc3b33", + "direction": "outgoing", + "index": 112253, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.173-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=04bfd45c-f119-4a1b-950f-e27bb9e2e38d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0c9ff86c-6322-4e5f-9048-04506e58ef4f", + "direction": "outgoing", + "index": 112254, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed", + "verb": "get" + }, + { + "id": "132f458d-404d-48ef-92ea-325da1ea4f20", + "direction": "outgoing", + "index": 112255, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca24e953-0826-4da6-b6ff-87ad27644135\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a81b0c26-0902-42a4-be60-3aa64458bab2", + "direction": "outgoing", + "index": 112256, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.210-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "10cadbc7-94e7-45ed-9d34-c4b0f0c70348", + "direction": "outgoing", + "index": 112257, + "result_id": "a3ee4018-e006-4cf7-980f-348acfd31417", + "status": 200, + "timestamp": "2026-05-22T08:37:23.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d859138a-9533-4bbc-a86b-7c3ec3c59349\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:23.145-04:00" + }, + { + "id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "created_at": "2026-05-22T08:37:24.394-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cb5d9cb2-f531-4673-b946-d2a2ff7922d3", + "direction": "outgoing", + "index": 112258, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f94d58cd-b087-43cf-bc01-f11323e98c32", + "direction": "outgoing", + "index": 112259, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "580f85c8-c9f9-416d-8354-eccd20ec2b7a", + "direction": "outgoing", + "index": 112260, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2369669d-7aa1-400e-8e26-6aee6b7b4ded", + "direction": "outgoing", + "index": 112261, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fa656fd6-8edc-4f7f-af00-ef6862d97a12", + "direction": "outgoing", + "index": 112262, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.443-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8df9373d-8ead-4922-bf94-8995248286ee", + "direction": "outgoing", + "index": 112263, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "cf945e96-7d0a-42b0-8085-881ea3f81a1b", + "direction": "outgoing", + "index": 112264, + "result_id": "a95911e5-7b7b-42cc-a6a6-9339f90f0568", + "status": 200, + "timestamp": "2026-05-22T08:37:24.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_patient_code_date_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:24.394-04:00" + }, + { + "id": "7b40e458-042f-46ca-9d90-cdbef8f131cc", + "created_at": "2026-05-22T08:37:24.599-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f2ae22d5-0287-4ee4-bcde-913a11e09219", + "direction": "outgoing", + "index": 112265, + "result_id": "7b40e458-042f-46ca-9d90-cdbef8f131cc", + "status": 200, + "timestamp": "2026-05-22T08:37:24.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:24.599-04:00" + }, + { + "id": "f8a938f6-564f-4ce4-bd9d-db6c3dcd849a", + "created_at": "2026-05-22T08:37:26.485-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "378fabc3-2661-47a2-88b6-8f31bf1f5448", + "direction": "outgoing", + "index": 112266, + "result_id": "f8a938f6-564f-4ce4-bd9d-db6c3dcd849a", + "status": 200, + "timestamp": "2026-05-22T08:37:26.488-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "b5bba824-a99c-4057-bddd-df588aef65d4", + "direction": "outgoing", + "index": 112267, + "result_id": "f8a938f6-564f-4ce4-bd9d-db6c3dcd849a", + "status": 200, + "timestamp": "2026-05-22T08:37:26.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a8ff2a14-4f9a-4b3c-8ec1-74267ccfbdcc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0d6f97c4-018b-4319-bf0d-8ea5f86d8975", + "direction": "outgoing", + "index": 112268, + "result_id": "f8a938f6-564f-4ce4-bd9d-db6c3dcd849a", + "status": 200, + "timestamp": "2026-05-22T08:37:26.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "dbdb1a02-19bb-4bfc-880a-7b6fe098ea1a", + "direction": "outgoing", + "index": 112269, + "result_id": "f8a938f6-564f-4ce4-bd9d-db6c3dcd849a", + "status": 200, + "timestamp": "2026-05-22T08:37:26.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f3b3ba94-82b1-4de5-956d-1fca30b60990\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:26.485-04:00" + }, + { + "id": "0fe45869-8e52-496e-a39a-beb8683f4ad8", + "created_at": "2026-05-22T08:37:27.503-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#447365002)", + "type": "warning" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#60027007)", + "type": "warning" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:27.503-04:00" + }, + { + "id": "ebc5d51a-c7c6-4590-8768-a2bdd337622f", + "created_at": "2026-05-22T08:37:27.550-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:27.550-04:00" + }, + { + "id": "c10af998-c905-40e2-959e-40c4bc45fbf7", + "created_at": "2026-05-22T08:37:27.555-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure-us_core_v311_procedure_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:27.555-04:00" + }, + { + "id": "6d760ecf-65be-45fd-b103-2e9f57727da9", + "created_at": "2026-05-22T08:37:27.557-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_procedure", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:27.557-04:00" + }, + { + "id": "b654c16c-5b2d-4bba-8c92-db2f12240688", + "created_at": "2026-05-22T08:37:27.688-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Encounter reference used for this test was pulled from resource\nDiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f14e4079-a384-47f1-899e-7b7118a4169b", + "direction": "outgoing", + "index": 112270, + "result_id": "b654c16c-5b2d-4bba-8c92-db2f12240688", + "status": 200, + "timestamp": "2026-05-22T08:37:27.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:27.688-04:00" + }, + { + "id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "created_at": "2026-05-22T08:37:34.991-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a1d8c7c5-4827-4546-abf9-d9ccfe192a1c", + "direction": "outgoing", + "index": 112271, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:34.994-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85", + "verb": "get" + }, + { + "id": "7e179607-9a53-42f1-9de8-6b982f8ec190", + "direction": "outgoing", + "index": 112272, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.009-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e0cc3721-3457-4fe1-b005-ff70c61faa92", + "direction": "outgoing", + "index": 112273, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "39874347-a48f-4420-aa11-847142b05b36", + "direction": "outgoing", + "index": 112274, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2346be04-9316-448f-bdbb-e617a32aff44", + "direction": "outgoing", + "index": 112275, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.052-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b82a3206-7ef6-47a5-ac83-18c774d7ec79", + "direction": "outgoing", + "index": 112276, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47eed5c6-f906-4352-b341-1e8a608e1f03", + "direction": "outgoing", + "index": 112277, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/_search", + "verb": "post" + }, + { + "id": "9109d562-a784-42dd-8b06-2b098c38a589", + "direction": "outgoing", + "index": 112278, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6792c86-312e-467a-8032-d31c11ae52b0", + "direction": "outgoing", + "index": 112279, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.107-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2765fb0b-4715-463b-88e3-4cfeae933579", + "direction": "outgoing", + "index": 112280, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.122-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1adc50ec-0861-409f-bdb4-12c08b774617", + "direction": "outgoing", + "index": 112281, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.135-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a94bec6-0b54-4e3a-a243-e76c0e588485", + "direction": "outgoing", + "index": 112282, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.149-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=067c0baf-6364-4bd2-b6c2-5fffcbe224fb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2f58c8a5-1d7e-40ac-890e-580c5ded9697", + "direction": "outgoing", + "index": 112283, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.164-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85", + "verb": "get" + }, + { + "id": "74b8c9e3-a2e6-4b0f-a4ae-81e1e5b82a2b", + "direction": "outgoing", + "index": 112284, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.177-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ef30e156-b00c-420a-9482-fe5e3c6cb125\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "04fa7922-a07a-4562-8081-076b0c0a2c19", + "direction": "outgoing", + "index": 112285, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ef30e156-b00c-420a-9482-fe5e3c6cb125\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea314df1-4329-4704-b095-c3574e67b267", + "direction": "outgoing", + "index": 112286, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.205-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ef30e156-b00c-420a-9482-fe5e3c6cb125\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93f92260-d4cb-4095-8126-4954c22a361a", + "direction": "outgoing", + "index": 112287, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ef30e156-b00c-420a-9482-fe5e3c6cb125\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ed1ca988-b688-4fef-ac4c-d5d4be60a7d2", + "direction": "outgoing", + "index": 112288, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ef30e156-b00c-420a-9482-fe5e3c6cb125\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eebfb4c9-ee57-4c4e-b05d-ae1371e4f6a1", + "direction": "outgoing", + "index": 112289, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355", + "verb": "get" + }, + { + "id": "7ae7e743-1589-45d1-8cb7-f36c93a29893", + "direction": "outgoing", + "index": 112290, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db43c33b-03d4-4351-8fd3-57c351610c1e", + "direction": "outgoing", + "index": 112291, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "96b8485b-c825-4097-9717-e085e9c29caf", + "direction": "outgoing", + "index": 112292, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.288-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "49ecc9bb-52d0-407f-b161-081964e17990", + "direction": "outgoing", + "index": 112293, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "62328eb6-dd45-4dbe-a78d-c3c86e85f152", + "direction": "outgoing", + "index": 112294, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.317-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa113ca0-542d-4b9b-8336-5ee19e3e7231", + "direction": "outgoing", + "index": 112295, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c11eabd4-575f-489b-b42f-cbf80a29e0f0", + "direction": "outgoing", + "index": 112296, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.342-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d8cb0d0e-6568-4d2b-a079-e1b33730dc65", + "direction": "outgoing", + "index": 112297, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8c7d193-f986-4ab9-aab6-c6885900293c", + "direction": "outgoing", + "index": 112298, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a1af01f5-f4ad-4857-bb30-319a944dfb3f", + "direction": "outgoing", + "index": 112299, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.382-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6141c117-56aa-46d2-ab9c-3d2024fa7644", + "direction": "outgoing", + "index": 112300, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5ea17661-d36d-4a97-bc39-407c8b740a86", + "direction": "outgoing", + "index": 112301, + "result_id": "ecc7f5fa-83e1-4b9a-803e-f5fdae4cfbe2", + "status": 200, + "timestamp": "2026-05-22T08:37:35.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0e634b7-98f7-43c5-b005-6ceb6063cb63\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:34.991-04:00" + }, + { + "id": "53e166cd-fa97-4e58-a994-d7e3cd0f1df6", + "created_at": "2026-05-22T08:37:35.569-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dad6e8cc-f23c-4a03-8ff6-b11192fbd577", + "direction": "outgoing", + "index": 112302, + "result_id": "53e166cd-fa97-4e58-a994-d7e3cd0f1df6", + "status": 200, + "timestamp": "2026-05-22T08:37:35.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_id=9415cbe7-83f8-4f2d-83fe-5c6a11e83082", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter__id_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:35.569-04:00" + }, + { + "id": "6413afa5-a92f-4604-9823-108c89069909", + "created_at": "2026-05-22T08:37:35.838-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "69a98ebf-27fa-474a-a06d-3aa42595faf9", + "direction": "outgoing", + "index": 112303, + "result_id": "6413afa5-a92f-4604-9823-108c89069909", + "status": 200, + "timestamp": "2026-05-22T08:37:35.846-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=0bb40726-2ce8-c94f-7123-aeaa7b25387a", + "verb": "get" + }, + { + "id": "04e7dfe8-ccc2-4594-a49f-4f62fba34d51", + "direction": "outgoing", + "index": 112304, + "result_id": "6413afa5-a92f-4604-9823-108c89069909", + "status": 200, + "timestamp": "2026-05-22T08:37:35.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C0bb40726-2ce8-c94f-7123-aeaa7b25387a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_identifier_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:35.838-04:00" + }, + { + "id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "created_at": "2026-05-22T08:37:41.937-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "8fec049b-c758-4ae5-8377-884cc956d343", + "direction": "outgoing", + "index": 112305, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:41.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85", + "verb": "get" + }, + { + "id": "af31ed81-e461-48e6-914e-673032651bea", + "direction": "outgoing", + "index": 112306, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:41.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dd283c7c-d0be-4f6e-acbf-0f7341f48560\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f16bac4d-6b3c-4dbf-b809-32decb8a2259", + "direction": "outgoing", + "index": 112307, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:41.982-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dd283c7c-d0be-4f6e-acbf-0f7341f48560\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6bc2ccb4-ed7e-48d2-9898-0bc64520b0cf", + "direction": "outgoing", + "index": 112308, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:41.996-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dd283c7c-d0be-4f6e-acbf-0f7341f48560\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c39de0b5-f91e-4d79-9bd1-ed73e8285bbc", + "direction": "outgoing", + "index": 112309, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.009-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dd283c7c-d0be-4f6e-acbf-0f7341f48560\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "185027a0-6a1f-482d-a186-e92a1f91f0a4", + "direction": "outgoing", + "index": 112310, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.021-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=dd283c7c-d0be-4f6e-acbf-0f7341f48560\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "debd7466-69cd-4635-a1ac-d2ebbc4e260f", + "direction": "outgoing", + "index": 112311, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.032-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85", + "verb": "get" + }, + { + "id": "38560859-5953-43a6-9d3e-93c5ec1f44f0", + "direction": "outgoing", + "index": 112312, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d75abf32-c181-41a5-82b4-6652da54106c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "13602e71-54fc-4530-bebc-f59fbf68d03f", + "direction": "outgoing", + "index": 112313, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.060-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d75abf32-c181-41a5-82b4-6652da54106c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "48204dda-14d9-46c6-a103-959cae8fb2ce", + "direction": "outgoing", + "index": 112314, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d75abf32-c181-41a5-82b4-6652da54106c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bcd26c51-5a14-441d-9f53-43255d7719ff", + "direction": "outgoing", + "index": 112315, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d75abf32-c181-41a5-82b4-6652da54106c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4987f7d6-5570-4d3c-82c1-1f83b24401e4", + "direction": "outgoing", + "index": 112316, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.099-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d75abf32-c181-41a5-82b4-6652da54106c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9063caba-0fac-477c-b159-ef914b42f419", + "direction": "outgoing", + "index": 112317, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355", + "verb": "get" + }, + { + "id": "3fca59dc-23fa-42de-951a-5e419bdfdf42", + "direction": "outgoing", + "index": 112318, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.125-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "185511a6-589c-435f-be5c-0628123a223c", + "direction": "outgoing", + "index": 112319, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5acc7930-5b71-4d9e-900a-8f3aa1333c23", + "direction": "outgoing", + "index": 112320, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.150-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e6f8c33-aa6d-4844-86ba-e63a19bb5f5e", + "direction": "outgoing", + "index": 112321, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1d5106ed-cae3-457b-9634-9c2aa839446d", + "direction": "outgoing", + "index": 112322, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7c2bb73b-72ee-4030-a230-f95c99d4086d", + "direction": "outgoing", + "index": 112323, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ef845e03-5d0c-49a2-83ca-f87eac633d44", + "direction": "outgoing", + "index": 112324, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.203-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3a44b184-636f-45fb-9351-b54a7658e209", + "direction": "outgoing", + "index": 112325, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.216-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f4d9f1ff-814d-4e0b-8e12-20e8418716c5", + "direction": "outgoing", + "index": 112326, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2a850e99-70d3-479c-9343-07cd6fa4a712", + "direction": "outgoing", + "index": 112327, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.242-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1b8e932f-c5ee-4c49-abda-14cd4c661078", + "direction": "outgoing", + "index": 112328, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "15caaeca-db38-411c-8e5c-2d238d34d367", + "direction": "outgoing", + "index": 112329, + "result_id": "2212604b-fd38-482b-bb62-bdeec09f1dce", + "status": 200, + "timestamp": "2026-05-22T08:37:42.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=35c8ff04-29b5-4bae-a362-6b0a301fa972\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_class_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:41.937-04:00" + }, + { + "id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "created_at": "2026-05-22T08:37:46.556-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "17c09cc6-4c22-4d2a-8a80-f0af417f2635", + "direction": "outgoing", + "index": 112330, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.560-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished", + "verb": "get" + }, + { + "id": "08c00d1b-9b8d-4a72-87c0-6b5c8b417507", + "direction": "outgoing", + "index": 112331, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7dff7a67-fa8d-49ec-93d3-3ba96d5787fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "42b086de-2238-4cfe-8019-ccdf4f275772", + "direction": "outgoing", + "index": 112332, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.586-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7dff7a67-fa8d-49ec-93d3-3ba96d5787fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aebf7661-abda-4a7a-9439-ee8344a12a3d", + "direction": "outgoing", + "index": 112333, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.599-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7dff7a67-fa8d-49ec-93d3-3ba96d5787fd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c91dfa6e-8ce2-418b-8981-8e7b8f251a51", + "direction": "outgoing", + "index": 112334, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7dff7a67-fa8d-49ec-93d3-3ba96d5787fd\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "faa8564c-9f26-48a7-971b-456063443ed8", + "direction": "outgoing", + "index": 112335, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.627-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7dff7a67-fa8d-49ec-93d3-3ba96d5787fd\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4cd4f255-3a04-47bf-93cd-28b3ceb3eac7", + "direction": "outgoing", + "index": 112336, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished", + "verb": "get" + }, + { + "id": "91f38a46-c6b4-41e8-af58-8a33485e1210", + "direction": "outgoing", + "index": 112337, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dd2dcc3f-ead8-424a-b0ca-ff6589d80842", + "direction": "outgoing", + "index": 112338, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "33137160-ea43-4737-b2f4-7b02169914c1", + "direction": "outgoing", + "index": 112339, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6285a3d-9eeb-4813-a946-b6d371e0f5f9", + "direction": "outgoing", + "index": 112340, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.693-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e839d39c-5da7-4ef6-b33d-bbd7d19c681c", + "direction": "outgoing", + "index": 112341, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c8e8e630-681a-4f14-9f48-57a8fa98adef", + "direction": "outgoing", + "index": 112342, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95e80038-78ff-4600-854f-653147b9a635", + "direction": "outgoing", + "index": 112343, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.734-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "82d98795-ec8d-43b8-8cb1-7a22aaec6a78", + "direction": "outgoing", + "index": 112344, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.746-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "12fb7701-0168-49b7-b1f3-0b5fd7d00352", + "direction": "outgoing", + "index": 112345, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "705bd526-1594-4c8e-8877-032345194f3b", + "direction": "outgoing", + "index": 112346, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.774-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5f9ec19-02e1-43db-b66b-be8a43d15855", + "direction": "outgoing", + "index": 112347, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9abb5504-ccc9-4070-a56f-efbf8e7105ad", + "direction": "outgoing", + "index": 112348, + "result_id": "3e4fb7f7-b2b4-463d-a8ad-9020e3c99fa2", + "status": 200, + "timestamp": "2026-05-22T08:37:46.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92d163df-fc8a-4001-a7d3-05446a76f461\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_patient_status_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:46.556-04:00" + }, + { + "id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "created_at": "2026-05-22T08:37:49.987-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "96947b11-2ba9-41af-b668-e56272717ab9", + "direction": "outgoing", + "index": 112349, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:49.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009", + "verb": "get" + }, + { + "id": "337712bb-6767-4973-be97-f95a00294a62", + "direction": "outgoing", + "index": 112350, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.005-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0fe3cd7e-26ba-4180-b3e0-851c524fac7e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b52b37d1-35e5-4b83-b68f-2e971247d294", + "direction": "outgoing", + "index": 112351, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0fe3cd7e-26ba-4180-b3e0-851c524fac7e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d617000-02cc-4ebe-9a35-fc311e62daa6", + "direction": "outgoing", + "index": 112352, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009", + "verb": "get" + }, + { + "id": "34216ffe-19fe-4b58-a64e-961e54b5f942", + "direction": "outgoing", + "index": 112353, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.046-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7d0aa8af-beaf-42ba-94cc-1ea137bfdba0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3861304f-7464-4d7d-a15d-cb521590e3b9", + "direction": "outgoing", + "index": 112354, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7d0aa8af-beaf-42ba-94cc-1ea137bfdba0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a291f6b4-81d1-41dd-8174-bd522190957a", + "direction": "outgoing", + "index": 112355, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009", + "verb": "get" + }, + { + "id": "1b550a2a-7d04-45db-9f88-3b9741a10fea", + "direction": "outgoing", + "index": 112356, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=925f62f6-9db2-4477-ac42-4df2919630c1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "84cecbf3-a68f-4d8e-ad79-23acb85268ee", + "direction": "outgoing", + "index": 112357, + "result_id": "dc81202c-0a7d-48b0-b058-5ae33bd64e4c", + "status": 200, + "timestamp": "2026-05-22T08:37:50.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=925f62f6-9db2-4477-ac42-4df2919630c1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_patient_type_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:49.987-04:00" + }, + { + "id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "created_at": "2026-05-22T08:37:58.107-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3b17a621-d32c-45ba-937d-afe90a997b51", + "direction": "outgoing", + "index": 112358, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.113-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0f832765-80a9-4068-be34-9ac056246b2a", + "direction": "outgoing", + "index": 112359, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "af1ddbe7-d6ad-4aff-ae43-b70c40adee90", + "direction": "outgoing", + "index": 112360, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b3dffc91-0188-4638-8864-bb0879370c42", + "direction": "outgoing", + "index": 112361, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "84e4e546-2dbc-41aa-aafa-bf5fcfbf2a64", + "direction": "outgoing", + "index": 112362, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.172-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e88369d3-7574-4497-834d-d8c7d3c20db6", + "direction": "outgoing", + "index": 112363, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "37181923-a2c8-4bca-806a-f223be503cce", + "direction": "outgoing", + "index": 112364, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "37a9d3c7-f964-427e-842f-397efbf491f9", + "direction": "outgoing", + "index": 112365, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.215-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "39de2c86-cdd1-4415-b49c-07150ad74445", + "direction": "outgoing", + "index": 112366, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.226-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "772ee752-7306-4cfa-88eb-356d08e2a293", + "direction": "outgoing", + "index": 112367, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e7ebeb4-e318-41d4-893e-21bd6b703abf", + "direction": "outgoing", + "index": 112368, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.250-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9ef35aac-0378-4fe0-91df-941946174cd0", + "direction": "outgoing", + "index": 112369, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f94ba360-8d8a-4bda-82b0-5d2c9feda3f0\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a080b2bc-0f1e-416b-9328-fb4a33e54785", + "direction": "outgoing", + "index": 112370, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.276-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4af95c0a-6784-42c4-8e15-ba7ad4c0b5f9", + "direction": "outgoing", + "index": 112371, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.290-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5beab92-8099-485b-a55b-6958e702da03\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d2919d82-fe41-4c77-95ad-56db8e7e75c2", + "direction": "outgoing", + "index": 112372, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5beab92-8099-485b-a55b-6958e702da03\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d61ea7aa-147a-49c6-8191-918873255163", + "direction": "outgoing", + "index": 112373, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.315-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5beab92-8099-485b-a55b-6958e702da03\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "be935e12-b35a-48da-9c1e-61b23b61984c", + "direction": "outgoing", + "index": 112374, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5beab92-8099-485b-a55b-6958e702da03\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4183b26c-b5ca-4f2c-acb4-2df3ffa3b42b", + "direction": "outgoing", + "index": 112375, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5beab92-8099-485b-a55b-6958e702da03\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1fb60619-f08a-4a83-b845-220416121a99", + "direction": "outgoing", + "index": 112376, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6ee0f95b-0a3b-4c1b-adc6-590f6ea3306c", + "direction": "outgoing", + "index": 112377, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f675068c-226e-433f-8381-5b98b3b44988", + "direction": "outgoing", + "index": 112378, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5a3c2fc4-6ce4-4c70-86a4-190f6b96291e", + "direction": "outgoing", + "index": 112379, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "835d4d4d-bf2b-4161-9275-0b5cb11398c3", + "direction": "outgoing", + "index": 112380, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.399-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b555e2e-8a8b-4ee0-b694-930b44fe85fd", + "direction": "outgoing", + "index": 112381, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "829ad55a-d7f5-4a57-acf6-b59ecd20bcf3", + "direction": "outgoing", + "index": 112382, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "81999df6-e076-47ba-b3f1-f4c6e62cc3b1", + "direction": "outgoing", + "index": 112383, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.436-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2eafa656-ee48-4b2f-8b9a-0a4f24a37f46", + "direction": "outgoing", + "index": 112384, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.447-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7ec66447-697a-4001-9896-d916dd9fd157", + "direction": "outgoing", + "index": 112385, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46931147-e5b4-4e5f-a82f-b649da13c7d6", + "direction": "outgoing", + "index": 112386, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.473-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8d3b14d-f7af-45e9-b5c5-bb58ef48cb05", + "direction": "outgoing", + "index": 112387, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.486-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "88b54ca8-46bc-4d60-aef4-6f4008ee0d11", + "direction": "outgoing", + "index": 112388, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.497-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7eb85906-fce4-4245-9e1c-8d6a212b6422", + "direction": "outgoing", + "index": 112389, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.508-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "734de6b7-68e3-4bdd-adee-70d2ad24c3d9", + "direction": "outgoing", + "index": 112390, + "result_id": "af7c2617-c263-41a2-a202-eee2adbd639c", + "status": 200, + "timestamp": "2026-05-22T08:37:58.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7207f2e7-b8bd-4c09-880c-ec40f375ce33\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_date_patient_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:37:58.107-04:00" + }, + { + "id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "created_at": "2026-05-22T08:38:03.857-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4223c7e6-34c8-4bdd-8127-13c54c9fd063", + "direction": "outgoing", + "index": 112391, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "2ccda3c0-ba92-4e11-bbd5-4ac0e981a8f7", + "direction": "outgoing", + "index": 112392, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.877-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9826ae98-49b0-4cb5-a834-c0b0de9c9e09\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6eecdae1-7c6a-4baf-8d4e-78865c0e5836", + "direction": "outgoing", + "index": 112393, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.889-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9826ae98-49b0-4cb5-a834-c0b0de9c9e09\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e74f00c4-7d51-475d-b13e-b167de6dadb5", + "direction": "outgoing", + "index": 112394, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.904-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9826ae98-49b0-4cb5-a834-c0b0de9c9e09\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fb3f7c0d-182f-40bf-b306-cb1bce7635b1", + "direction": "outgoing", + "index": 112395, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.917-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9826ae98-49b0-4cb5-a834-c0b0de9c9e09\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8531173f-53d1-4b58-bf2d-dc51aedc8458", + "direction": "outgoing", + "index": 112396, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.930-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9826ae98-49b0-4cb5-a834-c0b0de9c9e09\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78607154-3176-4007-a918-8ead0177f701", + "direction": "outgoing", + "index": 112397, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "4e52230b-d6c7-4b37-8d91-ebd74222cfd7", + "direction": "outgoing", + "index": 112398, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "744f5bbf-77d5-4a1f-80a4-d489d1a23841", + "direction": "outgoing", + "index": 112399, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "51d5a68c-9d5a-4144-97ab-4ef2ca967e89", + "direction": "outgoing", + "index": 112400, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9bd1994e-c0d4-46e4-b504-dbc1f444e590", + "direction": "outgoing", + "index": 112401, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:03.994-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0b2f2921-1f16-4046-bc8a-d94bdb4aaf14", + "direction": "outgoing", + "index": 112402, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.006-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "838ea79f-3bf3-4d4d-aced-08c0924db512", + "direction": "outgoing", + "index": 112403, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.021-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2fa725e2-0597-4da3-b920-a9421fdad29d", + "direction": "outgoing", + "index": 112404, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.034-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b0c3ddef-26cd-4a8b-8710-4c02b333adb5", + "direction": "outgoing", + "index": 112405, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.046-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5a60ee9a-3d23-4221-bc1b-ac79263d5df3", + "direction": "outgoing", + "index": 112406, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "87732a4a-42cd-4d74-adc0-3824d61c23b9", + "direction": "outgoing", + "index": 112407, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.072-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cd9801f9-c92a-4105-94a5-d86f8228c02f", + "direction": "outgoing", + "index": 112408, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b907e8b3-2557-47c3-83aa-1989ce109dc8", + "direction": "outgoing", + "index": 112409, + "result_id": "0ab4e1da-1604-47b3-b875-d95be81bc39f", + "status": 200, + "timestamp": "2026-05-22T08:38:04.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=70004d0c-305f-4557-94d3-0ccf4c97e085\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_provenance_revinclude_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:03.857-04:00" + }, + { + "id": "2c41b82f-3cd5-4b09-ad67-f268330685b3", + "created_at": "2026-05-22T08:38:08.947-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed", + "type": "info" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#394701000)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410429000)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|3.1.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:08.947-04:00" + }, + { + "id": "464b5885-0ccb-4cea-974d-31e61a52f14e", + "created_at": "2026-05-22T08:38:09.277-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.277-04:00" + }, + { + "id": "11a4e687-aa92-499c-b279-499d1c7550a1", + "created_at": "2026-05-22T08:38:09.404-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "936a5c34-7cf5-4cb6-87eb-2b224cf6342d", + "direction": "outgoing", + "index": 112410, + "result_id": "11a4e687-aa92-499c-b279-499d1c7550a1", + "status": 200, + "timestamp": "2026-05-22T08:38:09.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter-us_core_v311_encounter_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.404-04:00" + }, + { + "id": "8f40d98e-368b-4edb-a662-7ac207b8eb21", + "created_at": "2026-05-22T08:38:09.423-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_encounter", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.423-04:00" + }, + { + "id": "55087fab-a44b-41eb-9ba5-2d6771be51cd", + "created_at": "2026-05-22T08:38:09.544-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1dd20667-47e9-456b-8888-ee247786e4f0", + "direction": "outgoing", + "index": 112411, + "result_id": "55087fab-a44b-41eb-9ba5-2d6771be51cd", + "status": 200, + "timestamp": "2026-05-22T08:38:09.548-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization-us_core_v311_organization_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.544-04:00" + }, + { + "id": "143847a9-5a5f-4d6c-8497-595ec0b2d2c7", + "created_at": "2026-05-22T08:38:09.820-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1c7e1834-b189-41db-b8b2-a59b3b58c349", + "direction": "outgoing", + "index": 112412, + "result_id": "143847a9-5a5f-4d6c-8497-595ec0b2d2c7", + "status": 200, + "timestamp": "2026-05-22T08:38:09.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052", + "verb": "get" + }, + { + "id": "a5630ee1-dd5e-4a14-8180-4aabf9a7e13f", + "direction": "outgoing", + "index": 112413, + "result_id": "143847a9-5a5f-4d6c-8497-595ec0b2d2c7", + "status": 200, + "timestamp": "2026-05-22T08:38:09.841-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization-us_core_v311_organization_name_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.820-04:00" + }, + { + "id": "0177bc5f-a275-479f-8c05-70ee10680cfa", + "created_at": "2026-05-22T08:38:09.981-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "aeb1878c-aeb4-4aa7-bfca-b5c9a4aaca59", + "direction": "outgoing", + "index": 112414, + "result_id": "0177bc5f-a275-479f-8c05-70ee10680cfa", + "status": 200, + "timestamp": "2026-05-22T08:38:09.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization-us_core_v311_organization_address_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:09.981-04:00" + }, + { + "id": "231aa026-0f8a-4c7c-9dda-b0e6dcd8e943", + "created_at": "2026-05-22T08:38:10.032-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization.identifier[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|3.1.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization-us_core_v311_organization_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.032-04:00" + }, + { + "id": "b0f9357f-dac2-4b3e-b52d-fadab158c6b4", + "created_at": "2026-05-22T08:38:10.037-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization-us_core_v311_organization_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.037-04:00" + }, + { + "id": "747992ea-8a17-4745-aa10-775606b12456", + "created_at": "2026-05-22T08:38:10.038-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_organization", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.038-04:00" + }, + { + "id": "88bca224-7187-4d34-aeba-fed5f1ab3342", + "created_at": "2026-05-22T08:38:10.167-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "31fe95a7-5391-4d39-a007-3732e3685afa", + "direction": "outgoing", + "index": 112415, + "result_id": "88bca224-7187-4d34-aeba-fed5f1ab3342", + "status": 200, + "timestamp": "2026-05-22T08:38:10.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner-us_core_v311_practitioner_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.167-04:00" + }, + { + "id": "6a028270-3ea5-4436-8382-94e4452b2548", + "created_at": "2026-05-22T08:38:10.434-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "37fc4456-7b83-4fed-a5c9-2bc2e04469a2", + "direction": "outgoing", + "index": 112416, + "result_id": "6a028270-3ea5-4436-8382-94e4452b2548", + "status": 200, + "timestamp": "2026-05-22T08:38:10.437-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251", + "verb": "get" + }, + { + "id": "1f5b56a7-ac00-44da-bd53-a12404c1365f", + "direction": "outgoing", + "index": 112417, + "result_id": "6a028270-3ea5-4436-8382-94e4452b2548", + "status": 200, + "timestamp": "2026-05-22T08:38:10.454-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner-us_core_v311_practitioner_name_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.434-04:00" + }, + { + "id": "ae7c6d6d-5c85-465c-9bef-492033830fd9", + "created_at": "2026-05-22T08:38:10.711-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f85d2444-db84-4e5c-9f52-f637600b3d27", + "direction": "outgoing", + "index": 112418, + "result_id": "ae7c6d6d-5c85-465c-9bef-492033830fd9", + "status": 200, + "timestamp": "2026-05-22T08:38:10.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819", + "verb": "get" + }, + { + "id": "3af7f4ca-1058-4dca-8b9d-82c56c52d030", + "direction": "outgoing", + "index": 112419, + "result_id": "ae7c6d6d-5c85-465c-9bef-492033830fd9", + "status": 200, + "timestamp": "2026-05-22T08:38:10.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner-us_core_v311_practitioner_identifier_search_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.711-04:00" + }, + { + "id": "121c7eee-f4cb-46d2-85f4-e22b23937753", + "created_at": "2026-05-22T08:38:10.772-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner-us_core_v311_practitioner_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.772-04:00" + }, + { + "id": "c0bbbb49-d3dc-4ad3-a6b2-894bcf99c7b1", + "created_at": "2026-05-22T08:38:10.776-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner-us_core_v311_practitioner_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.776-04:00" + }, + { + "id": "fda49dc9-afa8-433f-9a39-f47819199308", + "created_at": "2026-05-22T08:38:10.778-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_practitioner", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.778-04:00" + }, + { + "id": "78bece45-6e0d-4c91-81d8-15917bf0f7f8", + "created_at": "2026-05-22T08:38:10.947-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3c607f2c-16bd-4e0b-92c0-b98fe4ff6c82", + "direction": "outgoing", + "index": 112420, + "result_id": "78bece45-6e0d-4c91-81d8-15917bf0f7f8", + "status": 200, + "timestamp": "2026-05-22T08:38:10.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_provenance-us_core_v311_provenance_read_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:10.947-04:00" + }, + { + "id": "865557c7-0b34-4113-a5cc-7191f4a061a3", + "created_at": "2026-05-22T08:38:14.776-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_provenance-us_core_v311_provenance_validation_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:14.776-04:00" + }, + { + "id": "22684c90-df5d-4d3a-a1d3-2d0aa318ac89", + "created_at": "2026-05-22T08:38:14.887-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_provenance-us_core_v311_provenance_must_support_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:14.887-04:00" + }, + { + "id": "1c044cbb-5340-4fe4-9984-af17c212bb58", + "created_at": "2026-05-22T08:38:15.127-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9d8a0d3f-edf2-45d6-b589-704fa9569534", + "direction": "outgoing", + "index": 112421, + "result_id": "1c044cbb-5340-4fe4-9984-af17c212bb58", + "status": 200, + "timestamp": "2026-05-22T08:38:15.130-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_provenance-us_core_v311_provenance_reference_resolution_test", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:15.127-04:00" + }, + { + "id": "896f6302-b50d-4ec8-9158-d24549ab8c71", + "created_at": "2026-05-22T08:38:15.147-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_provenance", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:15.147-04:00" + }, + { + "id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "created_at": "2026-05-22T08:38:19.243-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9123e00d-1cae-4454-83bf-adf2754f70e0", + "direction": "outgoing", + "index": 112422, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "1a9325ad-c8f8-42d9-83a2-0c46a9226ad0", + "direction": "outgoing", + "index": 112423, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3a4cc8e8-e3e1-49b4-9163-5da5ff2505bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b6a0e1ec-e532-4c8a-a1bf-30081ebf7291", + "direction": "outgoing", + "index": 112424, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3a4cc8e8-e3e1-49b4-9163-5da5ff2505bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3e4e45c2-1c90-4f39-a270-08c91fb32635", + "direction": "outgoing", + "index": 112425, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "f82c6762-c1d4-4079-b641-88ae37b6e31a", + "direction": "outgoing", + "index": 112426, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=be30d849-280e-4a02-b70c-aead7721250b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "82e9c4f0-f9a2-41df-bce4-795ba2c8a24f", + "direction": "outgoing", + "index": 112427, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.336-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "6138c345-4c32-4d70-808b-6cf2e22c46d8", + "direction": "outgoing", + "index": 112428, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.350-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a19eb186-0b28-4f86-97ea-8d58053f1eab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "270570d6-c7a2-4e91-af2a-1c3722d02b78", + "direction": "outgoing", + "index": 112429, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a19eb186-0b28-4f86-97ea-8d58053f1eab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ab9a58e2-9048-405b-9f5e-9f1d49c64b66", + "direction": "outgoing", + "index": 112430, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.377-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "ffa0b71b-40d8-4740-be6a-f7b322bf6626", + "direction": "outgoing", + "index": 112431, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=91cfbbdb-5d8c-4398-a20c-8e493f173bf5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0583dc35-2034-484f-88bb-43515db70763", + "direction": "outgoing", + "index": 112432, + "result_id": "b5fb5d33-d165-494f-9bd4-50d6e95193da", + "status": 200, + "timestamp": "2026-05-22T08:38:19.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=91cfbbdb-5d8c-4398-a20c-8e493f173bf5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_clinical_notes_guidance-us_core_clinical_note_types", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.243-04:00" + }, + { + "id": "c6d338fe-f13b-4cc4-a2a2-20ecda569bcb", + "created_at": "2026-05-22T08:38:19.415-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_clinical_notes_guidance-us_core_clinical_note_attachments", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.415-04:00" + }, + { + "id": "cc5cf900-f8c9-486b-b2d2-753dfa553997", + "created_at": "2026-05-22T08:38:19.417-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_v311_clinical_notes_guidance", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.417-04:00" + }, + { + "id": "8f5063fe-ad67-49b4-b662-4629283c267d", + "created_at": "2026-05-22T08:38:19.425-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.425-04:00" + }, + { + "id": "9f3af9ff-c730-49df-9945-e421c4d9d0c9", + "created_at": "2026-05-22T08:38:19.427-04:00", + "inputs": [ + { + "name": "dar_code_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v311-us_core_v311_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.427-04:00" + }, + { + "id": "0748e708-5855-42ef-856e-3d3e24a4f388", + "created_at": "2026-05-22T08:38:19.428-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "dar_code_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api-us_core_311_data_absent_reason", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.428-04:00" + }, + { + "id": "47447ea5-c22f-4b18-9e85-1da08ffbb773", + "created_at": "2026-05-22T08:38:19.436-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:33:24-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v311-us_core_v311_fhir_api", + "test_run_id": "33eb8a13-a97f-491e-b689-082d12e50c80", + "test_session_id": "kiYqDCpX0Xr", + "updated_at": "2026-05-22T08:38:19.436-04:00" + } +] \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_400.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_400.yaml new file mode 100644 index 000000000..c28c8fad7 --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_400.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v400 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 4.0.0 session created + status: created + start_run: + runnable: 2 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 2 US Core FHIR API + + - state_description: Finished Group 2 US Core FHIR API + status: done + last_completed: 2 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_400_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_400_expected.json new file mode 100644 index 000000000..a68fd609f --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_400_expected.json @@ -0,0 +1 @@ +[{"id":"0d9bfafb-543d-43db-abae-c35f9979790f","created_at":"2026-05-22T11:00:31.681-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-standalone_auth_tls","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:31.681-04:00"},{"id":"6c304b82-7eaa-4390-9031-8b7aeabf9e91","created_at":"2026-05-22T11:00:32.362-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[4].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-coverage'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[4].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-coverage-patient'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[14].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationdispense'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-status'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-type'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[2].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-patient'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[23]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sexual-orientation'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[28]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancystatus'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[29]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancyintent'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[30]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-occupation'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[31]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[32]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[33]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[34]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[35]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[36]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-average-blood-pressure'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-servicerequest'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-status'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-patient'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[2].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-category'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[3].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-code'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[4].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-authored'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[23].searchParam[5].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-servicerequest-id'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[24].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-specimen'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-id'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-patient'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[25].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-relatedperson'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[25].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-relatedperson-id'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[25].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-relatedperson-patient'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[{"id":"93083530-008e-447f-b79f-f5e877438be1","direction":"outgoing","index":118514,"result_id":"6c304b82-7eaa-4390-9031-8b7aeabf9e91","status":200,"timestamp":"2026-05-22T11:00:32.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-us_core_conformance_support","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.362-04:00"},{"id":"ec498411-8a6e-48f8-93f6-6d3b7a15518c","created_at":"2026-05-22T11:00:32.601-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-us_core_fhir_version","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.601-04:00"},{"id":"e153fec8-6b60-4f3a-b972-e745691596f9","created_at":"2026-05-22T11:00:32.631-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"93083530-008e-447f-b79f-f5e877438be1","direction":"outgoing","index":118514,"result_id":"6c304b82-7eaa-4390-9031-8b7aeabf9e91","status":200,"timestamp":"2026-05-22T11:00:32.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-us_core_json_support","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.631-04:00"},{"id":"e8616ad8-56e9-4683-a01a-8a563ca4ed19","created_at":"2026-05-22T11:00:32.645-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"93083530-008e-447f-b79f-f5e877438be1","direction":"outgoing","index":118514,"result_id":"6c304b82-7eaa-4390-9031-8b7aeabf9e91","status":200,"timestamp":"2026-05-22T11:00:32.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-us_core_profile_support","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.645-04:00"},{"id":"d8339c01-86ef-4635-bc0b-826eb740779a","created_at":"2026-05-22T11:00:32.657-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"93083530-008e-447f-b79f-f5e877438be1","direction":"outgoing","index":118514,"result_id":"6c304b82-7eaa-4390-9031-8b7aeabf9e91","status":200,"timestamp":"2026-05-22T11:00:32.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement-us_core_instantiate","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.657-04:00"},{"id":"74532cb0-dbdb-4f50-a966-e3d66036de82","created_at":"2026-05-22T11:00:32.660-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_capability_statement","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:32.660-04:00"},{"id":"56fec1f9-6881-4691-b135-5919cf819b52","created_at":"2026-05-22T11:00:33.070-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"47c72ff0-6cee-43e2-9f49-dcf6d2658dec","direction":"outgoing","index":118515,"result_id":"56fec1f9-6881-4691-b135-5919cf819b52","status":200,"timestamp":"2026-05-22T11:00:33.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85","verb":"get"},{"id":"c05c1b14-16a7-4d5e-a390-18f8cbc24bfe","direction":"outgoing","index":118516,"result_id":"56fec1f9-6881-4691-b135-5919cf819b52","status":200,"timestamp":"2026-05-22T11:00:33.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/_search","verb":"post"},{"id":"3bbc8c4c-1dfc-4c61-a230-8e096bfb0dd9","direction":"outgoing","index":118517,"result_id":"56fec1f9-6881-4691-b135-5919cf819b52","status":200,"timestamp":"2026-05-22T11:00:33.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient__id_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:33.070-04:00"},{"id":"55c338a7-29af-4c0b-9e68-d3dc56c1787e","created_at":"2026-05-22T11:00:33.377-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cbf2140c-724f-474a-b51f-4debd1d77fa1","direction":"outgoing","index":118518,"result_id":"55c338a7-29af-4c0b-9e68-d3dc56c1787e","status":200,"timestamp":"2026-05-22T11:00:33.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"},{"id":"2fd08fe6-c91a-451d-8875-873d0e708522","direction":"outgoing","index":118519,"result_id":"55c338a7-29af-4c0b-9e68-d3dc56c1787e","status":200,"timestamp":"2026-05-22T11:00:33.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_identifier_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:33.377-04:00"},{"id":"de0d2b28-271e-42b1-9056-6d61d104206d","created_at":"2026-05-22T11:00:33.533-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"92f142c0-709c-4c95-8fd1-63fcb706d2a9","direction":"outgoing","index":118520,"result_id":"de0d2b28-271e-42b1-9056-6d61d104206d","status":200,"timestamp":"2026-05-22T11:00:33.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_name_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:33.533-04:00"},{"id":"6c1ba11a-56aa-49bc-b5f7-9e43a27d635c","created_at":"2026-05-22T11:00:33.686-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1ee276b4-1c94-4f53-ab8e-37705e8fcd15","direction":"outgoing","index":118521,"result_id":"6c1ba11a-56aa-49bc-b5f7-9e43a27d635c","status":200,"timestamp":"2026-05-22T11:00:33.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_family_gender_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:33.686-04:00"},{"id":"f496a693-8457-4f52-ac36-c442d843a3b0","created_at":"2026-05-22T11:00:33.853-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7db7e68d-d3d7-45ca-a59d-16f8b9af7b86","direction":"outgoing","index":118522,"result_id":"f496a693-8457-4f52-ac36-c442d843a3b0","status":200,"timestamp":"2026-05-22T11:00:33.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_birthdate_family_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:33.853-04:00"},{"id":"06a88b56-326a-4cdd-a7c9-ea6ac808ba86","created_at":"2026-05-22T11:00:34.004-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"784092a7-edff-452b-9f5d-9784e76220e7","direction":"outgoing","index":118523,"result_id":"06a88b56-326a-4cdd-a7c9-ea6ac808ba86","status":200,"timestamp":"2026-05-22T11:00:34.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_birthdate_name_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:34.004-04:00"},{"id":"1fbdddf0-52f9-40a8-87f1-6e17b8be05a9","created_at":"2026-05-22T11:00:34.162-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"895f4562-44f4-4008-9372-69be60b1696a","direction":"outgoing","index":118524,"result_id":"1fbdddf0-52f9-40a8-87f1-6e17b8be05a9","status":200,"timestamp":"2026-05-22T11:00:34.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_gender_name_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:34.162-04:00"},{"id":"facb4849-a9bf-449d-8a69-11e5f410999b","created_at":"2026-05-22T11:00:34.299-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f71fd658-84d3-48ec-99ab-1a2820dd12f4","direction":"outgoing","index":118525,"result_id":"facb4849-a9bf-449d-8a69-11e5f410999b","status":200,"timestamp":"2026-05-22T11:00:34.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:34.299-04:00"},{"id":"f52a4a85-63b5-4924-88fd-e5d62281105a","created_at":"2026-05-22T11:00:34.717-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"44ea76d7-ab25-4e8c-aaa0-b81a97642534","direction":"outgoing","index":118526,"result_id":"f52a4a85-63b5-4924-88fd-e5d62281105a","status":200,"timestamp":"2026-05-22T11:00:34.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target","verb":"get"},{"id":"5513a0a6-ca08-4f8d-a207-0b357090c090","direction":"outgoing","index":118527,"result_id":"f52a4a85-63b5-4924-88fd-e5d62281105a","status":200,"timestamp":"2026-05-22T11:00:34.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:34.717-04:00"},{"id":"682a306d-ee06-4c70-9d0b-125a35083276","created_at":"2026-05-22T11:00:35.777-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"},{"message":"Patient/355: Patient.extension[3]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Patient/355: Patient.extension[3]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation","type":"info"},{"message":"Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:35.777-04:00"},{"id":"7cf49704-214c-448a-961c-fa03959c4cf7","created_at":"2026-05-22T11:00:35.790-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient-us_core_v400_patient_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:35.790-04:00"},{"id":"d99054b0-c178-4f11-89af-7e5f2adf623f","created_at":"2026-05-22T11:00:35.791-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_patient","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:35.791-04:00"},{"id":"38d92447-2c3b-4e19-87f9-b5e7946e9569","created_at":"2026-05-22T11:00:36.409-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"16fdb52b-e1b1-48b2-be2d-b04a1add9c7f","direction":"outgoing","index":118528,"result_id":"38d92447-2c3b-4e19-87f9-b5e7946e9569","status":200,"timestamp":"2026-05-22T11:00:36.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85","verb":"get"},{"id":"c9b6b093-e0ae-4cf8-97ae-4048cd61314d","direction":"outgoing","index":118529,"result_id":"38d92447-2c3b-4e19-87f9-b5e7946e9569","status":200,"timestamp":"2026-05-22T11:00:36.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355","verb":"get"},{"id":"11c0c209-72e5-407e-80f2-3527442b838b","direction":"outgoing","index":118530,"result_id":"38d92447-2c3b-4e19-87f9-b5e7946e9569","status":200,"timestamp":"2026-05-22T11:00:36.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search","verb":"post"},{"id":"fbdb61f1-03b9-4ce5-9b9b-b6b24cfbdc22","direction":"outgoing","index":118531,"result_id":"38d92447-2c3b-4e19-87f9-b5e7946e9569","status":200,"timestamp":"2026-05-22T11:00:36.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:36.409-04:00"},{"id":"4964c06a-493b-47af-b986-47e5ec2dd209","created_at":"2026-05-22T11:00:36.713-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"732576fd-458d-4b29-821a-caf5de08aeb7","direction":"outgoing","index":118532,"result_id":"4964c06a-493b-47af-b986-47e5ec2dd209","status":200,"timestamp":"2026-05-22T11:00:36.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355","verb":"get"},{"id":"2fce35f4-c833-4f8f-89fa-af2415ea2329","direction":"outgoing","index":118533,"result_id":"4964c06a-493b-47af-b986-47e5ec2dd209","status":200,"timestamp":"2026-05-22T11:00:36.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_patient_clinical_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:36.713-04:00"},{"id":"ad3aebb9-4cc4-4f40-b2b2-2e8668127188","created_at":"2026-05-22T11:00:36.875-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c534b307-1aa4-472d-94ce-24cc2a6e5028","direction":"outgoing","index":118534,"result_id":"ad3aebb9-4cc4-4f40-b2b2-2e8668127188","status":200,"timestamp":"2026-05-22T11:00:36.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:36.875-04:00"},{"id":"dcbf8af2-c5f5-438f-876d-1ca1cafee031","created_at":"2026-05-22T11:00:37.254-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fcdcc765-c6d1-4f1d-b31d-129e963b6c01","direction":"outgoing","index":118535,"result_id":"dcbf8af2-c5f5-438f-876d-1ca1cafee031","status":200,"timestamp":"2026-05-22T11:00:37.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"19540fd3-b642-480b-b5df-1bb4d5391f78","direction":"outgoing","index":118536,"result_id":"dcbf8af2-c5f5-438f-876d-1ca1cafee031","status":200,"timestamp":"2026-05-22T11:00:37.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:37.254-04:00"},{"id":"2eab9098-2ff6-4283-adae-4b298215e6a4","created_at":"2026-05-22T11:00:40.865-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)","type":"warning"},{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20180503), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:40.865-04:00"},{"id":"87d30077-3f45-442f-bab9-a963672aba43","created_at":"2026-05-22T11:00:40.888-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:40.888-04:00"},{"id":"65064d69-abdd-4974-977f-dd21b9047844","created_at":"2026-05-22T11:00:41.053-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bc27bbdb-acae-4b9b-8449-5482bbbb244b","direction":"outgoing","index":118537,"result_id":"65064d69-abdd-4974-977f-dd21b9047844","status":200,"timestamp":"2026-05-22T11:00:41.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance-us_core_v400_allergy_intolerance_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:41.053-04:00"},{"id":"47f546dc-d4be-4ce1-97ec-92bce479a9e2","created_at":"2026-05-22T11:00:41.068-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_allergy_intolerance","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:41.068-04:00"},{"id":"c605229e-2738-4dc9-b168-8291255c02f8","created_at":"2026-05-22T11:00:42.680-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6737d39e-bea8-459b-a93f-b838e2a0265a","direction":"outgoing","index":118538,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85","verb":"get"},{"id":"76b228e4-3e45-4598-aa94-3036bb83dd4c","direction":"outgoing","index":118539,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/_search","verb":"post"},{"id":"0c8cc6ea-b2ea-4636-bf98-3eed6bee81b3","direction":"outgoing","index":118540,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85","verb":"get"},{"id":"5d58bc61-01ba-4ee8-b893-1600b535f038","direction":"outgoing","index":118541,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85","verb":"get"},{"id":"6fdb0138-2355-4f75-88bc-8a601d777376","direction":"outgoing","index":118542,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355","verb":"get"},{"id":"6d229d3d-9f4b-464e-86d1-0f3303e81f19","direction":"outgoing","index":118543,"result_id":"c605229e-2738-4dc9-b168-8291255c02f8","status":200,"timestamp":"2026-05-22T11:00:42.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=42aca390-537f-45c5-a6fa-c145bb2f1436\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:42.680-04:00"},{"id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","created_at":"2026-05-22T11:00:44.096-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f68c0e0a-1c6d-4a7f-bc9b-22f7d3423a7d","direction":"outgoing","index":118544,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"0d526245-8ad7-4403-9ef6-538bdc87588f","direction":"outgoing","index":118545,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"a8012142-bbaa-4b32-ac19-04cebee36214","direction":"outgoing","index":118546,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"9e4b6ab8-e546-4d05-98d5-772cdaa00e2d","direction":"outgoing","index":118547,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"b8763340-678d-4bed-8f75-4b084cd8c194","direction":"outgoing","index":118548,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"aaf1b6da-b37b-4b8a-af6e-1f0d7418d899","direction":"outgoing","index":118549,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"89a3612b-9a8b-4fd9-9dc5-958c9fa80af3","direction":"outgoing","index":118550,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active","verb":"get"},{"id":"0e4dedf3-cf32-4e77-9d31-a65fc62015b5","direction":"outgoing","index":118551,"result_id":"c0a21db8-2052-4c57-b005-22ffd134b8d4","status":200,"timestamp":"2026-05-22T11:00:44.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_patient_category_status_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:44.096-04:00"},{"id":"9e87c7d6-7a1f-496d-88c6-5151bed9f85b","created_at":"2026-05-22T11:00:44.864-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"de2373d1-d87f-4735-a64f-40153440396b","direction":"outgoing","index":118552,"result_id":"9e87c7d6-7a1f-496d-88c6-5151bed9f85b","status":200,"timestamp":"2026-05-22T11:00:44.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"ad9f9515-8045-4298-b974-d28eb941a657","direction":"outgoing","index":118553,"result_id":"9e87c7d6-7a1f-496d-88c6-5151bed9f85b","status":200,"timestamp":"2026-05-22T11:00:44.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"ab05ea9d-78b3-4352-94ea-37d13414ef84","direction":"outgoing","index":118554,"result_id":"9e87c7d6-7a1f-496d-88c6-5151bed9f85b","status":200,"timestamp":"2026-05-22T11:00:44.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active","verb":"get"},{"id":"a416d959-9300-4c9b-b6a8-498353ba2b26","direction":"outgoing","index":118555,"result_id":"9e87c7d6-7a1f-496d-88c6-5151bed9f85b","status":200,"timestamp":"2026-05-22T11:00:44.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:44.864-04:00"},{"id":"37b3655d-5e85-42ad-81a5-ef08d369576c","created_at":"2026-05-22T11:00:46.861-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"dbed11f6-cc36-47c6-b706-4b8adc536ae5","direction":"outgoing","index":118556,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"101e2059-3420-4284-a938-b40e09d8feb0","direction":"outgoing","index":118557,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"ecdbe183-8055-4747-b480-1d3a898ad45a","direction":"outgoing","index":118558,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"284b5d1f-1914-4b41-b1f5-91f3c0d8a5f3","direction":"outgoing","index":118559,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"9c1370a7-1665-4bf6-a699-5d243c8ce302","direction":"outgoing","index":118560,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"ae84d03d-ec99-4d51-998f-0ab4172171c2","direction":"outgoing","index":118561,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"8fc7581c-19f8-44a0-8c97-e878ed8ec56d","direction":"outgoing","index":118562,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3d720d34-6ac3-4759-9768-c28542fb690c","direction":"outgoing","index":118563,"result_id":"37b3655d-5e85-42ad-81a5-ef08d369576c","status":200,"timestamp":"2026-05-22T11:00:46.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c902ab72-b61c-49db-9684-5f66720dbf70\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:46.861-04:00"},{"id":"f9b3d3fb-28f4-48bf-aad5-0857fde2ef5c","created_at":"2026-05-22T11:00:47.079-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c1ae2a19-75ea-46fa-990c-3d0cfb8c752b","direction":"outgoing","index":118564,"result_id":"f9b3d3fb-28f4-48bf-aad5-0857fde2ef5c","status":200,"timestamp":"2026-05-22T11:00:47.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:47.079-04:00"},{"id":"2dd07ceb-ec56-40f5-9d56-485213064a1e","created_at":"2026-05-22T11:00:48.244-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dc4fa120-9172-4200-979f-b02c5e17a4c4","direction":"outgoing","index":118565,"result_id":"2dd07ceb-ec56-40f5-9d56-485213064a1e","status":200,"timestamp":"2026-05-22T11:00:48.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85","verb":"get"},{"id":"382ae6dc-0a48-4ba3-b25a-abef2d3949b9","direction":"outgoing","index":118566,"result_id":"2dd07ceb-ec56-40f5-9d56-485213064a1e","status":200,"timestamp":"2026-05-22T11:00:48.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355","verb":"get"},{"id":"73976b9a-0169-4423-826c-182e956cbc21","direction":"outgoing","index":118567,"result_id":"2dd07ceb-ec56-40f5-9d56-485213064a1e","status":200,"timestamp":"2026-05-22T11:00:48.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c72011d9-f68e-4c60-b04c-80398bb65784\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:48.244-04:00"},{"id":"1b5c4343-623b-47d0-a5ee-3f9c9de7afa9","created_at":"2026-05-22T11:00:56.992-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:56.992-04:00"},{"id":"f3da9d22-def0-44f9-b54f-d7efd3dca789","created_at":"2026-05-22T11:00:57.040-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:57.040-04:00"},{"id":"a87e4e5f-fbbb-4fe5-b448-1ce27b8aa227","created_at":"2026-05-22T11:00:57.199-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d2f32f5c-f72f-4f55-91bf-c6afc6c3042a","direction":"outgoing","index":118568,"result_id":"a87e4e5f-fbbb-4fe5-b448-1ce27b8aa227","status":200,"timestamp":"2026-05-22T11:00:57.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan-us_core_v400_care_plan_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:57.199-04:00"},{"id":"8d1fe531-e5fe-4a98-97fa-6f38391a5784","created_at":"2026-05-22T11:00:57.220-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_plan","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:57.220-04:00"},{"id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","created_at":"2026-05-22T11:00:59.649-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fabffd8a-3308-48da-b5cf-c300bfbf26ea","direction":"outgoing","index":118569,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed","verb":"get"},{"id":"a17aabfd-d983-4d65-a1ef-a6734a00ab0d","direction":"outgoing","index":118570,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active","verb":"get"},{"id":"ab0c2b60-16b7-49f1-9de3-97487deea9ed","direction":"outgoing","index":118571,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/_search","verb":"post"},{"id":"64d71eb8-9daa-416d-896b-e77c8af1b1ae","direction":"outgoing","index":118572,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active","verb":"get"},{"id":"d58028ba-af66-488e-8d2f-ea49d3aed786","direction":"outgoing","index":118573,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended","verb":"get"},{"id":"8e1d9c8a-2532-4414-b47b-637340a364a5","direction":"outgoing","index":118574,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive","verb":"get"},{"id":"2593aaf6-d0dc-4954-aa69-59888cd7bda1","direction":"outgoing","index":118575,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error","verb":"get"},{"id":"526e6a8c-a212-4e42-ae6c-438cf97c241c","direction":"outgoing","index":118576,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed","verb":"get"},{"id":"0ad74101-cb9a-4b02-b022-b8c49445f633","direction":"outgoing","index":118577,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active","verb":"get"},{"id":"16d93305-a446-4e1a-a529-8b932a58fbb0","direction":"outgoing","index":118578,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended","verb":"get"},{"id":"ba7ef6cf-3667-4016-b982-ac94d13672a0","direction":"outgoing","index":118579,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive","verb":"get"},{"id":"da8806de-da2a-4dc2-acf3-2aaa7d4fe508","direction":"outgoing","index":118580,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59d9e90d-7868-4365-9408-72ed861a4d13\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90d790f5-a184-416e-9c74-3052cf7318ca","direction":"outgoing","index":118581,"result_id":"50f6ff83-dbf6-4f47-8a16-83cc81bd99e6","status":200,"timestamp":"2026-05-22T11:00:59.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:59.649-04:00"},{"id":"40ab9572-2c04-4bba-945e-1d44924db6be","created_at":"2026-05-22T11:00:59.945-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d83e240f-f865-4147-ba4c-f301401c4df5","direction":"outgoing","index":118582,"result_id":"40ab9572-2c04-4bba-945e-1d44924db6be","status":200,"timestamp":"2026-05-22T11:00:59.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:00:59.945-04:00"},{"id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","created_at":"2026-05-22T11:01:02.345-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"65f75fce-e27b-460f-8c57-5740980aad3c","direction":"outgoing","index":118583,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed","verb":"get"},{"id":"589e26df-fed2-4eeb-8631-e7f8dd7cd3a8","direction":"outgoing","index":118584,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active","verb":"get"},{"id":"ae8f145f-1e49-4078-a41e-88106914f0fc","direction":"outgoing","index":118585,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended","verb":"get"},{"id":"7c544354-f999-4430-bb83-f6b93425d582","direction":"outgoing","index":118586,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive","verb":"get"},{"id":"d7fdb7d9-6861-40dc-a0d8-1d5aa89122fa","direction":"outgoing","index":118587,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error","verb":"get"},{"id":"1c61328a-ba61-4ac8-a6c1-6ab3fe8f3e38","direction":"outgoing","index":118588,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed","verb":"get"},{"id":"77ab121a-b64e-4172-919f-36253e2f8064","direction":"outgoing","index":118589,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active","verb":"get"},{"id":"7365bc48-cd42-42c1-837c-caf156983a64","direction":"outgoing","index":118590,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended","verb":"get"},{"id":"48196c67-381a-49c6-9a96-75af6b1dadc2","direction":"outgoing","index":118591,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive","verb":"get"},{"id":"eaabed4b-99e4-4767-9cf1-52ca17cda1c5","direction":"outgoing","index":118592,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1235118f-f5a3-4563-beb8-53b5f4c6050a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63494598-71b1-42bd-ac90-7f55993aa596","direction":"outgoing","index":118593,"result_id":"78e05a3f-5993-4547-bbd8-97d4e22709ab","status":200,"timestamp":"2026-05-22T11:01:02.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:02.345-04:00"},{"id":"4d11c85b-87d1-479c-8b90-8817cee5deef","created_at":"2026-05-22T11:01:06.345-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:06.345-04:00"},{"id":"6e0921d4-152c-4a4b-8832-2e4c8aff27fc","created_at":"2026-05-22T11:01:06.439-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:06.439-04:00"},{"id":"3a67cbd6-30fe-46d5-9847-9629af344f9c","created_at":"2026-05-22T11:01:06.730-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a14f45fa-644a-494d-97af-6558b1c92601","direction":"outgoing","index":118594,"result_id":"3a67cbd6-30fe-46d5-9847-9629af344f9c","status":200,"timestamp":"2026-05-22T11:01:06.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"a0b8b499-1fa4-4c20-8016-3a5c820aeab4","direction":"outgoing","index":118595,"result_id":"3a67cbd6-30fe-46d5-9847-9629af344f9c","status":200,"timestamp":"2026-05-22T11:01:06.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team-us_core_v400_care_team_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:06.730-04:00"},{"id":"eb47b5d1-45d0-47ca-b3a3-979e3fa8eb4d","created_at":"2026-05-22T11:01:06.771-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_care_team","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:06.771-04:00"},{"id":"e89a80fd-a4b0-4627-b80f-9945c800edca","created_at":"2026-05-22T11:01:09.942-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c617b556-2745-4e46-98a1-f8edc7d2f0ed","direction":"outgoing","index":118596,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:09.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"67f108f4-2c11-4215-ab30-b473d10e3b1b","direction":"outgoing","index":118597,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:09.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ff206d81-cbb5-427d-848b-05dda8aa6d1c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ee42d89-11dc-4af9-80da-58ec1f2777e1","direction":"outgoing","index":118598,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:09.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"18a41844-37ea-4786-b173-93cd128dadbc","direction":"outgoing","index":118599,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:09.991-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ff206d81-cbb5-427d-848b-05dda8aa6d1c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"798e49c5-069c-4569-b179-eeef9a326176","direction":"outgoing","index":118600,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=Patient/85","verb":"get"},{"id":"1b65a4b9-3dca-4eea-93d7-c017e30a2132","direction":"outgoing","index":118601,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a0b1ccf-6289-486f-a0e4-3ac837c7bb02\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96c5d838-bcf1-4df3-bb61-e2c58e390920","direction":"outgoing","index":118602,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"60a96da0-2f22-4e0b-aec2-6efdd592029d","direction":"outgoing","index":118603,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b520ca5-a240-4e89-b43a-a51c7af15f4e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e138438-7521-401f-b027-392355111067","direction":"outgoing","index":118604,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b520ca5-a240-4e89-b43a-a51c7af15f4e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2113c70-9b33-4fe4-9bb2-f789731d562e","direction":"outgoing","index":118605,"result_id":"e89a80fd-a4b0-4627-b80f-9945c800edca","status":200,"timestamp":"2026-05-22T11:01:10.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b520ca5-a240-4e89-b43a-a51c7af15f4e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:09.942-04:00"},{"id":"26151843-54da-4ddb-8b70-b4d0b0e56887","created_at":"2026-05-22T11:01:10.475-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"692b92b0-0ae9-4250-9959-b2fba36b4d3f","direction":"outgoing","index":118606,"result_id":"26151843-54da-4ddb-8b70-b4d0b0e56887","status":200,"timestamp":"2026-05-22T11:01:10.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"8ed9a3e6-a4af-40fe-a211-fa596d2906c2","direction":"outgoing","index":118607,"result_id":"26151843-54da-4ddb-8b70-b4d0b0e56887","status":200,"timestamp":"2026-05-22T11:01:10.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"a6c6f525-58d5-4959-b606-ebe783fa37aa","direction":"outgoing","index":118608,"result_id":"26151843-54da-4ddb-8b70-b4d0b0e56887","status":200,"timestamp":"2026-05-22T11:01:10.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:10.475-04:00"},{"id":"330c3145-091b-44c0-ac53-2f04f03ca896","created_at":"2026-05-22T11:01:12.797-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bb3355f4-f95d-459a-b0c8-d85fa1e47c3a","direction":"outgoing","index":118609,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"29b2ccc0-4b62-4be2-bfdb-8d035be6c000","direction":"outgoing","index":118610,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"d8859920-0da3-4061-a4c9-a670cc53aef5","direction":"outgoing","index":118611,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=893a3f53-ef3d-4253-adfa-6ff30e09ba38\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2377d5da-dc21-4ecf-8ad8-254054e66583","direction":"outgoing","index":118612,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7d067b43-29ec-4af1-8a4c-a5284d212601","direction":"outgoing","index":118613,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ede3790-83c8-4827-8d76-f22f7c5426d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"228566ab-7e5e-4379-a414-005fe8d3c623","direction":"outgoing","index":118614,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"5e9fd9ad-09f5-468f-b12c-499607fc0db7","direction":"outgoing","index":118615,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7105809c-2c08-444b-b5bc-9d145a3b0613","direction":"outgoing","index":118616,"result_id":"330c3145-091b-44c0-ac53-2f04f03ca896","status":200,"timestamp":"2026-05-22T11:01:12.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_patient_onset_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:12.797-04:00"},{"id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","created_at":"2026-05-22T11:01:14.602-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c8df94de-6ad4-4726-b9b8-133dc7756eb1","direction":"outgoing","index":118617,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"c8545b91-ebe1-48b4-925a-41b76d891f56","direction":"outgoing","index":118618,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cc0c12bb-479f-4bd8-891b-5dd58e1bc3f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a75f1f0d-614e-4798-8a7e-160d7106a02b","direction":"outgoing","index":118619,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"50c30a5c-86d9-465d-b4c2-7c8155d81663","direction":"outgoing","index":118620,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c8c7fa46-e8fc-4c10-bb14-a233a32b714c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b33fb67d-e12b-42bb-86e0-ffdad1b0b3e5","direction":"outgoing","index":118621,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.670-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"7b0c129a-d065-4f2f-a2b5-ecd3bed8b71c","direction":"outgoing","index":118622,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7cc7166e-1a7e-403d-996d-b763ee76b25b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae84939a-4c53-4781-97d4-5c58debfa6e3","direction":"outgoing","index":118623,"result_id":"d03ee50f-09d4-4d39-8821-6543efdfd1f5","status":200,"timestamp":"2026-05-22T11:01:14.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7cc7166e-1a7e-403d-996d-b763ee76b25b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_patient_clinical_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:14.602-04:00"},{"id":"260ea44e-196e-4595-871e-acf49f093cb7","created_at":"2026-05-22T11:01:16.404-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"49e5c8d8-9901-4137-8d9b-581c47bd90aa","direction":"outgoing","index":118624,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"5fd8b383-2c8c-42e8-bfd8-515f28fa3483","direction":"outgoing","index":118625,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f407c156-2973-4bdd-b879-b1f1101f55fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5114d8e3-9c0a-4423-be27-607e44a0d276","direction":"outgoing","index":118626,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"e4a2b063-aee3-4b0c-8e19-d6d2aee9bc6d","direction":"outgoing","index":118627,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=34de051c-661f-4948-98fa-1dc340bed691\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"360ffdbe-ebe0-42f3-ab1b-39bcae1754ab","direction":"outgoing","index":118628,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"7ecc23e1-e743-467d-8736-0f17e9e3b797","direction":"outgoing","index":118629,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f2f44a7-d8a8-4caa-9bf2-3a2093d97098\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8711c5d0-64f7-4863-870d-666c164b9460","direction":"outgoing","index":118630,"result_id":"260ea44e-196e-4595-871e-acf49f093cb7","status":200,"timestamp":"2026-05-22T11:01:16.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f2f44a7-d8a8-4caa-9bf2-3a2093d97098\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:16.404-04:00"},{"id":"5e9a10d4-4089-44a1-acf0-d0ebe4f62a67","created_at":"2026-05-22T11:01:16.630-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d19c0fcd-dacb-4022-9201-1ff8e69e7b75","direction":"outgoing","index":118631,"result_id":"5e9a10d4-4089-44a1-acf0-d0ebe4f62a67","status":200,"timestamp":"2026-05-22T11:01:16.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:16.630-04:00"},{"id":"d801fe6a-0b97-4015-b69f-6d27210c6862","created_at":"2026-05-22T11:01:18.885-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"506a2c24-a779-4ec0-bf76-f356ec5a6215","direction":"outgoing","index":118632,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"43d32031-d386-4103-aa2f-c533ae538feb","direction":"outgoing","index":118633,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a083cffa-f14a-462b-aa2d-9afe05d9a158\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"33cba99b-b228-460e-8da8-c4cd871854c2","direction":"outgoing","index":118634,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"558b3fc9-801e-4c84-b6e5-935b4b00860e","direction":"outgoing","index":118635,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b6be61c0-083a-403e-91e5-9d64b3f1775a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"69247a02-d784-44eb-adfa-57c7d094634c","direction":"outgoing","index":118636,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b6be61c0-083a-403e-91e5-9d64b3f1775a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a7d72414-8939-4b8e-83ed-704280a74c45","direction":"outgoing","index":118637,"result_id":"d801fe6a-0b97-4015-b69f-6d27210c6862","status":200,"timestamp":"2026-05-22T11:01:18.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b6be61c0-083a-403e-91e5-9d64b3f1775a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:18.885-04:00"},{"id":"9b4d682c-c94b-4816-9e76-f308db8625c4","created_at":"2026-05-22T11:01:25.812-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition.category[0]: No code provided, and a code should be provided from the value set 'US Core Condition Category Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category|4.0.0)","type":"warning"},{"message":"Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8bc77674-5e5b-4bc8-8854-6a0905cd0199: Condition: Constraint failed: us-core-1: 'A code in Condition.category SHOULD be from US Core Condition Category Codes value set.' (Best Practice Recommendation)","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.code: None of the codings provided are in the value set 'US Core Condition Code' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-code|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#15777000)","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'","type":"info"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'US Core Condition Category Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: us-core-1: 'A code in Condition.category SHOULD be from US Core Condition Category Codes value set.' (Best Practice Recommendation)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns'","type":"info"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"}],"optional":false,"outputs":[{"name":"dar_extension_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:25.812-04:00"},{"id":"99254000-a2ae-43dd-8327-61b398dc7125","created_at":"2026-05-22T11:01:25.912-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:25.912-04:00"},{"id":"109e78f9-5644-4336-861c-48feecb060fe","created_at":"2026-05-22T11:01:25.914-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition-us_core_v400_condition_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:25.914-04:00"},{"id":"ff137a62-8056-4b51-a6de-2bbceb9432f2","created_at":"2026-05-22T11:01:25.917-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_condition","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:25.917-04:00"},{"id":"549ee1ee-22b2-4c2a-a53c-0b1ef5112b5a","created_at":"2026-05-22T11:01:26.456-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e3ad2ed0-3fea-4702-a39d-0691ec61adbc","direction":"outgoing","index":118638,"result_id":"549ee1ee-22b2-4c2a-a53c-0b1ef5112b5a","status":200,"timestamp":"2026-05-22T11:01:26.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=85","verb":"get"},{"id":"1cfc9b37-1f21-4203-8b40-1e47dbbadad4","direction":"outgoing","index":118639,"result_id":"549ee1ee-22b2-4c2a-a53c-0b1ef5112b5a","status":200,"timestamp":"2026-05-22T11:01:26.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355","verb":"get"},{"id":"e2f91188-2e81-4e9a-92eb-61b7dc2f074f","direction":"outgoing","index":118640,"result_id":"549ee1ee-22b2-4c2a-a53c-0b1ef5112b5a","status":200,"timestamp":"2026-05-22T11:01:26.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/_search","verb":"post"},{"id":"5e5ded40-1574-4ea3-8fd1-a5226c10ec9c","direction":"outgoing","index":118641,"result_id":"549ee1ee-22b2-4c2a-a53c-0b1ef5112b5a","status":200,"timestamp":"2026-05-22T11:01:26.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:26.456-04:00"},{"id":"c8fa300b-a3a5-4170-a61a-823f5d4a8eb7","created_at":"2026-05-22T11:01:26.779-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2b505a3a-4877-42b1-b19e-c618c672f7d5","direction":"outgoing","index":118642,"result_id":"c8fa300b-a3a5-4170-a61a-823f5d4a8eb7","status":200,"timestamp":"2026-05-22T11:01:26.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001","verb":"get"},{"id":"bd4cb98b-a63e-4131-a813-74e44848a823","direction":"outgoing","index":118643,"result_id":"c8fa300b-a3a5-4170-a61a-823f5d4a8eb7","status":200,"timestamp":"2026-05-22T11:01:26.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_patient_type_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:26.779-04:00"},{"id":"8f9d85aa-5322-4839-af25-794e0ad53519","created_at":"2026-05-22T11:01:26.936-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"da4a31a9-681b-4bb8-885e-8a54be8fc634","direction":"outgoing","index":118644,"result_id":"8f9d85aa-5322-4839-af25-794e0ad53519","status":200,"timestamp":"2026-05-22T11:01:26.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:26.936-04:00"},{"id":"233a4e11-c85d-4546-ae8c-17659d17814a","created_at":"2026-05-22T11:01:27.293-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"88868597-f9bd-4ec2-a222-80800e36188d","direction":"outgoing","index":118645,"result_id":"233a4e11-c85d-4546-ae8c-17659d17814a","status":200,"timestamp":"2026-05-22T11:01:27.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"fb64808c-bfd4-4f8a-80fa-736b27dbdec7","direction":"outgoing","index":118646,"result_id":"233a4e11-c85d-4546-ae8c-17659d17814a","status":200,"timestamp":"2026-05-22T11:01:27.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:27.293-04:00"},{"id":"9ec6111d-d5d9-4b8e-8d05-93f1b7a2cddf","created_at":"2026-05-22T11:01:27.547-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:27.547-04:00"},{"id":"cfb48d70-ded3-4ee1-8bb3-25c1cf14386c","created_at":"2026-05-22T11:01:27.558-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:27.558-04:00"},{"id":"7b853aa6-947d-4943-a97b-87ef8f7a82ee","created_at":"2026-05-22T11:01:27.564-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device-us_core_v400_device_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:27.564-04:00"},{"id":"6fd9a48e-a27c-44c2-b22a-87aa14fe899a","created_at":"2026-05-22T11:01:27.566-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_device","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:27.566-04:00"},{"id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","created_at":"2026-05-22T11:01:28.292-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0cf1f4eb-67a5-4cc5-b60a-ec11f332e70d","direction":"outgoing","index":118647,"result_id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","status":200,"timestamp":"2026-05-22T11:01:28.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85","verb":"get"},{"id":"d1c3f96a-9548-40e7-9568-080827cbf89b","direction":"outgoing","index":118648,"result_id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","status":200,"timestamp":"2026-05-22T11:01:28.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355","verb":"get"},{"id":"90b9debb-dde9-4ffd-b090-7619ebf5ef21","direction":"outgoing","index":118649,"result_id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","status":200,"timestamp":"2026-05-22T11:01:28.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"85aff5fa-39a4-42ac-abd9-aa68d1318e86","direction":"outgoing","index":118650,"result_id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","status":200,"timestamp":"2026-05-22T11:01:28.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355","verb":"get"},{"id":"2b18250d-b1d8-4725-899f-b39ffba6eff3","direction":"outgoing","index":118651,"result_id":"716b5a0d-436e-476e-97a4-f8eb5a811a07","status":200,"timestamp":"2026-05-22T11:01:28.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:28.292-04:00"},{"id":"5c40ae9a-226e-499d-b5da-908371d56919","created_at":"2026-05-22T11:01:30.280-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"584c75fc-d5c4-4bdb-86d2-800ac51da084","direction":"outgoing","index":118652,"result_id":"5c40ae9a-226e-499d-b5da-908371d56919","status":200,"timestamp":"2026-05-22T11:01:30.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"5f51b801-84d3-41ff-a83f-c97f34e93e8d","direction":"outgoing","index":118653,"result_id":"5c40ae9a-226e-499d-b5da-908371d56919","status":200,"timestamp":"2026-05-22T11:01:30.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e9f249d3-2ec6-4a62-a67e-ba770ec30ed7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dd0d1c3-4157-49bf-b45c-e6ec5be258aa","direction":"outgoing","index":118654,"result_id":"5c40ae9a-226e-499d-b5da-908371d56919","status":200,"timestamp":"2026-05-22T11:01:30.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"c3415c39-2210-4c0c-9d9e-6a489a2513c8","direction":"outgoing","index":118655,"result_id":"5c40ae9a-226e-499d-b5da-908371d56919","status":200,"timestamp":"2026-05-22T11:01:30.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3ce3787-ae2a-4b77-881d-6811a441ef12\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d6dad76-41d5-46ca-b320-48ebef4791d5","direction":"outgoing","index":118656,"result_id":"5c40ae9a-226e-499d-b5da-908371d56919","status":200,"timestamp":"2026-05-22T11:01:30.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3ce3787-ae2a-4b77-881d-6811a441ef12\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:30.280-04:00"},{"id":"a9f33d82-3159-4392-a8ad-34103a4083b8","created_at":"2026-05-22T11:01:31.215-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"edce02a3-fa81-45d8-9ca4-357e7f571905","direction":"outgoing","index":118657,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"76dac207-b39d-4cfd-b35f-536c8e53af83","direction":"outgoing","index":118658,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"859943fd-03fe-4eee-806d-ee98d86521e2","direction":"outgoing","index":118659,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0729712a-e602-4ecb-b43c-13811afefb32","direction":"outgoing","index":118660,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ad35246f-321c-4c46-83dc-f48ea3531801","direction":"outgoing","index":118661,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5ebb60c6-a151-49c9-a7ab-117e89e041ce","direction":"outgoing","index":118662,"result_id":"a9f33d82-3159-4392-a8ad-34103a4083b8","status":200,"timestamp":"2026-05-22T11:01:31.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:31.215-04:00"},{"id":"772399f3-4894-408a-8b79-24d41d507c5a","created_at":"2026-05-22T11:01:33.341-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"950b0aba-5ad2-4b86-8173-4be4334a380d","direction":"outgoing","index":118663,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"ccddd66a-b5fb-481e-b0b4-dd9c8a58f82f","direction":"outgoing","index":118664,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4892c3ed-56a6-4a2d-88de-995830f4c166\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"750ac662-af93-468e-b8b0-dd99926398f1","direction":"outgoing","index":118665,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4892c3ed-56a6-4a2d-88de-995830f4c166\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eed81f8b-86c4-45a8-8a40-70ec68a64555","direction":"outgoing","index":118666,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.395-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"22672408-c72d-4cbe-9e3a-3874d67ac5cd","direction":"outgoing","index":118667,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=38e135c7-0d83-42b2-aac0-6e9a3258593f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6efb873c-8873-4289-af0f-2175454575cd","direction":"outgoing","index":118668,"result_id":"772399f3-4894-408a-8b79-24d41d507c5a","status":200,"timestamp":"2026-05-22T11:01:33.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=38e135c7-0d83-42b2-aac0-6e9a3258593f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:33.341-04:00"},{"id":"916c4a28-5905-427b-b200-cd648566e756","created_at":"2026-05-22T11:01:34.276-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"763e5512-58b7-4e0f-8626-e03391815d10","direction":"outgoing","index":118669,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cd5f1f83-8023-4fea-a43b-5b6f080d2101","direction":"outgoing","index":118670,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"74aebd4a-6cb0-4e3c-b1cd-7b6664ceed38","direction":"outgoing","index":118671,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2d1f2dc5-63fa-4243-aac1-bbf8f5207cf3","direction":"outgoing","index":118672,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"af70298a-a360-4b70-8dff-afc33b55719e","direction":"outgoing","index":118673,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"addeb750-3333-49b9-a310-6fdeefa6f5bd","direction":"outgoing","index":118674,"result_id":"916c4a28-5905-427b-b200-cd648566e756","status":200,"timestamp":"2026-05-22T11:01:34.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:34.276-04:00"},{"id":"e4f0a567-96e7-4e05-ab2b-aed3221b5656","created_at":"2026-05-22T11:01:34.631-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8170d5c7-5bf1-4622-ace5-c76d860b7669","direction":"outgoing","index":118675,"result_id":"e4f0a567-96e7-4e05-ab2b-aed3221b5656","status":200,"timestamp":"2026-05-22T11:01:34.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355","verb":"get"},{"id":"891512e5-ead8-46ed-bf8e-d354edf939a8","direction":"outgoing","index":118676,"result_id":"e4f0a567-96e7-4e05-ab2b-aed3221b5656","status":200,"timestamp":"2026-05-22T11:01:34.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:34.631-04:00"},{"id":"1bd90519-24bf-4a8b-b7ff-b4132b3559d3","created_at":"2026-05-22T11:01:34.783-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"968e90b3-5614-4fe1-8a26-776ef4de36b3","direction":"outgoing","index":118677,"result_id":"1bd90519-24bf-4a8b-b7ff-b4132b3559d3","status":200,"timestamp":"2026-05-22T11:01:34.786-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:34.783-04:00"},{"id":"245e070f-4869-4031-b809-89e5f7fdc890","created_at":"2026-05-22T11:01:35.137-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cbef7de8-2aca-448a-b60c-234661c90283","direction":"outgoing","index":118678,"result_id":"245e070f-4869-4031-b809-89e5f7fdc890","status":200,"timestamp":"2026-05-22T11:01:35.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85","verb":"get"},{"id":"16209a97-fb2c-4d6f-9a45-4ede7b4f7b6f","direction":"outgoing","index":118679,"result_id":"245e070f-4869-4031-b809-89e5f7fdc890","status":200,"timestamp":"2026-05-22T11:01:35.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:35.137-04:00"},{"id":"98c866ce-b777-483d-b27d-f901cb6fd0b7","created_at":"2026-05-22T11:01:35.639-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:35.639-04:00"},{"id":"444c2bab-df96-4a69-9b6b-bd5802e55bb3","created_at":"2026-05-22T11:01:35.660-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:35.660-04:00"},{"id":"8d4f2b80-3187-4894-b26a-2db84b19d96e","created_at":"2026-05-22T11:01:36.573-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"56854564-406a-47bd-b17f-b014a39dc48f","direction":"outgoing","index":118680,"result_id":"8d4f2b80-3187-4894-b26a-2db84b19d96e","status":200,"timestamp":"2026-05-22T11:01:36.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"fc0574f2-0628-4347-a7dc-91046b09dc5d","direction":"outgoing","index":118681,"result_id":"8d4f2b80-3187-4894-b26a-2db84b19d96e","status":200,"timestamp":"2026-05-22T11:01:36.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"50f6ef3f-48d9-49ac-9e98-1db1e64fdf62","direction":"outgoing","index":118682,"result_id":"8d4f2b80-3187-4894-b26a-2db84b19d96e","status":200,"timestamp":"2026-05-22T11:01:36.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab-us_core_v400_diagnostic_report_lab_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:36.573-04:00"},{"id":"476cfad0-23b1-4682-b17b-18cc1eed88bf","created_at":"2026-05-22T11:01:36.640-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_lab","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:36.640-04:00"},{"id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","created_at":"2026-05-22T11:01:38.257-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3736267d-984b-4beb-b7b1-7b4852898fea","direction":"outgoing","index":118683,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85","verb":"get"},{"id":"2c463e46-dcfe-42fa-92b9-046202bcb092","direction":"outgoing","index":118684,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"95caac8c-896d-4845-95df-883f1baca942","direction":"outgoing","index":118685,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85","verb":"get"},{"id":"8ccb9804-8108-42a8-9810-0bd353040752","direction":"outgoing","index":118686,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85","verb":"get"},{"id":"e0afa22f-301a-429d-886a-4b61e1c24a44","direction":"outgoing","index":118687,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85","verb":"get"},{"id":"8c5ada93-9b5a-4d90-a406-aedb2a9662c1","direction":"outgoing","index":118688,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85","verb":"get"},{"id":"b4e5e0f1-e374-4b39-b4b4-a97ff1f1d0be","direction":"outgoing","index":118689,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355","verb":"get"},{"id":"2d0713be-7c7c-466f-bfdc-6c61c9d75842","direction":"outgoing","index":118690,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355","verb":"get"},{"id":"bb94926e-c9f6-49a4-97b7-c197391f9df0","direction":"outgoing","index":118691,"result_id":"b106e8ca-a219-4e72-8a26-b0f6b69e3b2b","status":200,"timestamp":"2026-05-22T11:01:38.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:38.257-04:00"},{"id":"e2c45337-2f30-4003-ac7a-6949748328d3","created_at":"2026-05-22T11:01:39.205-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e8ff8521-15f2-4988-9b8a-45c853523c6a","direction":"outgoing","index":118692,"result_id":"e2c45337-2f30-4003-ac7a-6949748328d3","status":200,"timestamp":"2026-05-22T11:01:39.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"2d79fe68-5450-47bf-94f8-f83f8a049cf2","direction":"outgoing","index":118693,"result_id":"e2c45337-2f30-4003-ac7a-6949748328d3","status":200,"timestamp":"2026-05-22T11:01:39.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e9f249d3-2ec6-4a62-a67e-ba770ec30ed7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"126975a1-3517-4e36-8292-c1b9bceec94d","direction":"outgoing","index":118694,"result_id":"e2c45337-2f30-4003-ac7a-6949748328d3","status":200,"timestamp":"2026-05-22T11:01:39.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"db719346-4b51-4985-96eb-9a16515c1719","direction":"outgoing","index":118695,"result_id":"e2c45337-2f30-4003-ac7a-6949748328d3","status":200,"timestamp":"2026-05-22T11:01:39.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3ce3787-ae2a-4b77-881d-6811a441ef12\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8d876fe-5c4e-4265-b503-a8b85432eff6","direction":"outgoing","index":118696,"result_id":"e2c45337-2f30-4003-ac7a-6949748328d3","status":200,"timestamp":"2026-05-22T11:01:39.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3ce3787-ae2a-4b77-881d-6811a441ef12\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:39.205-04:00"},{"id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","created_at":"2026-05-22T11:01:40.290-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d5f6a849-2757-4cbe-9f60-34bdd04e63ef","direction":"outgoing","index":118697,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"b4a8d9c6-f17c-4ef6-81cd-b9493a6525ee","direction":"outgoing","index":118698,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"5880b6f8-0f2d-47c1-8d25-bcbcf0786ca3","direction":"outgoing","index":118699,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"fc05cc5f-238a-40c4-bd11-4e0a1ae6de2b","direction":"outgoing","index":118700,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"531a7abc-3514-4832-8f68-b13c711d84e6","direction":"outgoing","index":118701,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"2df697a2-48d1-49d8-ae31-27332b05157b","direction":"outgoing","index":118702,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"22a37c89-feb0-4c41-b1ab-2200063b61ef","direction":"outgoing","index":118703,"result_id":"4ab20cf1-9b52-459e-854a-921b5f4ddd81","status":200,"timestamp":"2026-05-22T11:01:40.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:40.290-04:00"},{"id":"08894534-92ad-4eab-8c4b-df475ff591f3","created_at":"2026-05-22T11:01:42.807-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"21779003-971e-425c-9487-76949bc00948","direction":"outgoing","index":118704,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final","verb":"get"},{"id":"f52c541c-33ae-4ca7-948e-feb9d583eccb","direction":"outgoing","index":118705,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d768863c-938a-4bab-803e-427e1264172b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa5c149f-f090-468e-a729-bf870a1b7d7b","direction":"outgoing","index":118706,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.845-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"a11244f4-3db3-4676-8b01-7b923880e403","direction":"outgoing","index":118707,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4892c3ed-56a6-4a2d-88de-995830f4c166\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"efefdfe3-3651-4f4c-a9f9-12b27f62fbe5","direction":"outgoing","index":118708,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4892c3ed-56a6-4a2d-88de-995830f4c166\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bfe319b5-e73c-40c0-badb-4cfa708226c9","direction":"outgoing","index":118709,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"00d2bd58-c7c4-4764-803e-43192a3d545e","direction":"outgoing","index":118710,"result_id":"08894534-92ad-4eab-8c4b-df475ff591f3","status":200,"timestamp":"2026-05-22T11:01:42.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4288b319-a224-48a2-9272-523832dc7a25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:42.807-04:00"},{"id":"30c38648-1f94-42d6-bbbd-559f94cc28df","created_at":"2026-05-22T11:01:43.958-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3167ee4d-7583-4073-bd4f-d6fe749f1857","direction":"outgoing","index":118711,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:43.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a415007a-1cef-434a-b8bf-b28373e394de","direction":"outgoing","index":118712,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:43.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"6e5874f6-789c-496f-b38b-d88ac6e395a9","direction":"outgoing","index":118713,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:44.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8edb73c1-8b01-4dfd-b915-bb8779c287b2","direction":"outgoing","index":118714,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:44.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"def00834-43b6-41db-aa23-c9828701cd51","direction":"outgoing","index":118715,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:44.027-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a03548c0-d977-4b57-a39a-f3a2c3b861b4","direction":"outgoing","index":118716,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:44.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3847594e-403f-46b1-a7f0-248fedfeb7cd","direction":"outgoing","index":118717,"result_id":"30c38648-1f94-42d6-bbbd-559f94cc28df","status":200,"timestamp":"2026-05-22T11:01:44.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:43.958-04:00"},{"id":"80565ca9-91e9-4c47-b625-2dffc79a4c56","created_at":"2026-05-22T11:01:44.463-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c70e40d5-4a85-47a1-83e9-979c33bcea7b","direction":"outgoing","index":118718,"result_id":"80565ca9-91e9-4c47-b625-2dffc79a4c56","status":200,"timestamp":"2026-05-22T11:01:44.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85","verb":"get"},{"id":"dc5ef107-6e9d-43ae-a8e8-d815eac8d544","direction":"outgoing","index":118719,"result_id":"80565ca9-91e9-4c47-b625-2dffc79a4c56","status":200,"timestamp":"2026-05-22T11:01:44.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85","verb":"get"},{"id":"420c7100-5c8f-4629-94d7-9c2fd9a1fa56","direction":"outgoing","index":118720,"result_id":"80565ca9-91e9-4c47-b625-2dffc79a4c56","status":200,"timestamp":"2026-05-22T11:01:44.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:44.463-04:00"},{"id":"7bda9b33-546f-4c39-a57b-88fa14415250","created_at":"2026-05-22T11:01:44.621-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"485d5c87-cb39-4ef4-8406-0d3532c5d708","direction":"outgoing","index":118721,"result_id":"7bda9b33-546f-4c39-a57b-88fa14415250","status":200,"timestamp":"2026-05-22T11:01:44.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:44.621-04:00"},{"id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","created_at":"2026-05-22T11:01:45.925-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"386c27ef-03fa-443b-bb9b-7d7a8d0cc290","direction":"outgoing","index":118722,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85","verb":"get"},{"id":"0b766d46-98e7-4a61-8029-66dc03f85fc9","direction":"outgoing","index":118723,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85","verb":"get"},{"id":"68e59599-ac43-4938-af89-345743d5aec6","direction":"outgoing","index":118724,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85","verb":"get"},{"id":"7cb57a67-9c72-41ab-a3e9-06789fd76c69","direction":"outgoing","index":118725,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355","verb":"get"},{"id":"aa6ab9fc-a79b-40f0-bcd1-432a8db56729","direction":"outgoing","index":118726,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355","verb":"get"},{"id":"720dc696-3434-45a7-82b1-717b35ba4250","direction":"outgoing","index":118727,"result_id":"6c9a826a-67b9-4df8-9026-e396ecd2f8dc","status":200,"timestamp":"2026-05-22T11:01:45.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:45.925-04:00"},{"id":"94480378-eb9a-45b8-aa1f-7b5cbcbae8c1","created_at":"2026-05-22T11:01:49.582-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:49.582-04:00"},{"id":"d5598ff0-238f-4f6c-83cc-a4eb6e8d5272","created_at":"2026-05-22T11:01:49.646-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:49.646-04:00"},{"id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","created_at":"2026-05-22T11:01:54.394-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f835031c-954f-4625-9fe8-fe191c54de5d","direction":"outgoing","index":118728,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"},{"id":"2c7b83cb-c28c-4fab-b32d-f09ef0c9488c","direction":"outgoing","index":118729,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"40269a88-13ad-498f-857e-b4c35746e4dc","direction":"outgoing","index":118730,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"b0aead19-3bd5-44f2-a0cd-3e6054074efd","direction":"outgoing","index":118731,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"ac5d0e68-275a-48ef-8213-d3ce5ecab350","direction":"outgoing","index":118732,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"9b2c1255-1c18-4e78-9594-2529f025a10f","direction":"outgoing","index":118733,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"f3bc2823-a5c7-41cd-9fdb-74f8466b8366","direction":"outgoing","index":118734,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"7eb87c60-a8d8-4cd1-90cb-f6c8e104998f","direction":"outgoing","index":118735,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"313e47f3-84aa-4651-ac04-54e82f2f7065","direction":"outgoing","index":118736,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"fdcebe0b-ead9-4dc6-9e82-e76367fd06b9","direction":"outgoing","index":118737,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"b2eb6718-83d3-49e2-b78b-d85af5eed343","direction":"outgoing","index":118738,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"c5dc86c7-b134-4e70-9f6f-38980220eeb4","direction":"outgoing","index":118739,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"196de8d1-c086-4e5a-b0db-1f617e1ec6b4","direction":"outgoing","index":118740,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"659e81c7-6c57-4ebe-aa83-f9fed941ba8f","direction":"outgoing","index":118741,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.602-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"484d54fc-a88f-42c0-b124-624266b279a2","direction":"outgoing","index":118742,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"b5f817c9-6b4c-4edd-96bd-2f810ed87499","direction":"outgoing","index":118743,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"2204190d-3d56-47cd-aafc-d26c652627a7","direction":"outgoing","index":118744,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"fb1634bc-c216-4fc4-bbb7-fe058e47c00a","direction":"outgoing","index":118745,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"7ed255b5-1f73-4771-96a2-0634363df560","direction":"outgoing","index":118746,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"7953b614-b788-4ec7-9d50-1b8e247816e3","direction":"outgoing","index":118747,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"b0cdb867-0695-4145-8886-b8a3d5247fe3","direction":"outgoing","index":118748,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"35967572-6e4c-408c-b75d-1beea5bbf16a","direction":"outgoing","index":118749,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"1fa9b295-9873-43ac-9d44-b8e747e0f1c6","direction":"outgoing","index":118750,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"81b09f7d-36eb-48cd-94b0-975088ecccb6","direction":"outgoing","index":118751,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"e2fe7c48-0569-4ba3-84c3-39e4111a62e4","direction":"outgoing","index":118752,"result_id":"f56b063f-663d-4ce1-b58c-2a6a99033bdc","status":200,"timestamp":"2026-05-22T11:01:54.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note-us_core_v400_diagnostic_report_note_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:54.394-04:00"},{"id":"5f2036a5-6237-4af1-9723-2dd08df2bc97","created_at":"2026-05-22T11:01:54.764-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_diagnostic_report_note","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:54.764-04:00"},{"id":"951ba51e-57d9-465d-92f8-eb3832001573","created_at":"2026-05-22T11:01:58.584-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9dad47cb-5678-4bf0-91a8-8e05b3cfa232","direction":"outgoing","index":118753,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"2ef70500-7630-4dec-986d-11b7cd83c0e4","direction":"outgoing","index":118754,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f9f4225-e534-4ce9-b966-2a3753b029d1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"94a4478f-b193-474f-ab3e-e64a30981760","direction":"outgoing","index":118755,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f9f4225-e534-4ce9-b966-2a3753b029d1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"020a9a14-cbbd-4326-9971-3f123cd25c1b","direction":"outgoing","index":118756,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search","verb":"post"},{"id":"6043ae37-8250-4f90-ba8b-1022d80ce0c2","direction":"outgoing","index":118757,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f9f4225-e534-4ce9-b966-2a3753b029d1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff061334-7b45-460b-ba0d-fc5fb3f05d5d","direction":"outgoing","index":118758,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f9f4225-e534-4ce9-b966-2a3753b029d1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083c2fb2-415f-4756-88bb-eff8b638992b","direction":"outgoing","index":118759,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85","verb":"get"},{"id":"eb43e1f2-255e-412c-9ab7-95f212c8ede6","direction":"outgoing","index":118760,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e036139-76bb-4bfc-b38d-95cef11e1880\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2677cc47-69f8-4944-877a-b11e5bceb12f","direction":"outgoing","index":118761,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e036139-76bb-4bfc-b38d-95cef11e1880\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d511be8-6e85-4e75-b4e6-5c4be082eac2","direction":"outgoing","index":118762,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"e944fc24-685c-4110-ae7c-30315a8beb51","direction":"outgoing","index":118763,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c6d458ec-c317-4344-af33-76ab27a5e184\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f68ff85-e811-4d7e-ba69-a65ed9f2c2a0","direction":"outgoing","index":118764,"result_id":"951ba51e-57d9-465d-92f8-eb3832001573","status":200,"timestamp":"2026-05-22T11:01:58.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c6d458ec-c317-4344-af33-76ab27a5e184\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:58.584-04:00"},{"id":"0d437f9c-3a1b-489a-a262-e2a9315fff80","created_at":"2026-05-22T11:01:58.868-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"887e0f03-a9fc-4863-a6a9-78aae88c406d","direction":"outgoing","index":118765,"result_id":"0d437f9c-3a1b-489a-a262-e2a9315fff80","status":200,"timestamp":"2026-05-22T11:01:58.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference__id_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:01:58.868-04:00"},{"id":"a8e6891e-3798-4d03-9da7-77b9922a4561","created_at":"2026-05-22T11:02:01.964-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8b56b257-7227-47ce-bdff-fc4b408a5d44","direction":"outgoing","index":118766,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:01.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85","verb":"get"},{"id":"3d16e4b3-987c-49d1-a2f3-97adae8e04a6","direction":"outgoing","index":118767,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:01.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee4b28de-d6f2-49b0-bf48-d6eb4cfb7516\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1393d15-bdf5-4383-8009-31fb8fc1abd4","direction":"outgoing","index":118768,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee4b28de-d6f2-49b0-bf48-d6eb4cfb7516\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56a7b3bb-5a71-4781-a084-c75930b0eb97","direction":"outgoing","index":118769,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85","verb":"get"},{"id":"86660569-d919-4a37-b1e3-daff2640112f","direction":"outgoing","index":118770,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=027f6032-b408-436b-90e8-d262d3a688ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dcfd230-6dd5-4965-9fa8-c6641060448a","direction":"outgoing","index":118771,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=027f6032-b408-436b-90e8-d262d3a688ed\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44948fa2-cc4d-4948-b512-2d6181863aff","direction":"outgoing","index":118772,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355","verb":"get"},{"id":"270b6c75-a2d9-48cf-9aa8-2eb7948f8857","direction":"outgoing","index":118773,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8038494-3c01-4911-a0e6-c3426b29e58b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"94ee1cc1-0cbd-4114-889d-ea9201006a77","direction":"outgoing","index":118774,"result_id":"a8e6891e-3798-4d03-9da7-77b9922a4561","status":200,"timestamp":"2026-05-22T11:02:02.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8038494-3c01-4911-a0e6-c3426b29e58b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:01.964-04:00"},{"id":"7b120ea9-3f21-4126-9e27-a96c156b073a","created_at":"2026-05-22T11:02:05.119-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"75385648-8b46-4c03-8859-f79651575cb3","direction":"outgoing","index":118775,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded","verb":"get"},{"id":"10bde376-1247-4edc-b547-a81d37d00d2b","direction":"outgoing","index":118776,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f5cabab8-486e-4c70-bdc7-58d292fed923\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cfd2beec-9289-46c0-974d-fbc549219fed","direction":"outgoing","index":118777,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded","verb":"get"},{"id":"3a37d3d6-874c-487f-ad67-a923c3f669e1","direction":"outgoing","index":118778,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ab59c2ff-eb97-44f0-a0e2-99c7b7ac57da\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0120169d-0d69-4770-8da5-0817e9e871ec","direction":"outgoing","index":118779,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error","verb":"get"},{"id":"27e81663-c4c7-4b9a-9ca2-e878ca056d30","direction":"outgoing","index":118780,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a77712c7-b3c4-4b2a-9f22-a32489bef2f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b1dc4689-c57c-4579-b1ee-8c06baace318","direction":"outgoing","index":118781,"result_id":"7b120ea9-3f21-4126-9e27-a96c156b073a","status":200,"timestamp":"2026-05-22T11:02:05.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a77712c7-b3c4-4b2a-9f22-a32489bef2f8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:05.119-04:00"},{"id":"57915fd5-2ada-4cac-b180-cb8f070ce980","created_at":"2026-05-22T11:02:06.202-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5f5db84a-ed69-4e94-83b2-0c6acd04676e","direction":"outgoing","index":118782,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"2e98fc91-24bd-4eaa-8773-e6636b3e3767","direction":"outgoing","index":118783,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"22b105fd-7709-4d3e-9ae2-e2ba967f913c","direction":"outgoing","index":118784,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"eeec8a8b-2c8f-47af-98d4-1b0ad0ea1e32","direction":"outgoing","index":118785,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"5b1e4ab8-a7f3-432e-94cf-fd1661cd00e7","direction":"outgoing","index":118786,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"b6f1448c-fef0-46e4-af58-89935df36268","direction":"outgoing","index":118787,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"ceabae69-7255-41fd-8953-26e8553314fc","direction":"outgoing","index":118788,"result_id":"57915fd5-2ada-4cac-b180-cb8f070ce980","status":200,"timestamp":"2026-05-22T11:02:06.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_type_period_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:06.202-04:00"},{"id":"63928bb4-c8c4-4e2e-8ebd-74045de99a68","created_at":"2026-05-22T11:02:06.700-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c2c80484-e9bd-4c0b-9ab9-8417198c472d","direction":"outgoing","index":118789,"result_id":"63928bb4-c8c4-4e2e-8ebd-74045de99a68","status":200,"timestamp":"2026-05-22T11:02:06.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3","verb":"get"},{"id":"706b87cb-5258-48ee-9bb1-44c92d24fcf2","direction":"outgoing","index":118790,"result_id":"63928bb4-c8c4-4e2e-8ebd-74045de99a68","status":200,"timestamp":"2026-05-22T11:02:06.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"8a99b9c0-c299-4fd4-86ac-6e31f88621b1","direction":"outgoing","index":118791,"result_id":"63928bb4-c8c4-4e2e-8ebd-74045de99a68","status":200,"timestamp":"2026-05-22T11:02:06.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_type_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:06.700-04:00"},{"id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","created_at":"2026-05-22T11:02:09.459-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"da30aef7-efc4-41d1-ba2c-f933663c6d44","direction":"outgoing","index":118792,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"f9d95666-d6ab-4131-b134-68cf7c442220","direction":"outgoing","index":118793,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ae4ac4c7-1f8e-4c7e-92be-2c89273c55ec","direction":"outgoing","index":118794,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=22ed6d39-1863-4cbc-9008-ec19f3f1e051\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5660df1d-3dc8-49a2-9764-c62f5506b0f9","direction":"outgoing","index":118795,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=22ed6d39-1863-4cbc-9008-ec19f3f1e051\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"55ff7a2e-d9d1-4aa6-b196-047165ccede8","direction":"outgoing","index":118796,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d1e1dc0b-78a7-44a0-b431-21fb8a528356","direction":"outgoing","index":118797,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5584a6f-3415-4662-8505-1a1407e5ffe3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"94c918ce-7ea7-495c-bb81-15624d9d849f","direction":"outgoing","index":118798,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5584a6f-3415-4662-8505-1a1407e5ffe3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"253bff84-17fb-4e64-9a5d-3171714616bf","direction":"outgoing","index":118799,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a0d314f3-fcad-4945-8e97-922958794463","direction":"outgoing","index":118800,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"cc4678cf-6132-4970-a24b-16cf9881f4d5","direction":"outgoing","index":118801,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"a137fa67-93a1-4ee9-9fe0-4a17bb532fb5","direction":"outgoing","index":118802,"result_id":"202ef64d-29f4-49f0-86e1-c7d0aa5f7f68","status":200,"timestamp":"2026-05-22T11:02:09.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:09.459-04:00"},{"id":"b2a84db3-7ef6-484b-a9e9-7f4ace46ad7c","created_at":"2026-05-22T11:02:09.722-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0c20b01c-b835-4d5e-9ea6-56bb3b6040a0","direction":"outgoing","index":118803,"result_id":"b2a84db3-7ef6-484b-a9e9-7f4ace46ad7c","status":200,"timestamp":"2026-05-22T11:02:09.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:09.722-04:00"},{"id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","created_at":"2026-05-22T11:02:12.102-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f55a0cd2-7330-4795-a0a4-72551019cfbe","direction":"outgoing","index":118804,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"ad04c32c-c864-4251-b0f5-48b1e0a46955","direction":"outgoing","index":118805,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=40664d35-bef8-40de-adba-e0e709bf5a18\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8cd3593-ddb2-46a7-ba11-9fe090f624ad","direction":"outgoing","index":118806,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=40664d35-bef8-40de-adba-e0e709bf5a18\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ea5f2f3-8d3d-4c78-9ad9-21db5dd24d19","direction":"outgoing","index":118807,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.150-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"c5893ef5-bc9e-4eaa-86ce-1f48450670a0","direction":"outgoing","index":118808,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a081684f-fdf7-4989-a6a5-63712697abca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca5dc42f-43b7-46d6-b6d9-730166c7353f","direction":"outgoing","index":118809,"result_id":"b6ac8ed8-c4ea-48f2-8e25-a0000373c8d9","status":200,"timestamp":"2026-05-22T11:02:12.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a081684f-fdf7-4989-a6a5-63712697abca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:12.102-04:00"},{"id":"0a9f6182-5677-4ce8-a939-354c2504a21c","created_at":"2026-05-22T11:02:17.822-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.category[0]: None of the codings provided are in the value set 'US Core DocumentReference Category' (http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-category|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#42348-3)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1')","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:17.822-04:00"},{"id":"828c5864-7199-44a0-8aec-1d647dee36d9","created_at":"2026-05-22T11:02:17.912-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:17.912-04:00"},{"id":"61e5076c-7fa6-46ff-a724-09d7c5844559","created_at":"2026-05-22T11:02:17.915-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:17.915-04:00"},{"id":"228e6c7d-0ee0-426e-bf11-89e071b0e28a","created_at":"2026-05-22T11:02:17.921-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference-us_core_v400_document_reference_custodian_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:17.921-04:00"},{"id":"bcd46be4-1d60-4a09-99ec-5cef04d713f2","created_at":"2026-05-22T11:02:17.922-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_document_reference","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:17.922-04:00"},{"id":"33af9bf6-44a1-4b4c-ac19-8720788cf2cd","created_at":"2026-05-22T11:02:18.433-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d8726d07-3aaa-4013-b3d6-1b07e12c0e0f","direction":"outgoing","index":118810,"result_id":"33af9bf6-44a1-4b4c-ac19-8720788cf2cd","status":200,"timestamp":"2026-05-22T11:02:18.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=85","verb":"get"},{"id":"832281f9-b2c8-4a25-a3d2-8a7b99c09a67","direction":"outgoing","index":118811,"result_id":"33af9bf6-44a1-4b4c-ac19-8720788cf2cd","status":200,"timestamp":"2026-05-22T11:02:18.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355","verb":"get"},{"id":"593ee2b5-dedc-4be9-9cc0-b22052092e6c","direction":"outgoing","index":118812,"result_id":"33af9bf6-44a1-4b4c-ac19-8720788cf2cd","status":200,"timestamp":"2026-05-22T11:02:18.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/_search","verb":"post"},{"id":"31a5197b-9712-4f21-8e1d-a3d753f6bfd8","direction":"outgoing","index":118813,"result_id":"33af9bf6-44a1-4b4c-ac19-8720788cf2cd","status":200,"timestamp":"2026-05-22T11:02:18.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:18.433-04:00"},{"id":"6408ace7-b02f-4f5a-bd36-40c81a4afc68","created_at":"2026-05-22T11:02:18.627-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"94650953-6b24-49e7-9b34-f394e1ad553e","direction":"outgoing","index":118814,"result_id":"6408ace7-b02f-4f5a-bd36-40c81a4afc68","status":200,"timestamp":"2026-05-22T11:02:18.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_patient_lifecycle_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:18.627-04:00"},{"id":"5a556636-d208-479f-a2e4-48eb969ca3ef","created_at":"2026-05-22T11:02:19.337-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4ed2cc37-0232-426c-8611-3840a169b3d4","direction":"outgoing","index":118815,"result_id":"5a556636-d208-479f-a2e4-48eb969ca3ef","status":200,"timestamp":"2026-05-22T11:02:19.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07","verb":"get"},{"id":"0653a40c-8e6d-4c0b-91a8-ed3bbc41931d","direction":"outgoing","index":118816,"result_id":"5a556636-d208-479f-a2e4-48eb969ca3ef","status":200,"timestamp":"2026-05-22T11:02:19.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"9af75d03-d4c7-499f-b016-f0097cef28f5","direction":"outgoing","index":118817,"result_id":"5a556636-d208-479f-a2e4-48eb969ca3ef","status":200,"timestamp":"2026-05-22T11:02:19.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"b185a824-e8e1-4b10-9548-8c6af4d008cc","direction":"outgoing","index":118818,"result_id":"5a556636-d208-479f-a2e4-48eb969ca3ef","status":200,"timestamp":"2026-05-22T11:02:19.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00","verb":"get"},{"id":"fc2ecc10-ae40-4e7f-b6c0-ccae54ab1516","direction":"outgoing","index":118819,"result_id":"5a556636-d208-479f-a2e4-48eb969ca3ef","status":200,"timestamp":"2026-05-22T11:02:19.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_patient_target_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:19.337-04:00"},{"id":"d86cf35b-4c8d-4fd7-a61b-834be2d7b7bb","created_at":"2026-05-22T11:02:19.554-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1bd3cff1-dd6a-4b83-aaca-3d124330c337","direction":"outgoing","index":118820,"result_id":"d86cf35b-4c8d-4fd7-a61b-834be2d7b7bb","status":200,"timestamp":"2026-05-22T11:02:19.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:19.554-04:00"},{"id":"8f518451-1380-4b26-acf4-10f1883e157a","created_at":"2026-05-22T11:02:19.906-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"401eb493-49bc-4ce6-a115-137371df3f5e","direction":"outgoing","index":118821,"result_id":"8f518451-1380-4b26-acf4-10f1883e157a","status":200,"timestamp":"2026-05-22T11:02:19.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"ade3844c-3137-4ac7-9579-53a44511575b","direction":"outgoing","index":118822,"result_id":"8f518451-1380-4b26-acf4-10f1883e157a","status":200,"timestamp":"2026-05-22T11:02:19.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:19.906-04:00"},{"id":"111ce9d8-57ed-4a4a-8048-473ff3806151","created_at":"2026-05-22T11:02:20.129-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:20.129-04:00"},{"id":"36d1d988-f4bf-4c11-ac3c-c9eead4a5235","created_at":"2026-05-22T11:02:20.145-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:20.145-04:00"},{"id":"f4560a9d-8ed0-4e30-a253-928657830adf","created_at":"2026-05-22T11:02:20.150-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal-us_core_v400_goal_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:20.150-04:00"},{"id":"c690d4ea-3ba8-47b1-8392-13b2d7c83ed9","created_at":"2026-05-22T11:02:20.153-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_goal","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:20.153-04:00"},{"id":"842ee998-d95e-4225-a9ce-5b609b874ca3","created_at":"2026-05-22T11:02:23.255-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"307a9bb7-2143-48e5-8d69-585df8e63ad3","direction":"outgoing","index":118823,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85","verb":"get"},{"id":"e38bfa1f-28ce-49ff-8e67-bd27f09c999f","direction":"outgoing","index":118824,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b4f583-d7fc-44e5-a3a4-253b4ab83f5e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0dcc5692-37e9-45b4-99e6-097d9e80a82a","direction":"outgoing","index":118825,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/_search","verb":"post"},{"id":"d8294e7d-4822-408a-8e8b-43df5a7dfb62","direction":"outgoing","index":118826,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b4f583-d7fc-44e5-a3a4-253b4ab83f5e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1a1e37d-8541-4e7e-b2fe-674188304d6c","direction":"outgoing","index":118827,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85","verb":"get"},{"id":"81011536-fe9b-4c6d-9e8c-b887fd8850af","direction":"outgoing","index":118828,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=30daa72b-d35a-45e3-bf06-2583b974fd67\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff597f54-eb93-4b15-bade-0ded2460ac6c","direction":"outgoing","index":118829,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355","verb":"get"},{"id":"c6cbc4a3-17c8-4b86-810d-ae0f16697cd5","direction":"outgoing","index":118830,"result_id":"842ee998-d95e-4225-a9ce-5b609b874ca3","status":200,"timestamp":"2026-05-22T11:02:23.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b8c7dfce-f53f-4698-97cd-a776f7080258\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:23.255-04:00"},{"id":"84883fdd-74e3-4ef5-9f36-a2e8f5bc4f44","created_at":"2026-05-22T11:02:24.303-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a9228a47-95c3-41d4-8f96-41f40ce5a157","direction":"outgoing","index":118831,"result_id":"84883fdd-74e3-4ef5-9f36-a2e8f5bc4f44","status":200,"timestamp":"2026-05-22T11:02:24.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed","verb":"get"},{"id":"c7dfc1ce-8573-432a-a355-29edcb60c812","direction":"outgoing","index":118832,"result_id":"84883fdd-74e3-4ef5-9f36-a2e8f5bc4f44","status":200,"timestamp":"2026-05-22T11:02:24.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d18b7eb3-d5f3-402a-ab81-1e1fdc149935\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8b4d2a8c-ccca-4718-9bb9-f6d88129fd51","direction":"outgoing","index":118833,"result_id":"84883fdd-74e3-4ef5-9f36-a2e8f5bc4f44","status":200,"timestamp":"2026-05-22T11:02:24.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:24.303-04:00"},{"id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","created_at":"2026-05-22T11:02:26.617-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7a5b39a8-9cf6-4de5-9ba0-09d5ceac1c53","direction":"outgoing","index":118834,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bed64b3e-78de-49b0-aaf2-08a9a97085eb","direction":"outgoing","index":118835,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d6ccf2d1-0e26-409d-9582-5ee16e76415a","direction":"outgoing","index":118836,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=55233fb8-8676-47ca-bb80-ee4155a287f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"896545a6-1bd1-43db-97b8-8fa1d2280b22","direction":"outgoing","index":118837,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e946947a-d9fc-45bf-9f70-3144155e02c4","direction":"outgoing","index":118838,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6311932f-7281-4ba5-ad24-4fe715906d47\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c79852f-9df9-4f2b-951e-a025d46c1155","direction":"outgoing","index":118839,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e86cd8dc-3fa0-483b-aa4d-931af1a8d9bc","direction":"outgoing","index":118840,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"626502af-691c-4d8c-b495-1908651f687a","direction":"outgoing","index":118841,"result_id":"30f5b8cc-2a32-4662-8cb0-356d155d7dcc","status":200,"timestamp":"2026-05-22T11:02:26.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_patient_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:26.617-04:00"},{"id":"73541a81-0e18-4e97-a3de-6f22e068f100","created_at":"2026-05-22T11:02:26.848-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1b304c5c-287d-45ee-a1ec-ba2bf65331cb","direction":"outgoing","index":118842,"result_id":"73541a81-0e18-4e97-a3de-6f22e068f100","status":200,"timestamp":"2026-05-22T11:02:26.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:26.848-04:00"},{"id":"5091028d-321e-4cab-b457-7a244569ec32","created_at":"2026-05-22T11:02:28.703-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2376047c-9b98-441e-b710-a410e23f5253","direction":"outgoing","index":118843,"result_id":"5091028d-321e-4cab-b457-7a244569ec32","status":200,"timestamp":"2026-05-22T11:02:28.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"335b12da-074c-41a8-b660-6151ab7d5bbe","direction":"outgoing","index":118844,"result_id":"5091028d-321e-4cab-b457-7a244569ec32","status":200,"timestamp":"2026-05-22T11:02:28.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=72fd6cc8-d094-41fa-8f60-eaca1e1fb0cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ff7d9be-ec2f-49d0-8138-dd9c321c93a7","direction":"outgoing","index":118845,"result_id":"5091028d-321e-4cab-b457-7a244569ec32","status":200,"timestamp":"2026-05-22T11:02:28.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"50b614b0-e66d-4d5e-a240-d51e37e1d5e6","direction":"outgoing","index":118846,"result_id":"5091028d-321e-4cab-b457-7a244569ec32","status":200,"timestamp":"2026-05-22T11:02:28.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c07444d3-869c-4b8d-9e55-1d926a7aefb9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:28.703-04:00"},{"id":"d539d06f-163b-4898-bad9-d2da8bafda39","created_at":"2026-05-22T11:02:30.112-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20180519), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_code_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:30.112-04:00"},{"id":"15581c29-446e-4f1a-b1b6-c9c98ff74602","created_at":"2026-05-22T11:02:30.150-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:30.150-04:00"},{"id":"749f58c5-c8cf-4876-827c-c013e2c90237","created_at":"2026-05-22T11:02:30.153-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization-us_core_v400_immunization_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:30.153-04:00"},{"id":"23ce2fc1-6bd0-4160-8181-ca5731f8ac27","created_at":"2026-05-22T11:02:30.154-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_immunization","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:30.154-04:00"},{"id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","created_at":"2026-05-22T11:02:36.645-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ff489d7f-80a3-4e75-835d-915cd86d9a2e","direction":"outgoing","index":118847,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85","verb":"get"},{"id":"1a5532fe-02ad-423a-b058-a3edaa30b56e","direction":"outgoing","index":118848,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85","verb":"get"},{"id":"cdeeecb9-2468-4b20-a480-0e4b3956ed8b","direction":"outgoing","index":118849,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85","verb":"get"},{"id":"3773cd2d-206d-49c7-9a6c-1008290d8e7f","direction":"outgoing","index":118850,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1f8e9b2-864e-4133-bd3a-479fa67dc7f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3212d33d-93c7-49ea-b93e-5cab559d0cc8","direction":"outgoing","index":118851,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search","verb":"post"},{"id":"a8ea662d-9470-4e90-aeb9-77fe9e8c40af","direction":"outgoing","index":118852,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1f8e9b2-864e-4133-bd3a-479fa67dc7f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b30fde3e-df6f-423c-9809-2236cc00a238","direction":"outgoing","index":118853,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85","verb":"get"},{"id":"7e2eb858-204d-445b-a93b-4f88ebca99cf","direction":"outgoing","index":118854,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=982d9cd5-b39c-4e98-9839-94cb17ecc989\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset","verb":"get"},{"id":"a1da8da1-14c2-458f-9f25-cef66bb0ebe4","direction":"outgoing","index":118855,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85","verb":"get"},{"id":"672efaf2-0d28-4318-8969-fb53e90a038f","direction":"outgoing","index":118856,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3da25b76-ae61-4640-b2bc-664fd7de94e5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"005bca39-49a3-466f-8ca5-ab90fbf565c7","direction":"outgoing","index":118857,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85","verb":"get"},{"id":"5928a381-fc5b-47f6-a066-260f5d29c83a","direction":"outgoing","index":118858,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85","verb":"get"},{"id":"88fa6179-d5b1-4df0-90ac-8c93d810837b","direction":"outgoing","index":118859,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85","verb":"get"},{"id":"58c8366d-3824-4eef-874f-6fcc037a1f43","direction":"outgoing","index":118860,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85","verb":"get"},{"id":"f8ae050a-d73c-4f66-9503-95f7b4eff379","direction":"outgoing","index":118861,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85","verb":"get"},{"id":"e8e52569-05c9-4013-aba6-af0d76bc3661","direction":"outgoing","index":118862,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355","verb":"get"},{"id":"19c364d6-edd2-402a-8ce8-369476674de0","direction":"outgoing","index":118863,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355","verb":"get"},{"id":"a53b5a0d-f4f8-46ba-8d65-c7557a613c9f","direction":"outgoing","index":118864,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355","verb":"get"},{"id":"384fb08a-d1d9-4d6e-9758-71f497d365aa","direction":"outgoing","index":118865,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7bc25d6e-0296-4b59-bd23-9f32084dc6f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2fbacc5c-c72e-4d30-9f41-6c6e0ebe838a","direction":"outgoing","index":118866,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355","verb":"get"},{"id":"31403160-d05d-47c3-804b-0c8fa827b559","direction":"outgoing","index":118867,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355","verb":"get"},{"id":"42dbe2c4-2faa-4814-897b-1bb806478c07","direction":"outgoing","index":118868,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355","verb":"get"},{"id":"0655fb23-f630-4b9d-ba80-13dc2ed54829","direction":"outgoing","index":118869,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355","verb":"get"},{"id":"fcaa2e7b-5603-40c0-9d27-b97a0b43fc4e","direction":"outgoing","index":118870,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355","verb":"get"},{"id":"a7188005-6b2e-4659-b63f-dbdd6d7edeed","direction":"outgoing","index":118871,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"},{"id":"719a4c57-a4df-4c07-ad31-b8d52354ef0d","direction":"outgoing","index":118872,"result_id":"ecb86287-57b8-4af0-a2bb-f0112b503c63","status":200,"timestamp":"2026-05-22T11:02:36.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cc47be42-992b-41f6-ac26-0a3d58f1a46c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_patient_intent_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:36.645-04:00"},{"id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","created_at":"2026-05-22T11:02:39.334-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8456a328-3713-482d-9bba-a481b6b6349b","direction":"outgoing","index":118873,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"4f69e8f4-5242-415e-935e-e20f6b6663cc","direction":"outgoing","index":118874,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"48b8d3a5-5967-4727-abad-c0e98a9c4c8f","direction":"outgoing","index":118875,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=75a213a2-ad4b-4be5-b0ec-38bdc2b4aed6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5287e70-bbba-4895-9e84-6ff3ba80c0d9","direction":"outgoing","index":118876,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"1617060f-7cde-468a-a5b4-316f0692a450","direction":"outgoing","index":118877,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f2ab9bee-8427-4c06-a138-a1d7cf2fdd2f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58053573-5e90-47e1-adf3-b695061d9fa0","direction":"outgoing","index":118878,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"5b39aec4-65d6-45d4-9db3-804bacc2aa2b","direction":"outgoing","index":118879,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"9594973e-6ade-4a12-8df2-0904327a385e","direction":"outgoing","index":118880,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"d5a1ff48-8512-4847-862f-92c4b00a6c5c","direction":"outgoing","index":118881,"result_id":"e040632b-40b6-4a2e-b07b-732b93f8a3ce","status":200,"timestamp":"2026-05-22T11:02:39.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_patient_intent_authoredon_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:39.334-04:00"},{"id":"c98e85eb-b903-4ecc-a186-27cc3def8a47","created_at":"2026-05-22T11:02:39.819-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"51f14849-4562-4aec-a17b-4701b2df89c0","direction":"outgoing","index":118882,"result_id":"c98e85eb-b903-4ecc-a186-27cc3def8a47","status":200,"timestamp":"2026-05-22T11:02:39.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85","verb":"get"},{"id":"86bf1eef-9eec-4438-895d-ff2d3e60dc68","direction":"outgoing","index":118883,"result_id":"c98e85eb-b903-4ecc-a186-27cc3def8a47","status":200,"timestamp":"2026-05-22T11:02:39.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355","verb":"get"},{"id":"bc1415d6-e101-4797-a751-09b853b2de6d","direction":"outgoing","index":118884,"result_id":"c98e85eb-b903-4ecc-a186-27cc3def8a47","status":200,"timestamp":"2026-05-22T11:02:39.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_patient_intent_encounter_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:39.819-04:00"},{"id":"37dc922d-dadc-4df7-808f-aa6e41448f98","created_at":"2026-05-22T11:02:41.166-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d81dc2e6-3c27-4e68-a25c-2df1f7d6f643","direction":"outgoing","index":118885,"result_id":"37dc922d-dadc-4df7-808f-aa6e41448f98","status":200,"timestamp":"2026-05-22T11:02:41.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped","verb":"get"},{"id":"05958ab8-c7ff-4543-9ea1-fc401e2ae064","direction":"outgoing","index":118886,"result_id":"37dc922d-dadc-4df7-808f-aa6e41448f98","status":200,"timestamp":"2026-05-22T11:02:41.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=34c45ef5-8775-4779-b7c8-2bf661466e7a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d4a7ab3a-595f-4fa8-b8b6-0f0cc7a3eb3f","direction":"outgoing","index":118887,"result_id":"37dc922d-dadc-4df7-808f-aa6e41448f98","status":200,"timestamp":"2026-05-22T11:02:41.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped","verb":"get"},{"id":"b723c876-f496-48ab-91ad-61c7e1477108","direction":"outgoing","index":118888,"result_id":"37dc922d-dadc-4df7-808f-aa6e41448f98","status":200,"timestamp":"2026-05-22T11:02:41.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown","verb":"get"},{"id":"02a535ec-7b15-414f-a4b5-366e6e038faf","direction":"outgoing","index":118889,"result_id":"37dc922d-dadc-4df7-808f-aa6e41448f98","status":200,"timestamp":"2026-05-22T11:02:41.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d56fb0dd-0610-4ecc-90b9-2f49b2c07997\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_patient_intent_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:41.166-04:00"},{"id":"d510ec5f-5e9a-46c1-9510-9cd374e50455","created_at":"2026-05-22T11:02:41.362-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b9fd44a9-618d-4802-87ee-9f52b4cfd60f","direction":"outgoing","index":118890,"result_id":"d510ec5f-5e9a-46c1-9510-9cd374e50455","status":200,"timestamp":"2026-05-22T11:02:41.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:41.362-04:00"},{"id":"31b708a0-4e07-42de-b419-7b2317109987","created_at":"2026-05-22T11:02:45.441-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"03e20232-d6db-44ee-a1c3-a4f7eb495932","direction":"outgoing","index":118891,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85","verb":"get"},{"id":"6a26e0b1-e750-4006-a942-c2aac0c68ff0","direction":"outgoing","index":118892,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85","verb":"get"},{"id":"2e8260fe-61e5-4164-9cd2-61761c81e5a6","direction":"outgoing","index":118893,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85","verb":"get"},{"id":"1b4d97f8-9d53-4588-b636-06a020495b2b","direction":"outgoing","index":118894,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=616f61c1-a775-45f4-b1db-167d34a8b1df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56c87369-3af4-418f-97b9-c1090c5580a5","direction":"outgoing","index":118895,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85","verb":"get"},{"id":"bb32385b-9158-4c24-9771-72ca98ee6ff7","direction":"outgoing","index":118896,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85","verb":"get"},{"id":"606818b1-e422-489f-be03-18d042bed1d0","direction":"outgoing","index":118897,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85","verb":"get"},{"id":"4914a472-d9af-4f40-b74b-086705fa5b0d","direction":"outgoing","index":118898,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85","verb":"get"},{"id":"7217c56e-063e-45fc-9eb0-a34c5b21e3cd","direction":"outgoing","index":118899,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85","verb":"get"},{"id":"eb0b6280-a6e3-4026-bd9b-3d115798060c","direction":"outgoing","index":118900,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355","verb":"get"},{"id":"933a52ed-facb-4004-8d0a-b492c79eaabd","direction":"outgoing","index":118901,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"8d83aaa5-3530-4cdc-9a97-7b33ebf7cf54","direction":"outgoing","index":118902,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355","verb":"get"},{"id":"3cc8190d-5c73-4694-b97d-8f8628978925","direction":"outgoing","index":118903,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5027ae43-c05b-4b5b-8e02-66961edc1e6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8b6558f9-be7f-4109-a794-34623c3a13d3","direction":"outgoing","index":118904,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355","verb":"get"},{"id":"60661261-da63-4a6b-af60-1b854e935151","direction":"outgoing","index":118905,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355","verb":"get"},{"id":"be8a77f0-e711-45ec-83f7-bd9fb8b94d1f","direction":"outgoing","index":118906,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355","verb":"get"},{"id":"71969991-78a3-4ef6-a4b2-fa4433891d88","direction":"outgoing","index":118907,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355","verb":"get"},{"id":"255ac4af-d7c8-4254-b7f8-ec8991a8c73b","direction":"outgoing","index":118908,"result_id":"31b708a0-4e07-42de-b419-7b2317109987","status":200,"timestamp":"2026-05-22T11:02:45.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:45.441-04:00"},{"id":"fabdbaa6-682c-43ba-95b5-bbc944748abc","created_at":"2026-05-22T11:02:49.376-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication-adherence","type":"info"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:49.376-04:00"},{"id":"f9171e9f-1be0-44ad-ae76-93922a6b493c","created_at":"2026-05-22T11:02:49.608-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:49.608-04:00"},{"id":"23b57e0d-d570-47c7-b86b-227b1047f228","created_at":"2026-05-22T11:02:49.624-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:49.624-04:00"},{"id":"0f12408d-e4fa-4172-ad3f-c806e933c94a","created_at":"2026-05-22T11:02:50.516-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f7a9e600-a645-4bdc-ae99-51a5c55c1a45","direction":"outgoing","index":118909,"result_id":"0f12408d-e4fa-4172-ad3f-c806e933c94a","status":200,"timestamp":"2026-05-22T11:02:50.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1","verb":"get"},{"id":"f0b730b1-8c8b-41eb-86ad-be3667a257a2","direction":"outgoing","index":118910,"result_id":"0f12408d-e4fa-4172-ad3f-c806e933c94a","status":200,"timestamp":"2026-05-22T11:02:50.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request-us_core_v400_medication_request_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:50.516-04:00"},{"id":"3d68bd7a-6daa-459d-8298-d4efe2c16ce6","created_at":"2026-05-22T11:02:50.562-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_medication_request","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:50.562-04:00"},{"id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","created_at":"2026-05-22T11:02:51.292-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d97ff0d4-0b68-47b9-bcf3-36ab81edab68","direction":"outgoing","index":118911,"result_id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","status":200,"timestamp":"2026-05-22T11:02:51.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"2d671d4c-f2a2-42d1-b5c4-2099cdefb0e0","direction":"outgoing","index":118912,"result_id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","status":200,"timestamp":"2026-05-22T11:02:51.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"7a65e52b-d6ed-477f-8b86-a436685ee386","direction":"outgoing","index":118913,"result_id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","status":200,"timestamp":"2026-05-22T11:02:51.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"44841250-63f0-4493-9f49-713fe13f6f29","direction":"outgoing","index":118914,"result_id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","status":200,"timestamp":"2026-05-22T11:02:51.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"f0970c66-9046-48a6-bba8-90e5f4502e43","direction":"outgoing","index":118915,"result_id":"af0bee49-7ff3-4854-a01a-9dc370f5c896","status":200,"timestamp":"2026-05-22T11:02:51.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:51.292-04:00"},{"id":"c0f5c17e-a76f-4644-8d60-7d3ebf11accf","created_at":"2026-05-22T11:02:51.895-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4ecc698a-edff-4523-9042-eb7ecf7fae1d","direction":"outgoing","index":118916,"result_id":"c0f5c17e-a76f-4644-8d60-7d3ebf11accf","status":200,"timestamp":"2026-05-22T11:02:51.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"436dbd6e-4a51-4804-97c0-89ecb374650d","direction":"outgoing","index":118917,"result_id":"c0f5c17e-a76f-4644-8d60-7d3ebf11accf","status":200,"timestamp":"2026-05-22T11:02:51.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"1e7ae6ea-8c04-46c2-9f04-7a896d20d6dc","direction":"outgoing","index":118918,"result_id":"c0f5c17e-a76f-4644-8d60-7d3ebf11accf","status":200,"timestamp":"2026-05-22T11:02:51.937-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"3d49e618-1f51-45ff-bda1-fd95aff60a0f","direction":"outgoing","index":118919,"result_id":"c0f5c17e-a76f-4644-8d60-7d3ebf11accf","status":200,"timestamp":"2026-05-22T11:02:51.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:51.895-04:00"},{"id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","created_at":"2026-05-22T11:02:52.926-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7524dc7d-01b3-45da-95f3-db29930084b2","direction":"outgoing","index":118920,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:52.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4a1decc2-9b71-48a9-937f-192fd9bd241a","direction":"outgoing","index":118921,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:52.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"98821b4b-5c11-482c-9fb7-c353c24d17f7","direction":"outgoing","index":118922,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:52.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"dca92b0e-7f5f-4991-99c1-501c5e899789","direction":"outgoing","index":118923,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:52.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"97053e96-e1ac-4196-ba7a-0dd6c5902891","direction":"outgoing","index":118924,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:52.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fcf767ac-bf64-4565-a80e-a84f165e2988","direction":"outgoing","index":118925,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:53.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b6090e62-de1c-4161-b8a4-fb28b0df21b4","direction":"outgoing","index":118926,"result_id":"bfe472b5-af75-44d4-9341-c9014d1caaa1","status":200,"timestamp":"2026-05-22T11:02:53.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:52.926-04:00"},{"id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","created_at":"2026-05-22T11:02:54.121-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d6fcfbc6-896b-4a3f-8ab7-0db8d1e402cc","direction":"outgoing","index":118927,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c5b1ab5e-bd0f-4dba-b341-4e01e8b312e9","direction":"outgoing","index":118928,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bdfc2f43-4d9f-4e7f-b263-6bd9c94100a2","direction":"outgoing","index":118929,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"90005996-1acb-4df0-9190-33ed80dc215c","direction":"outgoing","index":118930,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"49ba8993-8ae8-4470-840b-0c2a02dec0b8","direction":"outgoing","index":118931,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b4bafb03-3f1f-4d08-9d73-85e9c344cb13","direction":"outgoing","index":118932,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1eb64892-1843-4588-97c6-deac8d14c63c","direction":"outgoing","index":118933,"result_id":"8eae415e-f2a3-430b-a244-a95d93d73c0e","status":200,"timestamp":"2026-05-22T11:02:54.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:54.121-04:00"},{"id":"6a128703-116c-450f-8453-3155fb6a9e6b","created_at":"2026-05-22T11:02:54.601-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1ca76501-df84-4c6f-8cde-f5cccad7f7bc","direction":"outgoing","index":118934,"result_id":"6a128703-116c-450f-8453-3155fb6a9e6b","status":200,"timestamp":"2026-05-22T11:02:54.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"ee2e57ba-3b9c-4476-aeae-e0ed75bdd2c6","direction":"outgoing","index":118935,"result_id":"6a128703-116c-450f-8453-3155fb6a9e6b","status":200,"timestamp":"2026-05-22T11:02:54.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"567072e1-86c7-4d69-b04d-f01536fabe06","direction":"outgoing","index":118936,"result_id":"6a128703-116c-450f-8453-3155fb6a9e6b","status":200,"timestamp":"2026-05-22T11:02:54.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:54.601-04:00"},{"id":"f47fedc8-f035-4a5f-b238-512a49cd6410","created_at":"2026-05-22T11:02:54.757-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55dd70fd-d9bb-40d1-b837-f7d8aa1a8279","direction":"outgoing","index":118937,"result_id":"f47fedc8-f035-4a5f-b238-512a49cd6410","status":200,"timestamp":"2026-05-22T11:02:54.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:54.757-04:00"},{"id":"59ac3f40-99b3-4ae8-81eb-7025ea720b25","created_at":"2026-05-22T11:02:55.211-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7e674539-b7c4-4ba7-9043-9229724f77e4","direction":"outgoing","index":118938,"result_id":"59ac3f40-99b3-4ae8-81eb-7025ea720b25","status":200,"timestamp":"2026-05-22T11:02:55.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"8841896c-dcb4-4569-8ed4-ec9f48c58071","direction":"outgoing","index":118939,"result_id":"59ac3f40-99b3-4ae8-81eb-7025ea720b25","status":200,"timestamp":"2026-05-22T11:02:55.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:55.211-04:00"},{"id":"304e644a-4b52-45d4-94bc-654d59686db3","created_at":"2026-05-22T11:02:57.670-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:57.670-04:00"},{"id":"9f62ec40-06dc-4590-87fa-7cd6d4b83524","created_at":"2026-05-22T11:02:57.697-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:57.697-04:00"},{"id":"fffc5c73-544e-4286-ba3a-09aab89a2914","created_at":"2026-05-22T11:02:57.700-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab-us_core_v400_observation_lab_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:57.700-04:00"},{"id":"8432769e-bee8-4fc0-90c7-acf985920175","created_at":"2026-05-22T11:02:57.701-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_observation_lab","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:57.701-04:00"},{"id":"b694b722-13a8-40da-8587-99058c800dd0","created_at":"2026-05-22T11:02:58.496-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"43f11627-db0f-4bf5-82dc-142386f8f696","direction":"outgoing","index":118940,"result_id":"b694b722-13a8-40da-8587-99058c800dd0","status":200,"timestamp":"2026-05-22T11:02:58.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"1c22b051-418f-4571-bb78-591aabaa2eed","direction":"outgoing","index":118941,"result_id":"b694b722-13a8-40da-8587-99058c800dd0","status":200,"timestamp":"2026-05-22T11:02:58.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"829c061b-eeaf-4613-9283-90e0e1dd43f5","direction":"outgoing","index":118942,"result_id":"b694b722-13a8-40da-8587-99058c800dd0","status":200,"timestamp":"2026-05-22T11:02:58.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"03315b97-ccb8-4a47-bd84-5a88313528f8","direction":"outgoing","index":118943,"result_id":"b694b722-13a8-40da-8587-99058c800dd0","status":200,"timestamp":"2026-05-22T11:02:58.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"c6d93c46-27a1-4474-aa1f-dae374a1d6b9","direction":"outgoing","index":118944,"result_id":"b694b722-13a8-40da-8587-99058c800dd0","status":200,"timestamp":"2026-05-22T11:02:58.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:02:58.496-04:00"},{"id":"692d5a32-f902-4ddb-a118-ec8542186e83","created_at":"2026-05-22T11:03:01.662-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3deeb99b-43be-4e5a-811c-e862c2d33001","direction":"outgoing","index":118945,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1bd43cc3-2387-465d-a967-20e27a8f1d7a","direction":"outgoing","index":118946,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6769332-fd50-46d0-b1a5-e9efcab47f9a","direction":"outgoing","index":118947,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9177b041-f0e7-41ce-a2ca-9308ac43fa76","direction":"outgoing","index":118948,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"ed0c64c7-6769-46a1-8925-725346765b08","direction":"outgoing","index":118949,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93b9de50-5f6f-4df3-bfaf-0842b43a73e4","direction":"outgoing","index":118950,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f89f912-efd1-4fac-92ce-a6bf480bcf05","direction":"outgoing","index":118951,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"4339f79f-a2bd-4b46-b39b-6b2017e3a3ca","direction":"outgoing","index":118952,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b890ad7d-3724-41b7-9576-d63aee9b4714","direction":"outgoing","index":118953,"result_id":"692d5a32-f902-4ddb-a118-ec8542186e83","status":200,"timestamp":"2026-05-22T11:03:01.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:01.662-04:00"},{"id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","created_at":"2026-05-22T11:03:02.726-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"560e4cc7-84c8-4141-9aeb-4c2f02b7d979","direction":"outgoing","index":118954,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c30a3821-6c9b-426c-93c0-d41087cf08aa","direction":"outgoing","index":118955,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5707dc61-d54b-4c75-9d0d-37ababb4b218","direction":"outgoing","index":118956,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dae471f3-8616-4c2e-b292-33f082f91f87","direction":"outgoing","index":118957,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ce2c0d8c-8ea8-4ce9-bf3d-32b36886e214","direction":"outgoing","index":118958,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0018b48f-73bd-4ac6-b18b-d2cc7122a4a7","direction":"outgoing","index":118959,"result_id":"0580fc6e-eca6-4748-95d8-ee09fbe20ed6","status":200,"timestamp":"2026-05-22T11:03:02.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:02.726-04:00"},{"id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","created_at":"2026-05-22T11:03:04.882-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"778d9874-3409-4043-83a7-d297a2c3a592","direction":"outgoing","index":118960,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f73dc304-e9be-41bd-8196-a144c7cd21d8","direction":"outgoing","index":118961,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcab5eff-4dc8-406d-b280-d7dd0558fedf","direction":"outgoing","index":118962,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d53d6bed-5531-4b13-a7c2-2c3cc13e5c2d","direction":"outgoing","index":118963,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"96b0d385-a7f8-4d69-b17e-38b5e524059d","direction":"outgoing","index":118964,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"08a16ffd-81f7-4149-ac92-4e640be81ac2","direction":"outgoing","index":118965,"result_id":"45ecbc77-a973-4530-a5bb-988f5b55e9ae","status":200,"timestamp":"2026-05-22T11:03:04.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:04.882-04:00"},{"id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","created_at":"2026-05-22T11:03:07.627-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d0008d7a-5f4d-46ef-a6a2-3c018006984c","direction":"outgoing","index":118966,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2fdc0899-83ee-4c8a-8245-0e874dbffbbc","direction":"outgoing","index":118967,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e838e78f-a576-4033-ab7c-5a5bfe633acf","direction":"outgoing","index":118968,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=62c3eae1-81f5-489b-a0b8-76b56f5084c0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"80a238df-b4b5-4064-b062-fb7e39fc2076","direction":"outgoing","index":118969,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"55ff4d3c-a350-4ef2-8c50-e7c5f5c46e60","direction":"outgoing","index":118970,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3c67c14-cb6f-4784-9d14-9c0adc25ac7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dbc604bf-f477-4ec0-a2e0-bcbd0dabec7f","direction":"outgoing","index":118971,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fed95f13-dfab-4162-b69b-6e5433f69319","direction":"outgoing","index":118972,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c271729c-7e63-4c91-ad07-30b342e52ed0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"70ed74ef-7a26-46c2-adb6-2b0758d2c4d7","direction":"outgoing","index":118973,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a724764e-6fd5-4e66-af46-6354927380d4","direction":"outgoing","index":118974,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=310a3068-9c40-43f8-93c4-df04701a5967\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d02b711-8f1a-4ffe-a844-8a9bd100cff6","direction":"outgoing","index":118975,"result_id":"17075cf7-4aea-4b2f-8b2f-1f120b6bb050","status":200,"timestamp":"2026-05-22T11:03:07.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:07.627-04:00"},{"id":"28fa5dea-df03-4663-ae2f-062b325158a6","created_at":"2026-05-22T11:03:07.992-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5ac1ee6d-91e7-45e2-aa85-ac95a50f75c4","direction":"outgoing","index":118976,"result_id":"28fa5dea-df03-4663-ae2f-062b325158a6","status":200,"timestamp":"2026-05-22T11:03:07.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:07.992-04:00"},{"id":"ee2539be-f47d-45e8-bdc3-53fd611e3b98","created_at":"2026-05-22T11:03:08.352-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d237acfa-834c-48ef-ae8b-4fea3fcfaa1f","direction":"outgoing","index":118977,"result_id":"ee2539be-f47d-45e8-bdc3-53fd611e3b98","status":200,"timestamp":"2026-05-22T11:03:08.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85","verb":"get"},{"id":"4b28b101-8caf-4e63-932e-003e283a7cc7","direction":"outgoing","index":118978,"result_id":"ee2539be-f47d-45e8-bdc3-53fd611e3b98","status":200,"timestamp":"2026-05-22T11:03:08.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:08.352-04:00"},{"id":"537052e7-a34e-452f-8bf4-492bec014334","created_at":"2026-05-22T11:03:10.721-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:10.721-04:00"},{"id":"6bf6a255-3aab-4281-b416-ca019ce05399","created_at":"2026-05-22T11:03:10.755-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:10.755-04:00"},{"id":"33d2a11b-98b7-4da1-bb43-7f3316b7a449","created_at":"2026-05-22T11:03:10.758-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure-us_core_v400_blood_pressure_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:10.758-04:00"},{"id":"9a9c9857-b26e-4c9c-86b5-1756129908b4","created_at":"2026-05-22T11:03:10.760-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_blood_pressure","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:10.760-04:00"},{"id":"ad223f25-e627-43b4-996b-1050bd75976a","created_at":"2026-05-22T11:03:11.438-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a28f2114-0635-4235-8543-f3e20457b512","direction":"outgoing","index":118979,"result_id":"ad223f25-e627-43b4-996b-1050bd75976a","status":200,"timestamp":"2026-05-22T11:03:11.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"111139eb-d4a8-40c3-a108-7462d4cb91a0","direction":"outgoing","index":118980,"result_id":"ad223f25-e627-43b4-996b-1050bd75976a","status":200,"timestamp":"2026-05-22T11:03:11.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"744a4e97-a177-415c-acfa-32d865d9fbf6","direction":"outgoing","index":118981,"result_id":"ad223f25-e627-43b4-996b-1050bd75976a","status":200,"timestamp":"2026-05-22T11:03:11.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"add3f343-50e8-4176-8940-3fb61767a5fd","direction":"outgoing","index":118982,"result_id":"ad223f25-e627-43b4-996b-1050bd75976a","status":200,"timestamp":"2026-05-22T11:03:11.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"3551c52d-4433-4c18-a479-66c674594dfa","direction":"outgoing","index":118983,"result_id":"ad223f25-e627-43b4-996b-1050bd75976a","status":200,"timestamp":"2026-05-22T11:03:11.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:11.438-04:00"},{"id":"863a9a08-ea65-4bf8-ae52-6703e660f690","created_at":"2026-05-22T11:03:13.026-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6c92ccff-e1f8-4f38-b8c4-834dc7140279","direction":"outgoing","index":118984,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"4e011c7c-37fc-4ee9-bab5-27fd7a0a36f8","direction":"outgoing","index":118985,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.041-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"618df725-d982-4379-a04b-e4335558390f","direction":"outgoing","index":118986,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5ac13bd-32b3-446b-8de2-5bd21de68f65","direction":"outgoing","index":118987,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a6fc9d48-3eae-4fbc-b865-d501b622af75","direction":"outgoing","index":118988,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4574686e-69aa-4ca1-b9cd-a7c767b8b776","direction":"outgoing","index":118989,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2195334-8f34-4e14-927b-3808ffb810fc","direction":"outgoing","index":118990,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"f6a249c3-bab1-4af6-a39f-78dd163382fa","direction":"outgoing","index":118991,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f7d03cb-e663-40ff-8d2e-0c210cb7311c","direction":"outgoing","index":118992,"result_id":"863a9a08-ea65-4bf8-ae52-6703e660f690","status":200,"timestamp":"2026-05-22T11:03:13.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:13.026-04:00"},{"id":"d900e639-475f-463a-b32b-db137f94b78d","created_at":"2026-05-22T11:03:14.056-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4281f6f0-b33c-44e7-abcd-c4fac395372e","direction":"outgoing","index":118993,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5361435d-23f7-42b7-9d05-1683efb554d7","direction":"outgoing","index":118994,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"38488138-0515-4b77-b67e-8f78bbab0b25","direction":"outgoing","index":118995,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c41948bc-dbc1-4ad7-b6c7-c0edfb9f1af6","direction":"outgoing","index":118996,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"39c071d0-4daa-43ff-af96-13d78bb0ff59","direction":"outgoing","index":118997,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"04ce38d8-8382-4fa8-bc74-8ef1f6e77e8d","direction":"outgoing","index":118998,"result_id":"d900e639-475f-463a-b32b-db137f94b78d","status":200,"timestamp":"2026-05-22T11:03:14.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:14.056-04:00"},{"id":"b176a642-1661-4572-aa96-43bd8f667278","created_at":"2026-05-22T11:03:15.121-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"357135c3-bc13-43f0-aae2-c62ee0cac3eb","direction":"outgoing","index":118999,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2d7f47ed-b81e-4a91-b2d6-ef6559be9a84","direction":"outgoing","index":119000,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e2c7f57f-0f33-44fa-ba25-46ff922ed177","direction":"outgoing","index":119001,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85ab0ebe-4321-47ee-8b99-e4ecd0887524","direction":"outgoing","index":119002,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"b21aebc9-fe81-49d1-96a9-8274a48dde36","direction":"outgoing","index":119003,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8a720a70-1f60-4d93-9ff8-5a556d4906f3","direction":"outgoing","index":119004,"result_id":"b176a642-1661-4572-aa96-43bd8f667278","status":200,"timestamp":"2026-05-22T11:03:15.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:15.121-04:00"},{"id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","created_at":"2026-05-22T11:03:17.856-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1f234e5e-01f9-48d1-ba52-0827fcda3086","direction":"outgoing","index":119005,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"611665a7-be5b-424f-a89a-a5ae1d4860c0","direction":"outgoing","index":119006,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c6fb7c7f-709a-49ef-987b-2e6b5aacc4fb","direction":"outgoing","index":119007,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ee0ba22a-3bf6-4975-b2b7-bc414abc5aa3","direction":"outgoing","index":119008,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fc22a7d9-7f6d-480a-aefe-7f8288ff3119","direction":"outgoing","index":119009,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2986765f-a260-4b08-8020-7fe952a27ce6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9dd8e0a2-d653-4672-9140-a4db17f1bbcf","direction":"outgoing","index":119010,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2986765f-a260-4b08-8020-7fe952a27ce6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36f6b7a4-5d75-45ba-aedb-ecb16f439a25","direction":"outgoing","index":119011,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ef929abd-da1c-4ff2-8e0d-8064e89728df","direction":"outgoing","index":119012,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b0dfc1d5-e5a2-4b52-ad97-26a0a29ac04b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c185c1e6-bdfb-4ac6-a536-2ec60e9176e7","direction":"outgoing","index":119013,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b0dfc1d5-e5a2-4b52-ad97-26a0a29ac04b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5758533-c710-4057-a9be-0efa780b04ca","direction":"outgoing","index":119014,"result_id":"00c5af56-2b2d-43c0-b664-10cf0d56c02c","status":200,"timestamp":"2026-05-22T11:03:17.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:17.856-04:00"},{"id":"d3d66e15-5e0e-4505-956d-3d4afbd7f44c","created_at":"2026-05-22T11:03:18.113-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ebe8ace7-6e97-4281-b1e7-b7848259d1b2","direction":"outgoing","index":119015,"result_id":"d3d66e15-5e0e-4505-956d-3d4afbd7f44c","status":200,"timestamp":"2026-05-22T11:03:18.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:18.113-04:00"},{"id":"3a35f8bd-c579-45f1-94de-9a2ebc6190e9","created_at":"2026-05-22T11:03:18.453-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6f9a41c2-2274-4829-9a3e-63c28410d201","direction":"outgoing","index":119016,"result_id":"3a35f8bd-c579-45f1-94de-9a2ebc6190e9","status":200,"timestamp":"2026-05-22T11:03:18.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85","verb":"get"},{"id":"297c8bb3-f7fa-4e88-ad9c-5c97d56285bb","direction":"outgoing","index":119017,"result_id":"3a35f8bd-c579-45f1-94de-9a2ebc6190e9","status":200,"timestamp":"2026-05-22T11:03:18.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:18.453-04:00"},{"id":"b2ad69c0-52ec-49f8-aca6-2d45fefa80e4","created_at":"2026-05-22T11:03:19.187-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:19.187-04:00"},{"id":"55f8d41c-1fc5-41ba-b56b-e407195cec4f","created_at":"2026-05-22T11:03:19.195-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:19.195-04:00"},{"id":"7177f13a-f155-46a9-8669-aad949460770","created_at":"2026-05-22T11:03:19.206-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi-us_core_v400_bmi_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:19.206-04:00"},{"id":"a1ee8fb1-2a63-400b-9309-27db332a4915","created_at":"2026-05-22T11:03:19.213-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_bmi","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:19.213-04:00"},{"id":"3b32c306-f4d3-4289-a463-48f74be5973a","created_at":"2026-05-22T11:03:19.860-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d370a003-1161-4493-a83d-7b3ab90086e7","direction":"outgoing","index":119018,"result_id":"3b32c306-f4d3-4289-a463-48f74be5973a","status":200,"timestamp":"2026-05-22T11:03:19.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"066ed3ba-06c9-4dd7-ae95-cac94f2fdd78","direction":"outgoing","index":119019,"result_id":"3b32c306-f4d3-4289-a463-48f74be5973a","status":200,"timestamp":"2026-05-22T11:03:19.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"ee93d973-61b9-41a7-8016-ec864a898b4e","direction":"outgoing","index":119020,"result_id":"3b32c306-f4d3-4289-a463-48f74be5973a","status":200,"timestamp":"2026-05-22T11:03:19.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"8e115d89-9f78-4696-8989-db6c4385c5b1","direction":"outgoing","index":119021,"result_id":"3b32c306-f4d3-4289-a463-48f74be5973a","status":200,"timestamp":"2026-05-22T11:03:19.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"1e2f3ecd-6e60-4e6a-b5fa-6d210d9400c1","direction":"outgoing","index":119022,"result_id":"3b32c306-f4d3-4289-a463-48f74be5973a","status":200,"timestamp":"2026-05-22T11:03:19.979-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:19.860-04:00"},{"id":"3d2f3b6a-506b-4a08-a7da-64288e58472f","created_at":"2026-05-22T11:03:20.413-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"33f5582a-de9e-4db2-82df-4887cabf818c","direction":"outgoing","index":119023,"result_id":"3d2f3b6a-506b-4a08-a7da-64288e58472f","status":200,"timestamp":"2026-05-22T11:03:20.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"29e1b6b8-35e8-4be7-ab00-6adfb0c8cf3d","direction":"outgoing","index":119024,"result_id":"3d2f3b6a-506b-4a08-a7da-64288e58472f","status":200,"timestamp":"2026-05-22T11:03:20.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"5d3d16c1-ea57-49f5-b907-aba3cd4bf311","direction":"outgoing","index":119025,"result_id":"3d2f3b6a-506b-4a08-a7da-64288e58472f","status":200,"timestamp":"2026-05-22T11:03:20.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:20.413-04:00"},{"id":"60192895-e32d-4449-bdad-bf609341586b","created_at":"2026-05-22T11:03:21.270-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5642ad32-3e92-4083-b7e0-d5cba19a77d8","direction":"outgoing","index":119026,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"4c06db2c-892d-439a-b9a4-d4d31a9f0c94","direction":"outgoing","index":119027,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"77cedfed-37c4-4c03-bf0d-af5df4034095","direction":"outgoing","index":119028,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"3f225b58-d424-4eaf-934b-a3ef1f8d4cad","direction":"outgoing","index":119029,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"22838841-cc9d-4e03-ac4a-08c267895cdb","direction":"outgoing","index":119030,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"b2c1c978-9bb4-4d2c-8786-cab5b861a156","direction":"outgoing","index":119031,"result_id":"60192895-e32d-4449-bdad-bf609341586b","status":200,"timestamp":"2026-05-22T11:03:21.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:21.270-04:00"},{"id":"33a1fc78-f1fb-49e4-a681-168811621c17","created_at":"2026-05-22T11:03:21.652-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"67dd8baa-1d81-44a3-8fea-76b6a72fe717","direction":"outgoing","index":119032,"result_id":"33a1fc78-f1fb-49e4-a681-168811621c17","status":200,"timestamp":"2026-05-22T11:03:21.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"1dee31c8-0e5d-428e-b110-784109c8d436","direction":"outgoing","index":119033,"result_id":"33a1fc78-f1fb-49e4-a681-168811621c17","status":200,"timestamp":"2026-05-22T11:03:21.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:21.652-04:00"},{"id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","created_at":"2026-05-22T11:03:22.483-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"45ccc4cd-a4a6-4503-b645-79a0d0d81664","direction":"outgoing","index":119034,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.489-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"3706b136-c5c7-449c-bde8-794211c2abb9","direction":"outgoing","index":119035,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"81bc9541-8294-447d-803e-48b29736b6c3","direction":"outgoing","index":119036,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"a7a5a521-b17c-4a45-9afa-0af79fa6ee06","direction":"outgoing","index":119037,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"999c1f7a-21b4-43a0-8408-655d1525ea25","direction":"outgoing","index":119038,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"291ed8ad-72ec-4583-8676-5c677945bed9","direction":"outgoing","index":119039,"result_id":"b52389a2-4e79-4534-9b88-f0ebb8f55de1","status":200,"timestamp":"2026-05-22T11:03:22.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:22.483-04:00"},{"id":"18061ab4-490b-4018-8a76-2881ac7847e2","created_at":"2026-05-22T11:03:22.679-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"48f89c4b-d026-480a-9328-b53905d3d8d9","direction":"outgoing","index":119040,"result_id":"18061ab4-490b-4018-8a76-2881ac7847e2","status":200,"timestamp":"2026-05-22T11:03:22.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:22.679-04:00"},{"id":"f4296f65-9a01-4f99-9a9e-7fdf17fcd9b3","created_at":"2026-05-22T11:03:22.988-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cf24104b-14cf-4b4e-b05e-c1416dcef4a9","direction":"outgoing","index":119041,"result_id":"f4296f65-9a01-4f99-9a9e-7fdf17fcd9b3","status":200,"timestamp":"2026-05-22T11:03:22.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85","verb":"get"},{"id":"32b6ae89-f7b4-4f18-9490-a0a47ff04ec6","direction":"outgoing","index":119042,"result_id":"f4296f65-9a01-4f99-9a9e-7fdf17fcd9b3","status":200,"timestamp":"2026-05-22T11:03:23.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:22.988-04:00"},{"id":"6e428ae6-d344-4d5f-a2f1-67aaeffea502","created_at":"2026-05-22T11:03:23.855-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:23.855-04:00"},{"id":"1a58ba2b-9d0f-4f35-9910-fc01c2167ddc","created_at":"2026-05-22T11:03:23.875-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:23.875-04:00"},{"id":"c3903e84-f24f-4b85-9e87-656d820c8ade","created_at":"2026-05-22T11:03:23.881-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference-us_core_v400_head_circumference_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:23.881-04:00"},{"id":"c19a955f-e3ce-4d40-9dcc-d2e2836ff2d1","created_at":"2026-05-22T11:03:23.884-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:23.884-04:00"},{"id":"365b4b45-49bb-43c5-a660-d45e545ccd39","created_at":"2026-05-22T11:03:24.673-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e4d0048d-b825-480c-a66d-5b1b115ff146","direction":"outgoing","index":119043,"result_id":"365b4b45-49bb-43c5-a660-d45e545ccd39","status":200,"timestamp":"2026-05-22T11:03:24.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"271bad1c-7758-439e-a7ac-a1ab6e15a33c","direction":"outgoing","index":119044,"result_id":"365b4b45-49bb-43c5-a660-d45e545ccd39","status":200,"timestamp":"2026-05-22T11:03:24.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"e50a5b42-94e6-4bd9-92f8-0f89f8585d12","direction":"outgoing","index":119045,"result_id":"365b4b45-49bb-43c5-a660-d45e545ccd39","status":200,"timestamp":"2026-05-22T11:03:24.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"f6079d5c-8f70-45a4-a821-72386f295b43","direction":"outgoing","index":119046,"result_id":"365b4b45-49bb-43c5-a660-d45e545ccd39","status":200,"timestamp":"2026-05-22T11:03:24.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"d191fd4c-ea4b-4228-9053-683dbf58b201","direction":"outgoing","index":119047,"result_id":"365b4b45-49bb-43c5-a660-d45e545ccd39","status":200,"timestamp":"2026-05-22T11:03:24.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:24.673-04:00"},{"id":"5e154675-69fa-44ad-bb64-acf1f7377092","created_at":"2026-05-22T11:03:26.261-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"342c47e1-e89c-40a6-8715-f7c09ade92dd","direction":"outgoing","index":119048,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b4e09382-3158-43ba-b53d-9c19b70a57f8","direction":"outgoing","index":119049,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd394a2d-1bab-4d58-8877-ab8bfb13accd","direction":"outgoing","index":119050,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e397aa1-60b2-45af-bfc0-4f829b63e875","direction":"outgoing","index":119051,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"02b83a53-5000-433e-9588-fb70126e7fc7","direction":"outgoing","index":119052,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b719cb0b-45e4-4b0c-8e35-69ee91e552ca","direction":"outgoing","index":119053,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59b1b5ca-d3a9-422b-8748-4dbb9310af87","direction":"outgoing","index":119054,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"9243ac08-4ea6-4559-a2ac-375c7f5893af","direction":"outgoing","index":119055,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0a00534-5ef6-408b-b6a1-8e92c673ba2b","direction":"outgoing","index":119056,"result_id":"5e154675-69fa-44ad-bb64-acf1f7377092","status":200,"timestamp":"2026-05-22T11:03:26.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:26.261-04:00"},{"id":"03fe080b-cabd-4940-994e-25e335c06fff","created_at":"2026-05-22T11:03:27.204-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9793404e-e0a2-437e-8d03-06fd03d71b3e","direction":"outgoing","index":119057,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"609fedf2-60c5-4004-a1ee-69450964391d","direction":"outgoing","index":119058,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0c6d5e28-0ea0-4275-a8fd-eb6df33bd708","direction":"outgoing","index":119059,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6a45876e-95a7-43eb-bb07-c905a01b8dcf","direction":"outgoing","index":119060,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"57838c83-1f0e-4d12-b6f3-c5894ed3d6ec","direction":"outgoing","index":119061,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.272-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5930961b-35db-447c-8218-69212dfbddc5","direction":"outgoing","index":119062,"result_id":"03fe080b-cabd-4940-994e-25e335c06fff","status":200,"timestamp":"2026-05-22T11:03:27.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:27.204-04:00"},{"id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","created_at":"2026-05-22T11:03:28.254-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"53fd7462-a82f-41e3-87fe-80969c1f3122","direction":"outgoing","index":119063,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"53116cbb-8c22-4434-b62d-1ba239f30e58","direction":"outgoing","index":119064,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d4a6ff7-0620-4614-bcbf-7b188eba0ff8","direction":"outgoing","index":119065,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a13eeb46-657b-43d8-a2b6-9f1c2ae1d264","direction":"outgoing","index":119066,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"5d3e8bf9-5612-4521-a566-7f8c041dd2b0","direction":"outgoing","index":119067,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0eab0b9d-8a48-4e31-9731-c28b64ce55b1","direction":"outgoing","index":119068,"result_id":"da7fca02-2b0a-4fe7-bc45-b6adbd91380c","status":200,"timestamp":"2026-05-22T11:03:28.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:28.254-04:00"},{"id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","created_at":"2026-05-22T11:03:30.773-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"89bbc592-47e4-4086-9340-cb22c6a53ec8","direction":"outgoing","index":119069,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"875cd9c3-7664-44f1-b042-49ba0357a71e","direction":"outgoing","index":119070,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ba45a1f8-9ddc-4b73-aac3-d6985e8f1ce0","direction":"outgoing","index":119071,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b6f39568-c767-4418-a18e-a17b99ae10fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d8dd4e2-3e5c-4b2f-8517-26d4fa69e2ea","direction":"outgoing","index":119072,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3b6e0485-6bfa-4f96-a7c8-346c798da80d","direction":"outgoing","index":119073,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=552c8c2a-864a-4c1a-b50a-bc88c45fea38\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"624e64b6-0c59-4a7a-b5b0-31e34c99a68c","direction":"outgoing","index":119074,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.851-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fac9dd77-e145-46f0-8a3e-fc4900b5f04f","direction":"outgoing","index":119075,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"348e5c15-a820-434f-a34c-665d5d769b41","direction":"outgoing","index":119076,"result_id":"ddc7ac67-d5a1-4e93-8fd3-df813ddb0fab","status":200,"timestamp":"2026-05-22T11:03:30.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:30.773-04:00"},{"id":"357bdb34-785f-443b-8201-d57daa57a09a","created_at":"2026-05-22T11:03:30.998-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0743eaca-28a1-4a1a-b893-20e69ea23f6c","direction":"outgoing","index":119077,"result_id":"357bdb34-785f-443b-8201-d57daa57a09a","status":200,"timestamp":"2026-05-22T11:03:30.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:30.998-04:00"},{"id":"b6deb692-06f7-4292-8660-3b4221e484bd","created_at":"2026-05-22T11:03:31.346-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ffe8fbcf-bb73-447d-aa5a-3ef97fce950a","direction":"outgoing","index":119078,"result_id":"b6deb692-06f7-4292-8660-3b4221e484bd","status":200,"timestamp":"2026-05-22T11:03:31.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85","verb":"get"},{"id":"d01e4c10-64e2-4cc7-9565-d48be6f30561","direction":"outgoing","index":119079,"result_id":"b6deb692-06f7-4292-8660-3b4221e484bd","status":200,"timestamp":"2026-05-22T11:03:31.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:31.346-04:00"},{"id":"5a239bf2-826b-4b54-88a3-9e896032233c","created_at":"2026-05-22T11:03:31.790-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:31.790-04:00"},{"id":"48c1d462-eae4-49c4-a0ae-3e3879f657c5","created_at":"2026-05-22T11:03:31.819-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:31.819-04:00"},{"id":"d6fa5bd7-7bd8-4373-9017-30f523ca5d82","created_at":"2026-05-22T11:03:31.823-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height-us_core_v400_body_height_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:31.823-04:00"},{"id":"7bf6b7fc-c435-46be-bc69-25bc68520e9a","created_at":"2026-05-22T11:03:31.825-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_height","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:31.825-04:00"},{"id":"52141d48-a03f-4e46-99a8-a69322840f70","created_at":"2026-05-22T11:03:32.563-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"672b8248-67c8-4ef3-8de7-0ab5a1cb64cb","direction":"outgoing","index":119080,"result_id":"52141d48-a03f-4e46-99a8-a69322840f70","status":200,"timestamp":"2026-05-22T11:03:32.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"fc8083e3-b62f-437e-93f8-4b2dab6ef3ac","direction":"outgoing","index":119081,"result_id":"52141d48-a03f-4e46-99a8-a69322840f70","status":200,"timestamp":"2026-05-22T11:03:32.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"07f857bd-e1f6-4fb0-9b3a-2ec6d8ca97c6","direction":"outgoing","index":119082,"result_id":"52141d48-a03f-4e46-99a8-a69322840f70","status":200,"timestamp":"2026-05-22T11:03:32.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"0d45faee-09b0-4071-a742-bd280c788a66","direction":"outgoing","index":119083,"result_id":"52141d48-a03f-4e46-99a8-a69322840f70","status":200,"timestamp":"2026-05-22T11:03:32.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"57b49a00-b3c5-4a65-8473-1f7e0fccd471","direction":"outgoing","index":119084,"result_id":"52141d48-a03f-4e46-99a8-a69322840f70","status":200,"timestamp":"2026-05-22T11:03:32.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:32.563-04:00"},{"id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","created_at":"2026-05-22T11:03:34.327-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c75bfe0d-2ad8-48a3-b66e-ea6a0ee571bd","direction":"outgoing","index":119085,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.331-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7b5f8a61-7ee6-4cd1-88d4-00b311fcaa4a","direction":"outgoing","index":119086,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0df51293-6443-42fe-a90a-0613a6bf17c3","direction":"outgoing","index":119087,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fe9fe95-e7ad-4f23-b5b0-3808f22a135a","direction":"outgoing","index":119088,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"04cecaef-0d31-440b-9e9c-49e93f926969","direction":"outgoing","index":119089,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae73fbf7-64c4-4320-b086-20e326869db3","direction":"outgoing","index":119090,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64be350e-fd2d-40ba-a84a-3abf07e025d2","direction":"outgoing","index":119091,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"df52ed04-f2d7-4c26-9350-5567630e5f7d","direction":"outgoing","index":119092,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17d5b2e5-cb71-48a0-85e2-41449d0c0ed0","direction":"outgoing","index":119093,"result_id":"0af79ed5-6600-48dc-a3a6-864a68bf93c7","status":200,"timestamp":"2026-05-22T11:03:34.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:34.327-04:00"},{"id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","created_at":"2026-05-22T11:03:35.350-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9e93f1aa-51ff-4ced-9c8a-5a9b1a1c5e0a","direction":"outgoing","index":119094,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ec3a1e98-01f6-4f9c-8ece-907004578216","direction":"outgoing","index":119095,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"af0fec10-8b2b-4095-a2f1-09786fba99e3","direction":"outgoing","index":119096,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3ad28c69-19fd-4ca1-9fe5-fb37c1e46d82","direction":"outgoing","index":119097,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"0a4f1270-22cb-449a-9f76-087c14e50daa","direction":"outgoing","index":119098,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6bbee8c2-9487-4470-a808-9c4db429fd40","direction":"outgoing","index":119099,"result_id":"af7540ae-5889-4d3c-b280-ddb12a8b43bf","status":200,"timestamp":"2026-05-22T11:03:35.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:35.350-04:00"},{"id":"e31c9092-9706-468c-abf8-53585d8aea92","created_at":"2026-05-22T11:03:36.430-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4a2df778-7a7a-4148-8019-5998c39dd45c","direction":"outgoing","index":119100,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8b698f97-e149-4008-8e69-478b0d2aeeb7","direction":"outgoing","index":119101,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c462e3c-f860-41ef-b809-ddb817a56472","direction":"outgoing","index":119102,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1142091c-49c0-4ee2-9dfb-f567e630236b","direction":"outgoing","index":119103,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"dca1551f-c29e-496f-bb98-2866e5a239b4","direction":"outgoing","index":119104,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"974da95d-5be7-4f21-a76e-48a355529d14","direction":"outgoing","index":119105,"result_id":"e31c9092-9706-468c-abf8-53585d8aea92","status":200,"timestamp":"2026-05-22T11:03:36.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:36.430-04:00"},{"id":"ae1182c3-59b8-41d2-b939-ad945956216a","created_at":"2026-05-22T11:03:40.122-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d34e1505-5d4b-40f4-a084-acd545bf14d5","direction":"outgoing","index":119106,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"7c48b665-6089-4287-bffc-ac0a7885f084","direction":"outgoing","index":119107,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b0842561-ae30-4aa9-81d6-dc59525ed936","direction":"outgoing","index":119108,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ea6938-c626-4a94-b124-73345de5f9bd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0966cdc2-6d0e-4bfc-b268-839b77a56f47","direction":"outgoing","index":119109,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"0bf6f4c1-ad0c-4c7c-8c7f-6ff234400c3c","direction":"outgoing","index":119110,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=840240cd-89de-4a7b-a9a5-e66f30b066b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1cc64f0-41f6-4b86-8fb2-8f007df6701e","direction":"outgoing","index":119111,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"01b54bd6-0779-4931-a3ef-c89f08125605","direction":"outgoing","index":119112,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=10974b5d-619a-4e70-8274-01db8c4b505d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5cd081d-9b6d-4289-939a-ea112d63c861","direction":"outgoing","index":119113,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f7d261c0-452c-43b7-83b1-8e421c517f8b","direction":"outgoing","index":119114,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca3bc21e-893d-47a3-84ca-7487d66cff93\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1cfb6ab4-bd6f-4e2d-b477-d72dcd72892a","direction":"outgoing","index":119115,"result_id":"ae1182c3-59b8-41d2-b939-ad945956216a","status":200,"timestamp":"2026-05-22T11:03:40.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:40.122-04:00"},{"id":"c22cb9f2-b47a-4546-a36a-1a17eca5095e","created_at":"2026-05-22T11:03:40.373-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a86f421-fa18-43f0-bcfa-a69f58fc8ef4","direction":"outgoing","index":119116,"result_id":"c22cb9f2-b47a-4546-a36a-1a17eca5095e","status":200,"timestamp":"2026-05-22T11:03:40.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:40.373-04:00"},{"id":"f10922bc-522e-4522-bc96-60a09f54215f","created_at":"2026-05-22T11:03:40.701-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0d2171f3-22cd-48ea-a375-b691df492a92","direction":"outgoing","index":119117,"result_id":"f10922bc-522e-4522-bc96-60a09f54215f","status":200,"timestamp":"2026-05-22T11:03:40.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85","verb":"get"},{"id":"73c296dc-b01f-440e-b9c4-2cebc723e3e2","direction":"outgoing","index":119118,"result_id":"f10922bc-522e-4522-bc96-60a09f54215f","status":200,"timestamp":"2026-05-22T11:03:40.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:40.701-04:00"},{"id":"a9252deb-e27a-4f9c-9bc0-29d5665eba99","created_at":"2026-05-22T11:03:41.610-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:41.610-04:00"},{"id":"a1f2d086-af9f-4bc5-961b-ae1ccba59466","created_at":"2026-05-22T11:03:41.637-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:41.637-04:00"},{"id":"be10ebb7-1513-42a2-99f9-51f0de7ac945","created_at":"2026-05-22T11:03:41.642-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight-us_core_v400_body_weight_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:41.642-04:00"},{"id":"a609d5a5-4163-4ade-a8b0-09c710e15066","created_at":"2026-05-22T11:03:41.644-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_weight","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:41.644-04:00"},{"id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","created_at":"2026-05-22T11:03:42.359-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bfcb9b9a-be50-4656-8ad6-2d4c42e99e66","direction":"outgoing","index":119119,"result_id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","status":200,"timestamp":"2026-05-22T11:03:42.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"2cf4a1fb-75cd-45e6-82e0-5e0cb951ed92","direction":"outgoing","index":119120,"result_id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","status":200,"timestamp":"2026-05-22T11:03:42.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"8cdcf9cd-6fb6-49ed-998d-3f3354ab613e","direction":"outgoing","index":119121,"result_id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","status":200,"timestamp":"2026-05-22T11:03:42.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"198dacf6-e0e8-4cd8-98de-89d43f126537","direction":"outgoing","index":119122,"result_id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","status":200,"timestamp":"2026-05-22T11:03:42.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"3f2831d4-2ea3-4f87-913c-d15128ae3a46","direction":"outgoing","index":119123,"result_id":"e5e29fca-df89-4f69-9cb1-7f595cb00468","status":200,"timestamp":"2026-05-22T11:03:42.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:42.359-04:00"},{"id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","created_at":"2026-05-22T11:03:43.913-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"24700edb-1a22-423a-b43c-2faae00b0c72","direction":"outgoing","index":119124,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a3bd869b-dbe4-41a5-9cdc-4c48e0a27a95","direction":"outgoing","index":119125,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6aae47b-0712-4204-91f2-b2fd5d7bc29d","direction":"outgoing","index":119126,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2390c39c-7e10-41fd-aa4b-7f004f8d7c4c","direction":"outgoing","index":119127,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"e062d8d2-5748-4894-865b-b47dfc2dbd6f","direction":"outgoing","index":119128,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee3a2302-83eb-47e8-92e7-9c35cc29066c","direction":"outgoing","index":119129,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93569ce1-88de-4848-9e94-a57b738aee27","direction":"outgoing","index":119130,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1be3a130-a4cf-48fe-9904-87bab85b03c8","direction":"outgoing","index":119131,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:43.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37729fef-d8b1-4147-a653-1cf28c459f9b","direction":"outgoing","index":119132,"result_id":"2d2a75f7-eda0-40b6-a64a-4870c5f1067b","status":200,"timestamp":"2026-05-22T11:03:44.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:43.913-04:00"},{"id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","created_at":"2026-05-22T11:03:44.973-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4d7e6018-eb7b-411c-9fd2-3abc10678239","direction":"outgoing","index":119133,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:44.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"66663e48-d1f3-48b8-a9c4-5961c2f032dd","direction":"outgoing","index":119134,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:44.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1bea9a79-fef1-4ff6-a5f5-815bc374a4fe","direction":"outgoing","index":119135,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:45.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b1d21d0e-a1b2-4ee5-9a7d-5f5f0c84efcc","direction":"outgoing","index":119136,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:45.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"bb2d142c-ac18-4098-8a20-570e28f93d9c","direction":"outgoing","index":119137,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:45.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"faacebf0-d6da-4999-abc7-cf16d4271d81","direction":"outgoing","index":119138,"result_id":"e053d55b-cbf0-4c75-992b-5641dc4c1522","status":200,"timestamp":"2026-05-22T11:03:45.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:44.973-04:00"},{"id":"3268b6b6-076c-4762-93a5-e94297470bfa","created_at":"2026-05-22T11:03:46.057-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8efbd2c0-bb7c-4901-8413-a1d76d5e8b2e","direction":"outgoing","index":119139,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"1c861b6b-8265-4b9d-b13e-d0eb5038a8dc","direction":"outgoing","index":119140,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3ada737-a12f-42c2-87da-3935d776cd0e","direction":"outgoing","index":119141,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"502e2553-36df-46fd-960a-ebacc426f122","direction":"outgoing","index":119142,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"aa23c297-eed6-40ad-87fb-da36bd93c4fe","direction":"outgoing","index":119143,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9179c12-a622-4158-9be1-575554a383d6","direction":"outgoing","index":119144,"result_id":"3268b6b6-076c-4762-93a5-e94297470bfa","status":200,"timestamp":"2026-05-22T11:03:46.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:46.057-04:00"},{"id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","created_at":"2026-05-22T11:03:48.872-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8215fcba-10cd-4e65-8588-93cec9d2fa28","direction":"outgoing","index":119145,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"997cfc81-e6fe-4b2c-9db3-0931bb4c0214","direction":"outgoing","index":119146,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d2ae6774-fdd0-4f95-8890-a6e417696fae","direction":"outgoing","index":119147,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cdecbf44-2a62-4ed8-85b4-6b2d1cf16e63","direction":"outgoing","index":119148,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"30876515-d4ba-41bd-bd59-9d2c5900695c","direction":"outgoing","index":119149,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc2422f-7cab-46f8-bad3-5a7930897d87\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee1d4367-77dc-46fc-bd14-7b0103cded75","direction":"outgoing","index":119150,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc2422f-7cab-46f8-bad3-5a7930897d87\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3987f43-8904-4869-badd-3165662dc5e6","direction":"outgoing","index":119151,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4faa55a6-83cb-4a3b-957e-5d5102c0b2a5","direction":"outgoing","index":119152,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba0d0f42-3783-428f-b9cb-da54ff979795\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dcc30d32-f5ab-4bf7-bf02-46f488920efb","direction":"outgoing","index":119153,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.979-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba0d0f42-3783-428f-b9cb-da54ff979795\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"57675725-bc9f-4e17-b5e8-b4ac47059ac6","direction":"outgoing","index":119154,"result_id":"2b9fed5b-d7e4-462e-8eec-320ab81c6e5b","status":200,"timestamp":"2026-05-22T11:03:48.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:48.872-04:00"},{"id":"b2b659fd-0b98-4de6-aa3a-e893a6d9b72c","created_at":"2026-05-22T11:03:49.116-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d2609f1c-9d5e-4af6-be09-fd15fedd4204","direction":"outgoing","index":119155,"result_id":"b2b659fd-0b98-4de6-aa3a-e893a6d9b72c","status":200,"timestamp":"2026-05-22T11:03:49.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:49.116-04:00"},{"id":"92eabfb8-0527-4d63-a8cd-bf8ba72d16fd","created_at":"2026-05-22T11:03:49.465-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"efe26c68-789a-4696-9fbf-bf97fab62596","direction":"outgoing","index":119156,"result_id":"92eabfb8-0527-4d63-a8cd-bf8ba72d16fd","status":200,"timestamp":"2026-05-22T11:03:49.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85","verb":"get"},{"id":"89f0507b-1b31-4a62-a704-4b61a7751e8a","direction":"outgoing","index":119157,"result_id":"92eabfb8-0527-4d63-a8cd-bf8ba72d16fd","status":200,"timestamp":"2026-05-22T11:03:49.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:49.465-04:00"},{"id":"f0e78e45-90f8-4ccc-8855-365e057180d0","created_at":"2026-05-22T11:03:50.412-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:50.412-04:00"},{"id":"9f7070d7-99a2-4d88-933b-73e0c5f212b9","created_at":"2026-05-22T11:03:50.446-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:50.446-04:00"},{"id":"e17b4e29-d6fc-4782-bfda-e92953269feb","created_at":"2026-05-22T11:03:50.450-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature-us_core_v400_body_temperature_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:50.450-04:00"},{"id":"35dbb6d4-4517-419b-94f1-cc92fb6ff7f5","created_at":"2026-05-22T11:03:50.451-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_body_temperature","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:50.451-04:00"},{"id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","created_at":"2026-05-22T11:03:51.180-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8ac44d7b-074f-4575-a010-0411770a6166","direction":"outgoing","index":119158,"result_id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","status":200,"timestamp":"2026-05-22T11:03:51.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"645f759d-f140-4bc1-a0bb-38542a43857d","direction":"outgoing","index":119159,"result_id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","status":200,"timestamp":"2026-05-22T11:03:51.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"e65b2274-4e16-42d2-a55d-25df18b7c0f0","direction":"outgoing","index":119160,"result_id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","status":200,"timestamp":"2026-05-22T11:03:51.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"ce2d1650-f3cb-4a05-8e98-c66a6c1c7bd1","direction":"outgoing","index":119161,"result_id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","status":200,"timestamp":"2026-05-22T11:03:51.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"e902de8d-deb8-434a-9120-b0d489ede5f7","direction":"outgoing","index":119162,"result_id":"7839dffe-4c92-45b2-a681-d0f4de4491dd","status":200,"timestamp":"2026-05-22T11:03:51.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:51.180-04:00"},{"id":"631925d1-3c85-4c22-8a66-f17e847893aa","created_at":"2026-05-22T11:03:52.804-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"41924921-7e62-4f9f-8cd4-1d5762586562","direction":"outgoing","index":119163,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"05e7d01b-7932-4cb2-be5e-06dd633f3760","direction":"outgoing","index":119164,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83fa3c47-1679-46d9-8aa2-a56ae0907347","direction":"outgoing","index":119165,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ce23d3e1-dd32-4029-b86a-4085d4cff362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc21dd29-4ce8-4f69-b0ab-1ca628eebc17","direction":"outgoing","index":119166,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"140983be-a259-4f51-b738-d7b6f5faa0ce","direction":"outgoing","index":119167,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c7719246-a634-4097-8165-6e24d8e87d89","direction":"outgoing","index":119168,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b9f6b73-6662-4b2d-b2e2-7b56e3513914\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2508e1e-3744-43f1-99ac-a9538cc1ab1f","direction":"outgoing","index":119169,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"e5642496-b504-4991-bbaf-7dd1a18cae41","direction":"outgoing","index":119170,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d99e6058-1cee-40de-acc8-11f526eafe3f","direction":"outgoing","index":119171,"result_id":"631925d1-3c85-4c22-8a66-f17e847893aa","status":200,"timestamp":"2026-05-22T11:03:52.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09f780ce-62da-4b16-9fca-94800e9da601\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:52.804-04:00"},{"id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","created_at":"2026-05-22T11:03:53.751-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5f5f6a90-ce84-46e6-837b-d7d9e005732b","direction":"outgoing","index":119172,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7768115c-0446-424f-a78e-438d2fe79c0e","direction":"outgoing","index":119173,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4eed2aa9-25d8-433f-9f5c-6a5cfd6ce5a7","direction":"outgoing","index":119174,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"10a28e06-d128-47e9-8903-f7f1436a2ff2","direction":"outgoing","index":119175,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ed1d70a9-ae06-4953-bded-3f2116cf9392","direction":"outgoing","index":119176,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d5a0f402-d8b2-4fb7-b569-e44645834be3","direction":"outgoing","index":119177,"result_id":"85c2e0f6-6540-428f-93c1-b47f2b7c7620","status":200,"timestamp":"2026-05-22T11:03:53.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:53.751-04:00"},{"id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","created_at":"2026-05-22T11:03:54.967-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e598dcdf-3c8e-4ffe-a56e-ee8c1f65a8ef","direction":"outgoing","index":119178,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:54.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8ee16ffd-a535-49a7-bc4d-a3d4178e5b58","direction":"outgoing","index":119179,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:54.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3316c135-5349-46e3-911c-c5276d2d3514","direction":"outgoing","index":119180,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:54.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5c847291-3959-4ab3-aced-6784e9eafdb6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a02415d3-f939-4c98-a478-a9c34be6c795","direction":"outgoing","index":119181,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:55.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"2be7fcbb-b68d-4914-894c-bb51a8911808","direction":"outgoing","index":119182,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:55.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b59915c3-02b2-4d43-be82-364fba4edbb5","direction":"outgoing","index":119183,"result_id":"1eb4ac7b-ea56-4280-8631-f1c588cee887","status":200,"timestamp":"2026-05-22T11:03:55.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba9bccbe-e274-4b69-abb7-594e8cef9f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:54.967-04:00"},{"id":"27318100-4b25-4b31-a7db-7b7f55b726fc","created_at":"2026-05-22T11:03:57.765-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"733ade2c-517d-4824-b880-66fe8a48ed08","direction":"outgoing","index":119184,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"669ab7e7-16d5-4168-b1b7-98127ead87a4","direction":"outgoing","index":119185,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e0693129-8dbe-4cd7-99b8-205ebe0519e4","direction":"outgoing","index":119186,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4b76c6c6-ece8-44c6-960d-956affb82d01","direction":"outgoing","index":119187,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"77fd4d90-7b34-458e-805e-5b154e18982f","direction":"outgoing","index":119188,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05c974ff-c581-490f-9050-04ce5d2cc9f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8830a259-4dbb-4b27-8460-942af0a8ef8c","direction":"outgoing","index":119189,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05c974ff-c581-490f-9050-04ce5d2cc9f7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2cefb64-1870-47e8-a8b4-197c801f1dc7","direction":"outgoing","index":119190,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f19470b9-de23-4dce-a38d-6bf303773e23","direction":"outgoing","index":119191,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06ced13f-0e00-4711-9f72-c256b028e785\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e3d3489-06ad-4c98-82b8-d58e5d328212","direction":"outgoing","index":119192,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06ced13f-0e00-4711-9f72-c256b028e785\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0657bdd-2d77-469f-b314-173606ed3225","direction":"outgoing","index":119193,"result_id":"27318100-4b25-4b31-a7db-7b7f55b726fc","status":200,"timestamp":"2026-05-22T11:03:57.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:57.765-04:00"},{"id":"bc7223f9-1d97-48ca-9d09-33faaff770be","created_at":"2026-05-22T11:03:58.013-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0d15af0f-2913-421e-8302-7b003d4df3dd","direction":"outgoing","index":119194,"result_id":"bc7223f9-1d97-48ca-9d09-33faaff770be","status":200,"timestamp":"2026-05-22T11:03:58.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:58.013-04:00"},{"id":"e25e8237-1f50-4ed3-bcca-07394a04d0f0","created_at":"2026-05-22T11:03:58.340-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c8725a8c-a40f-48fb-b226-e32e0dbd8d34","direction":"outgoing","index":119195,"result_id":"e25e8237-1f50-4ed3-bcca-07394a04d0f0","status":200,"timestamp":"2026-05-22T11:03:58.344-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85","verb":"get"},{"id":"202e5bc1-8c71-4864-99ed-bb5302857f82","direction":"outgoing","index":119196,"result_id":"e25e8237-1f50-4ed3-bcca-07394a04d0f0","status":200,"timestamp":"2026-05-22T11:03:58.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:58.340-04:00"},{"id":"c54118e7-ac46-47fb-9918-2924dc753d6a","created_at":"2026-05-22T11:03:59.130-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:59.130-04:00"},{"id":"1ede0a84-0e28-4a29-a94a-b9b75114fbe4","created_at":"2026-05-22T11:03:59.165-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:59.165-04:00"},{"id":"044231b5-f2f1-42d3-b005-19acb09c14b1","created_at":"2026-05-22T11:03:59.191-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate-us_core_v400_heart_rate_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:59.191-04:00"},{"id":"9592b393-c342-4646-bf99-72bd2a441fbb","created_at":"2026-05-22T11:03:59.193-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_heart_rate","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:59.193-04:00"},{"id":"f8f57269-3306-4784-a826-00448e8febda","created_at":"2026-05-22T11:03:59.869-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e18af0eb-9191-4fa5-8284-1ff0264e7619","direction":"outgoing","index":119197,"result_id":"f8f57269-3306-4784-a826-00448e8febda","status":200,"timestamp":"2026-05-22T11:03:59.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"6b37c526-5fc3-4c29-8691-dbbf69926c31","direction":"outgoing","index":119198,"result_id":"f8f57269-3306-4784-a826-00448e8febda","status":200,"timestamp":"2026-05-22T11:03:59.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"558712ba-93ce-4b25-8c46-f15e73ed1198","direction":"outgoing","index":119199,"result_id":"f8f57269-3306-4784-a826-00448e8febda","status":200,"timestamp":"2026-05-22T11:03:59.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"fe4d0510-872a-4bae-8441-506abf97797a","direction":"outgoing","index":119200,"result_id":"f8f57269-3306-4784-a826-00448e8febda","status":200,"timestamp":"2026-05-22T11:03:59.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"7debd659-b716-4ce3-9b07-1136afc3a238","direction":"outgoing","index":119201,"result_id":"f8f57269-3306-4784-a826-00448e8febda","status":200,"timestamp":"2026-05-22T11:03:59.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:03:59.869-04:00"},{"id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","created_at":"2026-05-22T11:04:03.176-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2456d463-0c68-449c-a147-2bde06d37eef","direction":"outgoing","index":119202,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"d6b182ad-6df1-4cd7-9cd4-755b316c5e5f","direction":"outgoing","index":119203,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4e2461e-975c-4e9b-997c-bd0b94ba8356","direction":"outgoing","index":119204,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d13a25e-abc4-451a-aa95-1ac502152975","direction":"outgoing","index":119205,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a15d4a00-1eee-45c7-89c0-e9a4f87a4bf2","direction":"outgoing","index":119206,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d35c46c4-80da-4d39-a024-389eb9197784","direction":"outgoing","index":119207,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e22d4c4-2b30-43a8-ad38-6a817e2e1046","direction":"outgoing","index":119208,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2c10b773-e297-402d-9b98-ef0c16e1f8ae","direction":"outgoing","index":119209,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"183af7e0-1321-441e-bc85-467a4eecc045","direction":"outgoing","index":119210,"result_id":"dbbb8e5b-3b57-465e-8f94-f4e0bc31aa5b","status":200,"timestamp":"2026-05-22T11:04:03.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:03.176-04:00"},{"id":"ae7f46de-162f-4605-b202-6e92c5607e6c","created_at":"2026-05-22T11:04:04.127-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ab0067cb-c57f-4394-beae-ae8025ebb8d4","direction":"outgoing","index":119211,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"538ea598-5253-44a1-82ac-2c7991bbb036","direction":"outgoing","index":119212,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ff7c45bc-21f0-4036-93b5-0edf857326d0","direction":"outgoing","index":119213,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ccb5bb0f-bfd0-49de-9991-c10c475ae5e8","direction":"outgoing","index":119214,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cc74e71f-f3b9-421d-b0a5-71681d663e86","direction":"outgoing","index":119215,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1102f23f-f733-40f9-9c67-8972a3bf9446","direction":"outgoing","index":119216,"result_id":"ae7f46de-162f-4605-b202-6e92c5607e6c","status":200,"timestamp":"2026-05-22T11:04:04.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:04.127-04:00"},{"id":"f4eb265d-7394-4462-8628-0fa85c0c4639","created_at":"2026-05-22T11:04:06.294-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"048654f6-1d85-4f2e-aeda-1bc2211860e6","direction":"outgoing","index":119217,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"22375fe5-57f0-4ba7-92c7-bd87ab33ce2c","direction":"outgoing","index":119218,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2d2e9b3-5e45-434f-8f8f-c33aa036af9c","direction":"outgoing","index":119219,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"586c8e89-b1e2-47e7-be0a-3bb7f02e58bb","direction":"outgoing","index":119220,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7c4a0066-bfd8-44bd-9ac9-c4945b12e118","direction":"outgoing","index":119221,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2cc44502-111c-437f-ae98-5d4b820b4673","direction":"outgoing","index":119222,"result_id":"f4eb265d-7394-4462-8628-0fa85c0c4639","status":200,"timestamp":"2026-05-22T11:04:06.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:06.294-04:00"},{"id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","created_at":"2026-05-22T11:04:08.979-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55afe8f3-24a9-4c7b-9e4e-dac879f34198","direction":"outgoing","index":119223,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"85de8234-b0b6-4931-be63-0d1220c33bef","direction":"outgoing","index":119224,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4ae4f066-4d0d-4a88-b0e2-c0fdbfba7cbe","direction":"outgoing","index":119225,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.024-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=20997c27-78df-4946-acc0-7714255be58f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c208f45-b0f3-4bbb-ad94-9dd287af7b90","direction":"outgoing","index":119226,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=20997c27-78df-4946-acc0-7714255be58f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9578a4d-fa1b-4d15-a4ec-730b31b98886","direction":"outgoing","index":119227,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e0052585-1dc2-45e5-b6ce-1859676025e7","direction":"outgoing","index":119228,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3b4e64dc-e195-4160-82b9-b4bbb39650ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab503a4e-f8c9-4f3d-85fd-a5aeff0ed92d","direction":"outgoing","index":119229,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3b4e64dc-e195-4160-82b9-b4bbb39650ee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a30ae69c-6591-421e-ba9a-e3a192990dfd","direction":"outgoing","index":119230,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"04a18f46-2396-49f3-b22f-0b3de699c987","direction":"outgoing","index":119231,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54b67502-a7e1-4e85-a5b8-b77ca8af813d","direction":"outgoing","index":119232,"result_id":"8d40f8c1-fb20-4e6f-966e-7a6dd8182f4e","status":200,"timestamp":"2026-05-22T11:04:09.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:08.979-04:00"},{"id":"ce8f00fd-b9a1-47c5-98e7-82587b2ac511","created_at":"2026-05-22T11:04:09.236-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"39b3faf3-1426-4eec-9caf-5d914324de95","direction":"outgoing","index":119233,"result_id":"ce8f00fd-b9a1-47c5-98e7-82587b2ac511","status":200,"timestamp":"2026-05-22T11:04:09.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.236-04:00"},{"id":"a9df9747-b1be-43de-a505-e7f8ed6c61b7","created_at":"2026-05-22T11:04:09.559-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d7a26302-8fc2-453e-8199-3faf29f53574","direction":"outgoing","index":119234,"result_id":"a9df9747-b1be-43de-a505-e7f8ed6c61b7","status":200,"timestamp":"2026-05-22T11:04:09.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85","verb":"get"},{"id":"ec3589f5-92ad-4b0d-95cc-3367935590dd","direction":"outgoing","index":119235,"result_id":"a9df9747-b1be-43de-a505-e7f8ed6c61b7","status":200,"timestamp":"2026-05-22T11:04:09.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.559-04:00"},{"id":"09b5b071-af8a-4ad9-8bb1-9147ad998264","created_at":"2026-05-22T11:04:09.959-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.959-04:00"},{"id":"2b0d6a0d-b469-4745-9320-b43f55097682","created_at":"2026-05-22T11:04:09.981-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.981-04:00"},{"id":"a8e02579-a5ac-4730-810a-3ee30473235e","created_at":"2026-05-22T11:04:09.987-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age-us_core_v400_pediatric_bmi_for_age_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.987-04:00"},{"id":"2e195e9b-2157-4668-9af4-477eb026db5c","created_at":"2026-05-22T11:04:09.990-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_bmi_for_age","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:09.990-04:00"},{"id":"78276f51-c239-4ab2-9a96-7a0160105286","created_at":"2026-05-22T11:04:10.689-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9ee16109-d639-471a-9650-308a47d2c5c7","direction":"outgoing","index":119236,"result_id":"78276f51-c239-4ab2-9a96-7a0160105286","status":200,"timestamp":"2026-05-22T11:04:10.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"29d82d58-25a6-4d66-bc29-59c148dfb2c9","direction":"outgoing","index":119237,"result_id":"78276f51-c239-4ab2-9a96-7a0160105286","status":200,"timestamp":"2026-05-22T11:04:10.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"a5703870-a33b-4d9c-8b7f-b6f66bae4c0d","direction":"outgoing","index":119238,"result_id":"78276f51-c239-4ab2-9a96-7a0160105286","status":200,"timestamp":"2026-05-22T11:04:10.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"50ce9a9b-98b1-4f58-832f-20c94d8951c2","direction":"outgoing","index":119239,"result_id":"78276f51-c239-4ab2-9a96-7a0160105286","status":200,"timestamp":"2026-05-22T11:04:10.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"ef923eb2-36ed-4ac2-9140-cadfcd9f7d1d","direction":"outgoing","index":119240,"result_id":"78276f51-c239-4ab2-9a96-7a0160105286","status":200,"timestamp":"2026-05-22T11:04:10.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:10.689-04:00"},{"id":"50901a73-b542-4a86-a524-d6988a897b60","created_at":"2026-05-22T11:04:12.229-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"61090d69-7d37-42bf-bfdc-b7b22bcfdea0","direction":"outgoing","index":119241,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"cc0379e9-0cbf-4b8a-b463-effe0a59af09","direction":"outgoing","index":119242,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d389de9-b99b-4379-b67a-bf1874c13ff1","direction":"outgoing","index":119243,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea06f161-89a7-4ed5-8c17-e688c0b3186b","direction":"outgoing","index":119244,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"caf780dd-46a4-456f-b140-7c584bcf2d2d","direction":"outgoing","index":119245,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a83cf61-63f3-4f3f-845c-89f38159ac34","direction":"outgoing","index":119246,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82ae22e1-74b2-45d7-bf62-c1393d3a0a72","direction":"outgoing","index":119247,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2ff9d8f1-37b0-4a33-8973-c2c39757f76e","direction":"outgoing","index":119248,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb163d8f-b8c7-4b78-bda7-d1463fd251d0","direction":"outgoing","index":119249,"result_id":"50901a73-b542-4a86-a524-d6988a897b60","status":200,"timestamp":"2026-05-22T11:04:12.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:12.229-04:00"},{"id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","created_at":"2026-05-22T11:04:13.169-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"604fdbd4-e16c-4582-97fb-dd97385d4f07","direction":"outgoing","index":119250,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5e12174f-9250-4874-b861-c5f4421c9b40","direction":"outgoing","index":119251,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"a23d3f86-0b94-41be-92a7-37a041bb3b2f","direction":"outgoing","index":119252,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"92006a49-b2c9-4624-9022-343a79681d65","direction":"outgoing","index":119253,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"656d6c25-40a0-4707-86b4-00e8a41f9110","direction":"outgoing","index":119254,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"8b4d0c87-55b9-4a00-b52c-03fba130ff5a","direction":"outgoing","index":119255,"result_id":"b0c060b7-47b5-4c41-8834-bf092cc8459b","status":200,"timestamp":"2026-05-22T11:04:13.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:13.169-04:00"},{"id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","created_at":"2026-05-22T11:04:14.277-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0d1c5c76-cfc4-46e5-830c-f2bf34ab6594","direction":"outgoing","index":119256,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"1ce25190-f94c-475a-841b-94916bb90f3e","direction":"outgoing","index":119257,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44bb29f3-a1af-4d12-aa2d-f738d64e029e","direction":"outgoing","index":119258,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f1f343e-b016-4956-b3ef-0a3376441dd1","direction":"outgoing","index":119259,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7962ce0d-5ce0-4edc-be90-cba2c8ae5f1a","direction":"outgoing","index":119260,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"474a5f28-274a-4ae6-83a8-d3efd22c8488","direction":"outgoing","index":119261,"result_id":"f1edb95e-5abe-4b2f-b7fb-c7864b779ef8","status":200,"timestamp":"2026-05-22T11:04:14.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:14.277-04:00"},{"id":"199f29d9-0323-4e39-8a34-d61797110d82","created_at":"2026-05-22T11:04:16.897-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5d03f96d-8d2a-41f8-9d89-cad2553787ac","direction":"outgoing","index":119262,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2f9c23a8-2aca-4e07-a39f-4aef1f2daa9b","direction":"outgoing","index":119263,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"a2b31794-7cef-4753-938e-75474227959f","direction":"outgoing","index":119264,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f34377e-1b61-4c65-9e27-e7c192cea746\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3f2c454-d9b4-45b1-9939-62c8272930f5","direction":"outgoing","index":119265,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f34377e-1b61-4c65-9e27-e7c192cea746\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58646401-a1c6-4777-bd6c-48a0feca8a6f","direction":"outgoing","index":119266,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"cd03595e-f501-449a-b596-d712e8296754","direction":"outgoing","index":119267,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=36129e9e-1440-4378-b949-679196b22ac2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a777a03d-b273-4c63-b43e-e0cb4d5fe80c","direction":"outgoing","index":119268,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=36129e9e-1440-4378-b949-679196b22ac2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f966e16c-33ec-42b1-8f1e-3847daf90dd7","direction":"outgoing","index":119269,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:16.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"975cda80-9fa6-4360-ac60-fc46ec640afa","direction":"outgoing","index":119270,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:17.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"48c04ffb-d64a-4408-ab41-d993810597c0","direction":"outgoing","index":119271,"result_id":"199f29d9-0323-4e39-8a34-d61797110d82","status":200,"timestamp":"2026-05-22T11:04:17.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:16.897-04:00"},{"id":"60f67d0e-cd8b-4d81-8734-745bafc4e631","created_at":"2026-05-22T11:04:17.144-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fbbf4032-cc8f-48a1-9fdd-e58be6969946","direction":"outgoing","index":119272,"result_id":"60f67d0e-cd8b-4d81-8734-745bafc4e631","status":200,"timestamp":"2026-05-22T11:04:17.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:17.144-04:00"},{"id":"c7bcc0d5-6dad-401a-ba43-5b39c87b2aa9","created_at":"2026-05-22T11:04:17.469-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"237e2b19-6df0-4168-a132-3db8c3fda53c","direction":"outgoing","index":119273,"result_id":"c7bcc0d5-6dad-401a-ba43-5b39c87b2aa9","status":200,"timestamp":"2026-05-22T11:04:17.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85","verb":"get"},{"id":"322ae8ad-f5b0-444a-83b9-622a4aa4692a","direction":"outgoing","index":119274,"result_id":"c7bcc0d5-6dad-401a-ba43-5b39c87b2aa9","status":200,"timestamp":"2026-05-22T11:04:17.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:17.469-04:00"},{"id":"7640ee6f-8cdd-4ae6-b41d-08391627b098","created_at":"2026-05-22T11:04:18.052-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:18.052-04:00"},{"id":"c1d93976-45a6-4bd3-ba0e-44cd56bbd533","created_at":"2026-05-22T11:04:18.076-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:18.076-04:00"},{"id":"54a77c66-911c-4014-803d-b0b0863c28ac","created_at":"2026-05-22T11:04:18.082-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile-us_core_v400_head_circumference_percentile_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:18.082-04:00"},{"id":"76ee5445-ff8f-45b1-8e52-44166642d136","created_at":"2026-05-22T11:04:18.083-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_head_circumference_percentile","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:18.083-04:00"},{"id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","created_at":"2026-05-22T11:04:18.773-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"94ee46b9-8fc4-49a8-97fe-351c533f94d7","direction":"outgoing","index":119275,"result_id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","status":200,"timestamp":"2026-05-22T11:04:18.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"13a0d219-48e8-4c48-9773-685d88c380d6","direction":"outgoing","index":119276,"result_id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","status":200,"timestamp":"2026-05-22T11:04:18.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"9cd9e104-9511-4905-aa10-2372a2945a65","direction":"outgoing","index":119277,"result_id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","status":200,"timestamp":"2026-05-22T11:04:18.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"e45e8d46-bd04-4888-a238-eefb64cebd03","direction":"outgoing","index":119278,"result_id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","status":200,"timestamp":"2026-05-22T11:04:18.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"1fae7906-210b-4b82-9a9d-668708d80ce6","direction":"outgoing","index":119279,"result_id":"ef4c14e0-1a42-4c7c-9882-a0d1a4ed1625","status":200,"timestamp":"2026-05-22T11:04:18.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:18.773-04:00"},{"id":"970c06dd-1c58-4a54-8812-f29a468498ce","created_at":"2026-05-22T11:04:20.383-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"93197964-95af-4cda-81b3-3113fe59bc07","direction":"outgoing","index":119280,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9a938542-fe93-47e6-b7f1-3180f05e6556","direction":"outgoing","index":119281,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1abe105e-0b2d-4dbf-a675-75549dcc5b6f","direction":"outgoing","index":119282,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"61e4bca4-cdbe-451a-9ab3-a78cadb6cce8","direction":"outgoing","index":119283,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"aa132ed1-988c-4a3e-9efa-ce51b754a3e1","direction":"outgoing","index":119284,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29b62606-3eb7-4548-9a1e-2eba410f84d9","direction":"outgoing","index":119285,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e73c1a4-eb3f-413b-9362-1775e3617e42","direction":"outgoing","index":119286,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"de8ff7f4-82a4-4ffa-bfa4-44d4e331ac6d","direction":"outgoing","index":119287,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0af7198-f8eb-4fbe-a68a-a902846e6eeb","direction":"outgoing","index":119288,"result_id":"970c06dd-1c58-4a54-8812-f29a468498ce","status":200,"timestamp":"2026-05-22T11:04:20.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:20.383-04:00"},{"id":"aefc88d1-e30a-4810-809f-b65397145ea9","created_at":"2026-05-22T11:04:21.254-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"337f2d9f-2c14-477d-8570-e9b1b8532694","direction":"outgoing","index":119289,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4e9441b9-42fc-4094-8a8c-af537a4796af","direction":"outgoing","index":119290,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"bbb08c8a-89d6-45ec-90c8-6c0f016dd0cc","direction":"outgoing","index":119291,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3c15f81f-0867-413f-bd19-96b02b2662e1","direction":"outgoing","index":119292,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"45ce34fc-674c-4536-b868-853a540f3677","direction":"outgoing","index":119293,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dd746336-4082-4978-a6a8-e1e10bf49e8a","direction":"outgoing","index":119294,"result_id":"aefc88d1-e30a-4810-809f-b65397145ea9","status":200,"timestamp":"2026-05-22T11:04:21.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:21.254-04:00"},{"id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","created_at":"2026-05-22T11:04:22.335-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2f6056ed-02e4-4016-9bab-61e6271a21fc","direction":"outgoing","index":119295,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"0c583815-c17d-452e-ad04-47b6668ba1c8","direction":"outgoing","index":119296,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"567139e8-3d52-4dee-bf92-f669fe6b26ed","direction":"outgoing","index":119297,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5bf1299-d691-473b-b9bf-8386a5caeeef","direction":"outgoing","index":119298,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"aa4cd966-7141-46d2-bcbf-98b11002f56c","direction":"outgoing","index":119299,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"923a8c8e-83ae-49fa-9e87-e0a2f125af66","direction":"outgoing","index":119300,"result_id":"c69af514-0280-4ada-ba6f-e5f519e2e33a","status":200,"timestamp":"2026-05-22T11:04:22.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:22.335-04:00"},{"id":"c003155f-a588-458e-b9f3-f4acd251b627","created_at":"2026-05-22T11:04:25.115-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3cd5334c-0f0d-4e91-9137-25ce6f479903","direction":"outgoing","index":119301,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"108860ce-8e62-416a-9974-c0a8855ff6f2","direction":"outgoing","index":119302,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fcdbda19-070a-412d-8898-8acf0cde39fc","direction":"outgoing","index":119303,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=77c8fa06-b1f0-4a2b-91e6-737256dec10b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15299053-8aaa-4e1e-b400-f36c54b1bb53","direction":"outgoing","index":119304,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=77c8fa06-b1f0-4a2b-91e6-737256dec10b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bef59059-cc3d-4a0a-aa0a-17f7bc6f6b1c","direction":"outgoing","index":119305,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0ad64e5b-c1ce-4ac5-81d3-58b58c59df9a","direction":"outgoing","index":119306,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d44da9c2-4c68-4142-af25-5afb7d9159e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ce52966-279d-4b1e-a715-41c94bfa69da","direction":"outgoing","index":119307,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d44da9c2-4c68-4142-af25-5afb7d9159e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7e5cc29-eacc-4408-a170-c7dfe0492034","direction":"outgoing","index":119308,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"30949217-632d-4d53-8b59-b6cccd452555","direction":"outgoing","index":119309,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7eb13e6e-cc3e-42d0-8684-4b5b89cfc042","direction":"outgoing","index":119310,"result_id":"c003155f-a588-458e-b9f3-f4acd251b627","status":200,"timestamp":"2026-05-22T11:04:25.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:25.115-04:00"},{"id":"a1f6a37a-9c44-4091-82f4-03f7fc71d3e1","created_at":"2026-05-22T11:04:25.484-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ad4cc8c2-1c35-4abb-b26e-7bc3f7ec1561","direction":"outgoing","index":119311,"result_id":"a1f6a37a-9c44-4091-82f4-03f7fc71d3e1","status":200,"timestamp":"2026-05-22T11:04:25.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:25.484-04:00"},{"id":"14c8b7a1-5d92-4c4e-bcc7-c3d777a1261d","created_at":"2026-05-22T11:04:25.825-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6e062f35-d08e-4f36-801e-e29cc7ce4e89","direction":"outgoing","index":119312,"result_id":"14c8b7a1-5d92-4c4e-bcc7-c3d777a1261d","status":200,"timestamp":"2026-05-22T11:04:25.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85","verb":"get"},{"id":"71131e09-4753-43cb-af9a-c5923a9d2cbe","direction":"outgoing","index":119313,"result_id":"14c8b7a1-5d92-4c4e-bcc7-c3d777a1261d","status":200,"timestamp":"2026-05-22T11:04:25.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:25.825-04:00"},{"id":"3710900d-6172-469e-90fe-63319d93b761","created_at":"2026-05-22T11:04:26.091-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:26.091-04:00"},{"id":"9d19200d-228f-41c3-ad26-1a0573b4f817","created_at":"2026-05-22T11:04:26.106-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:26.106-04:00"},{"id":"c2aef21f-72b2-4f77-9258-527325108496","created_at":"2026-05-22T11:04:26.113-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height-us_core_v400_pediatric_weight_for_height_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:26.113-04:00"},{"id":"a871632a-8774-4f73-93c0-3c29ee8c9fa2","created_at":"2026-05-22T11:04:26.117-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pediatric_weight_for_height","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:26.117-04:00"},{"id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","created_at":"2026-05-22T11:04:27.090-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0e0e7ade-5c01-44bf-a6c0-092ac23e6e76","direction":"outgoing","index":119314,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"938b78f2-b972-4684-b908-bea4e205e39a","direction":"outgoing","index":119315,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"71c7b1c5-4758-4354-821e-5f616bed2112","direction":"outgoing","index":119316,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"f12f224c-7679-42c3-b8a3-cc7b4418d41e","direction":"outgoing","index":119317,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"43c37937-f1cd-41ad-8b33-15bfbf525333","direction":"outgoing","index":119318,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"c0300a36-cbe8-4a61-a71e-b9421a0f3260","direction":"outgoing","index":119319,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"48c768c5-43f1-4c21-ae14-8b33aaef782b","direction":"outgoing","index":119320,"result_id":"f9f0f44e-ddfd-4ca9-b756-664a1129b835","status":200,"timestamp":"2026-05-22T11:04:27.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:27.090-04:00"},{"id":"05db47c7-36c9-46c8-abe1-55b121e26fce","created_at":"2026-05-22T11:04:27.586-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"711556ec-7f97-4fd7-a17d-e5fd6fc8162c","direction":"outgoing","index":119321,"result_id":"05db47c7-36c9-46c8-abe1-55b121e26fce","status":200,"timestamp":"2026-05-22T11:04:27.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"f93ac49c-f565-49dd-b20f-447b52092e82","direction":"outgoing","index":119322,"result_id":"05db47c7-36c9-46c8-abe1-55b121e26fce","status":200,"timestamp":"2026-05-22T11:04:27.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"59f872f7-9fc1-4e5c-b4d0-de6fdc29372f","direction":"outgoing","index":119323,"result_id":"05db47c7-36c9-46c8-abe1-55b121e26fce","status":200,"timestamp":"2026-05-22T11:04:27.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:27.586-04:00"},{"id":"c7945253-f430-4e5d-bed4-869e6224f641","created_at":"2026-05-22T11:04:28.493-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"86f7489e-0ba7-4af3-b44d-010a2f12ca69","direction":"outgoing","index":119324,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"e6e260d1-a295-4639-8d4e-6a15b26d5dc9","direction":"outgoing","index":119325,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"48fcfd87-b1de-407d-aad7-2f8683e64215","direction":"outgoing","index":119326,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"029cdfd5-7730-4815-8e45-31544480a1fd","direction":"outgoing","index":119327,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"4a5f1e94-1f19-4ab4-8825-44317cbaae8e","direction":"outgoing","index":119328,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"b4b2bfa0-0840-40a4-8f9f-9012d851e68b","direction":"outgoing","index":119329,"result_id":"c7945253-f430-4e5d-bed4-869e6224f641","status":200,"timestamp":"2026-05-22T11:04:28.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:28.493-04:00"},{"id":"77f744d7-6b3b-491d-82f1-f0e7c5c5e1e5","created_at":"2026-05-22T11:04:28.837-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6ae8b669-33bc-4bdf-8353-b70fbdf3541b","direction":"outgoing","index":119330,"result_id":"77f744d7-6b3b-491d-82f1-f0e7c5c5e1e5","status":200,"timestamp":"2026-05-22T11:04:28.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"56d247ec-c7c2-4e71-b859-998c8fe1db51","direction":"outgoing","index":119331,"result_id":"77f744d7-6b3b-491d-82f1-f0e7c5c5e1e5","status":200,"timestamp":"2026-05-22T11:04:28.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:28.837-04:00"},{"id":"d827c04f-2d07-4636-b4b4-a5eee851877a","created_at":"2026-05-22T11:04:29.759-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"13930a77-f884-404b-bf25-dd3e46c8cf0f","direction":"outgoing","index":119332,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3337a01b-dd41-4472-9122-66dbf81e59a9","direction":"outgoing","index":119333,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"095fd4cd-c88b-4e7d-92b2-7660d63ff364","direction":"outgoing","index":119334,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"1f33dde8-7a6b-4d76-abc9-35b5aa275161","direction":"outgoing","index":119335,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"31afe403-a6f3-4108-afc0-7f0ae4075e1b","direction":"outgoing","index":119336,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"c1b7224d-f395-4aab-b826-3db939cf9820","direction":"outgoing","index":119337,"result_id":"d827c04f-2d07-4636-b4b4-a5eee851877a","status":200,"timestamp":"2026-05-22T11:04:29.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:29.759-04:00"},{"id":"15570e86-e20b-415b-81e3-936c40f5fb42","created_at":"2026-05-22T11:04:29.958-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a241df91-f34c-42a6-bdaa-bece230b578d","direction":"outgoing","index":119338,"result_id":"15570e86-e20b-415b-81e3-936c40f5fb42","status":200,"timestamp":"2026-05-22T11:04:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:29.958-04:00"},{"id":"2791fcea-edf3-42c5-96c2-e23cb12a32c3","created_at":"2026-05-22T11:04:30.552-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bc5181ca-ce4d-4cd0-827c-0ba1963caacf","direction":"outgoing","index":119339,"result_id":"2791fcea-edf3-42c5-96c2-e23cb12a32c3","status":200,"timestamp":"2026-05-22T11:04:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85","verb":"get"},{"id":"2a868976-4b36-4fa2-bd7f-622a5a2da8fb","direction":"outgoing","index":119340,"result_id":"2791fcea-edf3-42c5-96c2-e23cb12a32c3","status":200,"timestamp":"2026-05-22T11:04:30.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85","verb":"get"},{"id":"1b3a2e75-4ac4-45b3-90e8-152f907908d5","direction":"outgoing","index":119341,"result_id":"2791fcea-edf3-42c5-96c2-e23cb12a32c3","status":200,"timestamp":"2026-05-22T11:04:30.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355","verb":"get"},{"id":"137f9e73-15cd-4f5c-b4d6-c6117744a00f","direction":"outgoing","index":119342,"result_id":"2791fcea-edf3-42c5-96c2-e23cb12a32c3","status":200,"timestamp":"2026-05-22T11:04:30.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:30.552-04:00"},{"id":"ac974dad-b90f-4206-a491-6176588e063b","created_at":"2026-05-22T11:04:31.882-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:31.882-04:00"},{"id":"66503e1f-efb1-4cbd-8c6a-0e3b4ea9bddb","created_at":"2026-05-22T11:04:31.919-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:31.919-04:00"},{"id":"f894c701-f830-40bf-bbd9-55b6176758da","created_at":"2026-05-22T11:04:31.923-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry-us_core_v400_pulse_oximetry_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:31.923-04:00"},{"id":"4d757c35-fc16-49a1-a7e3-a645f4ab8a9c","created_at":"2026-05-22T11:04:31.924-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_pulse_oximetry","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:31.924-04:00"},{"id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","created_at":"2026-05-22T11:04:32.611-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6f4d8b2d-3a0b-4dff-9dfa-d3e12d886dcd","direction":"outgoing","index":119343,"result_id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","status":200,"timestamp":"2026-05-22T11:04:32.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"e3f70b3f-2714-492b-ae24-87572d22ea16","direction":"outgoing","index":119344,"result_id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","status":200,"timestamp":"2026-05-22T11:04:32.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"b41139f2-62a1-4c22-b3bc-c28ab221b6f4","direction":"outgoing","index":119345,"result_id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","status":200,"timestamp":"2026-05-22T11:04:32.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"38f31597-f53c-4175-81e5-75ce001d71d8","direction":"outgoing","index":119346,"result_id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","status":200,"timestamp":"2026-05-22T11:04:32.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"398d123a-f272-4c7d-b2e7-accb5b013997","direction":"outgoing","index":119347,"result_id":"b3ed4d58-424b-45fb-918b-1e02818d95ad","status":200,"timestamp":"2026-05-22T11:04:32.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:32.611-04:00"},{"id":"88133c61-29d6-48a1-a723-6458e171353d","created_at":"2026-05-22T11:04:34.115-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bc292439-7d18-4a11-9965-4b3fdaa80f22","direction":"outgoing","index":119348,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"d0bb5b0f-9660-43a7-8106-5e768e87f439","direction":"outgoing","index":119349,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"869acd62-f4ef-45fb-946f-ebcb22b273ce","direction":"outgoing","index":119350,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d8e4659-c1fa-4785-ae89-2ed1c9fe7788\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af92b993-1a7d-45a4-9970-3ebf41f7177d","direction":"outgoing","index":119351,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f92b32c4-3d86-4b55-95a9-3071a3cdc851","direction":"outgoing","index":119352,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"19536d08-47d9-439d-88d3-8437879dabd9","direction":"outgoing","index":119353,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=aa06f475-33a0-4a1f-bba2-a75116d51c72\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7046bdb-a421-4454-b018-2d5fcecbb09f","direction":"outgoing","index":119354,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"eaf71d3f-693d-4c4a-ac0c-643a5bbd3e8b","direction":"outgoing","index":119355,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b69e1cd-1daf-4e1e-9dd9-c95d610a9542","direction":"outgoing","index":119356,"result_id":"88133c61-29d6-48a1-a723-6458e171353d","status":200,"timestamp":"2026-05-22T11:04:34.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5ee48529-2105-43e8-b669-8fcd64385d2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:34.115-04:00"},{"id":"52712f10-42e2-4940-8433-ec45057a141b","created_at":"2026-05-22T11:04:35.090-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cfe9ac6d-9883-48d2-a1aa-b238cf21e415","direction":"outgoing","index":119357,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2c7ff0ec-c074-4ecb-9f3d-5a57bb09f2f9","direction":"outgoing","index":119358,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"9da9ce75-0fdc-4b04-a063-36cd7c3b3cd3","direction":"outgoing","index":119359,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"fd15d648-c03b-435e-8c06-0ada6da1c34a","direction":"outgoing","index":119360,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"7a2a41b4-4224-4654-883a-6d7857e6159f","direction":"outgoing","index":119361,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8e7fcb1a-a3f6-40fe-a825-3b7881426ecb","direction":"outgoing","index":119362,"result_id":"52712f10-42e2-4940-8433-ec45057a141b","status":200,"timestamp":"2026-05-22T11:04:35.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:35.090-04:00"},{"id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","created_at":"2026-05-22T11:04:36.245-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"09fcc869-d264-4a85-bd2d-64b54ff9d8cc","direction":"outgoing","index":119363,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"487a7bcb-5ed3-4bd9-848f-7fb2d4c18498","direction":"outgoing","index":119364,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56b17f62-73d4-4ad8-b188-a278010f5f63","direction":"outgoing","index":119365,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb9172b9-b36d-4206-9990-d10a842b5d52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d5cb103-5aac-4c45-8967-e3b87da47c7c","direction":"outgoing","index":119366,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.287-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"4db2631f-9d5a-4b6a-b9a1-4f1eeceb2351","direction":"outgoing","index":119367,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2a47a08a-165d-4d69-a935-b96a2941e806","direction":"outgoing","index":119368,"result_id":"a7ad7d09-4ccb-4e5d-b641-65d8cb44941f","status":200,"timestamp":"2026-05-22T11:04:36.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d015312-4c60-4c54-8877-5c0353011f3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:36.245-04:00"},{"id":"e5f27551-4eda-48f8-b558-73748043e8ab","created_at":"2026-05-22T11:04:40.107-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4700edb7-8cbd-4e2f-8927-fa45683cc6c3","direction":"outgoing","index":119369,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2639eb10-089b-4ccb-b2f2-6c164c3445ae","direction":"outgoing","index":119370,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f23fb0b4-f616-49ae-83a4-325af3d03cd4","direction":"outgoing","index":119371,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=97891b11-dff7-4d77-adae-136bd447df24\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03fc85f4-b669-4a7a-b6f4-a49ec153de74","direction":"outgoing","index":119372,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"a5478457-60e0-493b-9909-adb338e446ea","direction":"outgoing","index":119373,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1d7578a-87e9-4a54-86cb-81dbf820de5d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"993a61ac-17ef-49c3-b101-08ce7b53a058","direction":"outgoing","index":119374,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"a6bd7a89-dd3a-41d3-97fd-a1ea913ab586","direction":"outgoing","index":119375,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbdf2ed6-4364-49ba-b4bb-f3ffdb2d0886\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dcab26ef-03ab-4355-8791-3909d68e652f","direction":"outgoing","index":119376,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3f7ecfa2-bab6-4e17-9b6d-9164707e7c8d","direction":"outgoing","index":119377,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=efde5359-badf-442b-bd31-8ef159fbcb91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7eb1e356-ac65-47f0-b0fd-eb086974f7c5","direction":"outgoing","index":119378,"result_id":"e5f27551-4eda-48f8-b558-73748043e8ab","status":200,"timestamp":"2026-05-22T11:04:40.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:40.107-04:00"},{"id":"b1ac9746-bf4e-4029-b93a-a8337edaf425","created_at":"2026-05-22T11:04:40.359-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0932749f-a47f-436e-b25a-84250c95625c","direction":"outgoing","index":119379,"result_id":"b1ac9746-bf4e-4029-b93a-a8337edaf425","status":200,"timestamp":"2026-05-22T11:04:40.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:40.359-04:00"},{"id":"bbacd25e-34a6-4ec1-a7c3-b27c1ff65db9","created_at":"2026-05-22T11:04:40.705-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6058c39a-5971-4f82-8994-81b82301e558","direction":"outgoing","index":119380,"result_id":"bbacd25e-34a6-4ec1-a7c3-b27c1ff65db9","status":200,"timestamp":"2026-05-22T11:04:40.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85","verb":"get"},{"id":"7040caf3-503b-45da-beac-54c365d3c95f","direction":"outgoing","index":119381,"result_id":"bbacd25e-34a6-4ec1-a7c3-b27c1ff65db9","status":200,"timestamp":"2026-05-22T11:04:40.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:40.705-04:00"},{"id":"e5f871cd-bd0b-44f8-9903-73815afb6ab8","created_at":"2026-05-22T11:04:41.156-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:41.156-04:00"},{"id":"1d1b8136-d068-4759-8be3-accea2c53326","created_at":"2026-05-22T11:04:41.184-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:41.184-04:00"},{"id":"018b045d-6b0e-43bf-bb78-6856f6e77719","created_at":"2026-05-22T11:04:41.189-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate-us_core_v400_respiratory_rate_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:41.189-04:00"},{"id":"dab66aac-beee-40c1-a5f9-da05408220aa","created_at":"2026-05-22T11:04:41.191-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_respiratory_rate","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:41.191-04:00"},{"id":"f97a942a-3094-415e-bc2d-1b69fca341d5","created_at":"2026-05-22T11:04:47.879-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6a43ae5f-d669-472a-a22c-573431358f94","direction":"outgoing","index":119382,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"eaa26cac-f646-4894-9fb1-60baa06f8fb5","direction":"outgoing","index":119383,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"06c97e36-ba5e-4ca8-bf0e-88cd92277581","direction":"outgoing","index":119384,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8bf15d82-7934-40a3-958c-f8f770af5c08","direction":"outgoing","index":119385,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"467d8ee8-e66d-4476-880b-fde07acfa10e","direction":"outgoing","index":119386,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"1f76b05a-d373-4f21-ac59-929344ea6377","direction":"outgoing","index":119387,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"417b14b1-9eb3-4aab-b611-15c9372877b2","direction":"outgoing","index":119388,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04dd8dfa-a3f2-415d-a032-a58942fe9627","direction":"outgoing","index":119389,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6e0cd14-f769-4e80-b56d-deb638f7b60f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"34b227e7-5935-48f9-80db-5d7388fbcfba","direction":"outgoing","index":119390,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:47.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"473b8089-1260-4517-bd67-04903186a302","direction":"outgoing","index":119391,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=808ef8b4-f402-498d-bf57-d3568f0dccff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a468cabc-8267-4fae-ac5b-e0969a77f12e","direction":"outgoing","index":119392,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=808ef8b4-f402-498d-bf57-d3568f0dccff\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d76cdf66-7062-48c8-abb7-bea2a5fc87bb","direction":"outgoing","index":119393,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.027-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=808ef8b4-f402-498d-bf57-d3568f0dccff\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8666cea0-45de-49c6-976c-0f65ebd490df","direction":"outgoing","index":119394,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.040-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"e6d1368f-9296-4891-8717-9e478631ffe8","direction":"outgoing","index":119395,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eda83c43-b679-4ec5-8eca-2601b139e63c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b1b1ec0-1872-4f9f-807b-ba1c1f1b1f01","direction":"outgoing","index":119396,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eda83c43-b679-4ec5-8eca-2601b139e63c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c15f97b5-4110-4948-8379-291f1a2ff329","direction":"outgoing","index":119397,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eda83c43-b679-4ec5-8eca-2601b139e63c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b9447752-9436-4fc8-ae2e-04f9291eb37e","direction":"outgoing","index":119398,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"dbe5ba62-ef8c-4195-b5f1-8a3931259f8f","direction":"outgoing","index":119399,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d3c1324-6686-445a-97e6-32a86dec7735","direction":"outgoing","index":119400,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76d1954a-c7e8-4d49-b624-5682792c3980","direction":"outgoing","index":119401,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2bd00025-ee18-4ad4-b4b8-a9e075ab083b","direction":"outgoing","index":119402,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d69e1e2-871e-492b-a660-09f1066d7d9b","direction":"outgoing","index":119403,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cdea0f59-0062-4e4f-ac54-eb0af6405376","direction":"outgoing","index":119404,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99ace2d3-979f-45d1-a0a6-164e991c15bc","direction":"outgoing","index":119405,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b03f5fa4-4da3-44b1-b602-160cd04eafac","direction":"outgoing","index":119406,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f9488d7-94de-47ac-a7e7-f9badc2c7dfe","direction":"outgoing","index":119407,"result_id":"f97a942a-3094-415e-bc2d-1b69fca341d5","status":200,"timestamp":"2026-05-22T11:04:48.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a84f40f-61f2-4acc-9aec-94f7a4972558\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_patient_code_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:47.879-04:00"},{"id":"4c58e129-a81b-4df5-a789-e3665f501afa","created_at":"2026-05-22T11:04:54.515-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"437903e0-01ee-4cfd-9433-76be1032cfb1","direction":"outgoing","index":119408,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"ee6c9218-e6d6-44de-a494-5bfc41c9b869","direction":"outgoing","index":119409,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d6e981f-c3a9-42d4-8d19-2ed8d0542c5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b26a54a-481d-4e23-a754-e0e2dea53f78","direction":"outgoing","index":119410,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d6e981f-c3a9-42d4-8d19-2ed8d0542c5a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6530a66-6c1d-44a1-b714-1639f7542c3e","direction":"outgoing","index":119411,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.570-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d6e981f-c3a9-42d4-8d19-2ed8d0542c5a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1aa05940-6c55-41f7-a437-3edf1267a8d8","direction":"outgoing","index":119412,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d6e981f-c3a9-42d4-8d19-2ed8d0542c5a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c056218-bc65-4689-b905-39b71c90a8df","direction":"outgoing","index":119413,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"855ab994-3bff-4a7b-8c9f-75279d419913","direction":"outgoing","index":119414,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a17a86d1-3b7b-46c7-b324-d00157553eb2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba56c45d-c7fe-4d91-aeaa-f450009fad88","direction":"outgoing","index":119415,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a17a86d1-3b7b-46c7-b324-d00157553eb2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"862fde54-46eb-445f-a3ee-6fe5826e1b5f","direction":"outgoing","index":119416,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a17a86d1-3b7b-46c7-b324-d00157553eb2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"caf7c70d-aff3-4c74-a0e7-0c07252173f1","direction":"outgoing","index":119417,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a17a86d1-3b7b-46c7-b324-d00157553eb2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"94090e74-c853-488f-a7fe-bfeff1fc6468","direction":"outgoing","index":119418,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"d8ab938c-385c-4a05-aadf-d7230f9de707","direction":"outgoing","index":119419,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea3cf271-56c1-4985-9a52-a32db89a4d84","direction":"outgoing","index":119420,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a6fc9b0-bdd4-496d-8721-d44e2af405d9","direction":"outgoing","index":119421,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45c85f06-18e0-4c94-bc8d-e0d516330947","direction":"outgoing","index":119422,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4bc1eb78-10dd-4875-8d27-77ddbca1553b","direction":"outgoing","index":119423,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"118c870a-9d48-458a-b05f-01150c04d3eb","direction":"outgoing","index":119424,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"998eb8b6-c6ee-48dc-ad82-6e323a72f24b","direction":"outgoing","index":119425,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05d7ca21-83b1-4ac1-ac29-f782fa6633c5","direction":"outgoing","index":119426,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0fbadd4-1a53-4b6a-a82e-61c74193b706","direction":"outgoing","index":119427,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c16fe78e-bdf8-4ad6-84bc-6c0e2c1e2648\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f9bdc3e-a149-4237-b561-59b683cc6cb7","direction":"outgoing","index":119428,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"3859e2fb-6a53-448b-bf0e-a3ad1ff27ac2","direction":"outgoing","index":119429,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1468f814-ee75-4cd7-a28c-4c9ce4281bd7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a99c26e5-aa82-45d1-8462-c3a4cfe2cd61","direction":"outgoing","index":119430,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1468f814-ee75-4cd7-a28c-4c9ce4281bd7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f824145-959f-4395-8047-544d576c0ea5","direction":"outgoing","index":119431,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1468f814-ee75-4cd7-a28c-4c9ce4281bd7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dde303c3-096e-4d4c-8295-c29cdbb53d11","direction":"outgoing","index":119432,"result_id":"4c58e129-a81b-4df5-a789-e3665f501afa","status":200,"timestamp":"2026-05-22T11:04:54.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1468f814-ee75-4cd7-a28c-4c9ce4281bd7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_patient_category_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:54.515-04:00"},{"id":"a837a348-6820-4837-ad54-64253d20a5d4","created_at":"2026-05-22T11:04:58.066-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"984959b5-0be5-4c43-af02-a9a3315d0315","direction":"outgoing","index":119433,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ddf1ea01-2801-4f8b-b397-6e376f983e18","direction":"outgoing","index":119434,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ca5cd34d-0e4c-419a-bf2d-985db981c3d4","direction":"outgoing","index":119435,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6adec91-fccd-47d7-aa69-4fb1fac25f2a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3501ba3f-d205-43ca-b280-4deb8cf4e4ff","direction":"outgoing","index":119436,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6adec91-fccd-47d7-aa69-4fb1fac25f2a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"558b7ead-fcb8-450d-979a-346868854a04","direction":"outgoing","index":119437,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6adec91-fccd-47d7-aa69-4fb1fac25f2a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b855b6ee-a455-4ac9-a96e-75eb1fcab73f","direction":"outgoing","index":119438,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"074e43f7-9f82-4f50-9e5d-1e83044dc5d4","direction":"outgoing","index":119439,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b0b25e0c-0085-4bf8-80ec-48f62366126b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a72514d6-7801-40db-bc7d-c5b8ffdc5082","direction":"outgoing","index":119440,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b0b25e0c-0085-4bf8-80ec-48f62366126b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ef9eee49-42b9-4ca5-b792-9fb84160d7f1","direction":"outgoing","index":119441,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b0b25e0c-0085-4bf8-80ec-48f62366126b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"21de5211-9390-4680-87ef-8a70a2179f46","direction":"outgoing","index":119442,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"edbc4775-5109-4a8f-99af-72755b8ae526","direction":"outgoing","index":119443,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ec61b051-b55a-4843-963e-a422e478e8f5","direction":"outgoing","index":119444,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"47773d31-6580-4286-830a-f7bbb64646d4","direction":"outgoing","index":119445,"result_id":"a837a348-6820-4837-ad54-64253d20a5d4","status":200,"timestamp":"2026-05-22T11:04:58.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:04:58.066-04:00"},{"id":"71300464-0525-4a97-9831-dbc50ede4cd0","created_at":"2026-05-22T11:05:03.160-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b78ff8bd-3e8c-4528-b176-3452dd392040","direction":"outgoing","index":119446,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"b8e44d2f-dfa8-4cbd-9a1b-f1ae34a92663","direction":"outgoing","index":119447,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb127c17-3c4f-4fb9-b70f-7e847f0140d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53b4755a-e3b3-4e4c-ba7f-ed19f20e57cd","direction":"outgoing","index":119448,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb127c17-3c4f-4fb9-b70f-7e847f0140d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab357cf6-5a79-4245-8797-0850176cba4e","direction":"outgoing","index":119449,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb127c17-3c4f-4fb9-b70f-7e847f0140d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cd8e79fe-9f00-45ce-83a9-c939d525f2c5","direction":"outgoing","index":119450,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb127c17-3c4f-4fb9-b70f-7e847f0140d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd195198-c583-45d9-9af3-7ea6df838c34","direction":"outgoing","index":119451,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"0ce7927e-0545-41b6-97f0-39b9e2775d24","direction":"outgoing","index":119452,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ead6e748-4f94-46f1-8aa4-d741b93188e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cfe968f3-82fc-4350-b532-8e470248e186","direction":"outgoing","index":119453,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ead6e748-4f94-46f1-8aa4-d741b93188e0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e35bec01-0e22-4e65-91ce-70b694d639ca","direction":"outgoing","index":119454,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ead6e748-4f94-46f1-8aa4-d741b93188e0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0901cb5c-76a3-4848-b86d-fdd1cd18bae0","direction":"outgoing","index":119455,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ead6e748-4f94-46f1-8aa4-d741b93188e0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be858c49-82e2-460f-a4f0-6be2a3e588e7","direction":"outgoing","index":119456,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"03549422-7315-4f5e-b905-04c4b1a65af4","direction":"outgoing","index":119457,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee1497b5-4a9f-4aed-8233-f413f2eeb697","direction":"outgoing","index":119458,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"180ef37a-47fb-4eaa-a215-5262155f228a","direction":"outgoing","index":119459,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20e64142-8ff3-4878-9f7a-2fb217b1bbd4","direction":"outgoing","index":119460,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"682bf678-7ca9-4cb9-ac14-c5b0fb55ed7d","direction":"outgoing","index":119461,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3939c146-fae8-4747-a2c8-0cf6f02e0741","direction":"outgoing","index":119462,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca27bd48-d05b-40e5-a902-4e0eb56658eb","direction":"outgoing","index":119463,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c19b10d-f602-4a5a-8869-d416a7e71901","direction":"outgoing","index":119464,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37027a62-ce8c-48c7-89ef-40270457a6a8","direction":"outgoing","index":119465,"result_id":"71300464-0525-4a97-9831-dbc50ede4cd0","status":200,"timestamp":"2026-05-22T11:05:03.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5727d482-7206-443e-9919-6b24a4c85ae8\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_patient_category_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:03.160-04:00"},{"id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","created_at":"2026-05-22T11:05:06.989-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7f92fcf2-9441-483b-8e51-e34293a797d5","direction":"outgoing","index":119466,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:06.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"27007a33-0d11-4744-bc87-ba8196656b58","direction":"outgoing","index":119467,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3e2c353a-3193-411d-94c9-2f3c0240177d","direction":"outgoing","index":119468,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91e7ba07-2f81-4af8-9884-c15e197e9ce6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49839087-69d0-4c93-bfb5-252bdb3a6e31","direction":"outgoing","index":119469,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91e7ba07-2f81-4af8-9884-c15e197e9ce6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5bc3572-b099-405c-bc72-acb84e8a4234","direction":"outgoing","index":119470,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91e7ba07-2f81-4af8-9884-c15e197e9ce6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"68c70bde-90c8-4979-a27e-41ab1f268d32","direction":"outgoing","index":119471,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91e7ba07-2f81-4af8-9884-c15e197e9ce6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"556deaff-88a4-4138-b071-b95b6ec5a7ea","direction":"outgoing","index":119472,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bb947538-3126-4bee-a6c8-7305694c4f3c","direction":"outgoing","index":119473,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da2d012d-d481-414a-ba50-cf545c4e6970\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0dde1f1-535c-4007-b01c-c4271b9f4ed8","direction":"outgoing","index":119474,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da2d012d-d481-414a-ba50-cf545c4e6970\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71b6bc9e-57f8-432f-92b5-49a08444e8e3","direction":"outgoing","index":119475,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da2d012d-d481-414a-ba50-cf545c4e6970\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03a1ed47-f13a-452b-a4a9-2e69afcf0c03","direction":"outgoing","index":119476,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da2d012d-d481-414a-ba50-cf545c4e6970\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1730a39-dd3e-4712-b38e-efb30dbca86b","direction":"outgoing","index":119477,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"035971f6-781e-47ed-a5e6-d59a152e8573","direction":"outgoing","index":119478,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8530e9d5-2597-4d1c-a028-0ef631f83d53","direction":"outgoing","index":119479,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"98c8ce5f-4c2b-4db5-b50a-777c1302fce8","direction":"outgoing","index":119480,"result_id":"1877f5e1-f7f0-460b-be8e-5b8423946c27","status":200,"timestamp":"2026-05-22T11:05:07.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_patient_category_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:06.989-04:00"},{"id":"8876eef0-bf36-493e-833b-3f8f36a85a0a","created_at":"2026-05-22T11:05:07.310-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d9430508-20ec-4f53-838b-2f771e61b525","direction":"outgoing","index":119481,"result_id":"8876eef0-bf36-493e-833b-3f8f36a85a0a","status":200,"timestamp":"2026-05-22T11:05:07.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/a230c57b-b261-471c-88ed-9871547378df","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:07.310-04:00"},{"id":"b0c910ec-489d-4704-a082-26a52e194171","created_at":"2026-05-22T11:05:11.272-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d05e2522-4759-4a33-b9c7-51582c16f773","direction":"outgoing","index":119482,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85","verb":"get"},{"id":"c0d0006f-ed87-48b8-ab52-c8f9962cc36a","direction":"outgoing","index":119483,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fdf0685a-baca-4af9-abfb-b32e21af3d97\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c7c90ed-1647-4e2e-be30-c11e62410cf4","direction":"outgoing","index":119484,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fdf0685a-baca-4af9-abfb-b32e21af3d97\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"708e010e-9fd9-42a9-ad8c-bb8dda6a1a79","direction":"outgoing","index":119485,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fdf0685a-baca-4af9-abfb-b32e21af3d97\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4c38a6d-ef28-4898-987d-726c6ddae175","direction":"outgoing","index":119486,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355","verb":"get"},{"id":"ca42c01c-bd1c-4878-8fc8-33740bdf5503","direction":"outgoing","index":119487,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8645e798-b664-4e84-87e6-acbef674c33e","direction":"outgoing","index":119488,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"333119be-b783-48dd-9731-11e08dc322dc","direction":"outgoing","index":119489,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4a6c2d4-416e-40c2-86a4-ea97d4324c53","direction":"outgoing","index":119490,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6919e8e-e632-4d74-ab72-ba1a60699fe5","direction":"outgoing","index":119491,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5816ae3-c932-463b-b1e6-cd1ef98f62d5","direction":"outgoing","index":119492,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"761820e9-fbc4-4ccb-947f-2881e3dc255a","direction":"outgoing","index":119493,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"776d5dba-6dc0-48fa-9f4a-1aec8616cc4a","direction":"outgoing","index":119494,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea7c001a-28ec-4184-9600-ea76516917ac","direction":"outgoing","index":119495,"result_id":"b0c910ec-489d-4704-a082-26a52e194171","status":200,"timestamp":"2026-05-22T11:05:11.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0245558-fb29-4690-a24b-e70490b6f3cc\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:11.272-04:00"},{"id":"3214c197-e477-410d-8789-74a06e6acf8a","created_at":"2026-05-22T11:05:15.047-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:15.047-04:00"},{"id":"8eec81ec-fbeb-484e-bb9f-f20f62901bd1","created_at":"2026-05-22T11:05:15.299-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:15.299-04:00"},{"id":"cd8dd74d-2d16-46d6-884e-331cd5c1b5e3","created_at":"2026-05-22T11:05:15.301-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus-us_core_v400_smokingstatus_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:15.301-04:00"},{"id":"62482ee2-ed09-4224-8fa4-588f6ccbe58a","created_at":"2026-05-22T11:05:15.302-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_smokingstatus","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:15.302-04:00"},{"id":"b276856a-177f-4034-bc5b-2a896821ff90","created_at":"2026-05-22T11:05:18.275-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dafd60c3-37ff-4cf6-ac5d-a1969ef55a8b","direction":"outgoing","index":119496,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85","verb":"get"},{"id":"7b1a93f8-1138-4b2b-b136-79957da1797a","direction":"outgoing","index":119497,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.296-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d97a4443-7310-4122-be3d-425b86d3991f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"275344fc-618a-4757-b807-2b38583d88f0","direction":"outgoing","index":119498,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/_search","verb":"post"},{"id":"c95c81ba-b628-4dee-a2c4-b7a35c4bb864","direction":"outgoing","index":119499,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d97a4443-7310-4122-be3d-425b86d3991f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bde0172f-c077-4929-a5e1-961cd7463fae","direction":"outgoing","index":119500,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85","verb":"get"},{"id":"b3fb2af8-d9e7-4673-9847-d0413f9b1cfb","direction":"outgoing","index":119501,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=556c7a27-0c52-468d-89b6-f8e1edf58158\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d587b8bb-bfef-4673-b21e-84d9790acce7","direction":"outgoing","index":119502,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355","verb":"get"},{"id":"3632fe59-b814-4883-a133-ba1b16a619a0","direction":"outgoing","index":119503,"result_id":"b276856a-177f-4034-bc5b-2a896821ff90","status":200,"timestamp":"2026-05-22T11:05:18.370-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb52ce41-5382-4d9a-bdf2-3d7805b7c69d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:18.275-04:00"},{"id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","created_at":"2026-05-22T11:05:19.574-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"286863bc-a3b1-49a0-a689-4aa813c02f71","direction":"outgoing","index":119504,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"39d1948e-2c7e-41d3-9d27-c1ef96c28c91","direction":"outgoing","index":119505,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a41ffdd7-a6d6-46a8-b041-1204fab46525","direction":"outgoing","index":119506,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"95801a4a-ab94-4822-8f9e-d987171d7b3f","direction":"outgoing","index":119507,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"5ec738a3-bc28-4aec-8d8f-af41322e8f6d","direction":"outgoing","index":119508,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a067bb50-8bd9-446c-8bde-3c6c077ec03d","direction":"outgoing","index":119509,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"19788d7d-3481-4998-8eeb-66f48d50c06f","direction":"outgoing","index":119510,"result_id":"9ca8ee4e-349f-4a2a-bb4c-759d6e767680","status":200,"timestamp":"2026-05-22T11:05:19.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_patient_code_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:19.574-04:00"},{"id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","created_at":"2026-05-22T11:05:22.051-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"791bba15-d2ab-44ed-9d7b-e564444133eb","direction":"outgoing","index":119511,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"1463bc9d-2824-41e0-b55d-1e4adafd9ef1","direction":"outgoing","index":119512,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.077-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=037fe8e5-5a12-427c-9f21-4acecaa6e903\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ecfbb48-4c99-412a-b709-a151aeb6258b","direction":"outgoing","index":119513,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"25420e52-c0bf-4fcf-9918-02d9ad654117","direction":"outgoing","index":119514,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=037fe8e5-5a12-427c-9f21-4acecaa6e903\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf1d0d6f-d799-4895-8fa5-8670cabbc7f6","direction":"outgoing","index":119515,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"b75b39e0-0565-48e4-8514-1acc249929c3","direction":"outgoing","index":119516,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f64853f2-baf8-4d19-89d9-0e15ad671dd7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"914203f3-468e-472e-b5d5-8afe0479d73b","direction":"outgoing","index":119517,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"276831b0-e561-4fcd-b6e6-e37d3803482f","direction":"outgoing","index":119518,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"916d8ec1-22fc-478f-8a03-6465f936f55e","direction":"outgoing","index":119519,"result_id":"f5183360-4ec2-4748-8685-a9d2354a3bf1","status":200,"timestamp":"2026-05-22T11:05:22.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_patient_date_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:22.051-04:00"},{"id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","created_at":"2026-05-22T11:05:24.611-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"87ebeee7-6da2-4749-9981-1e303aae4a48","direction":"outgoing","index":119520,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed","verb":"get"},{"id":"593403df-c6e7-421a-95a7-7be04c27bff2","direction":"outgoing","index":119521,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d6ae4b10-0929-49d8-8b24-59f9349e078b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89e0cd1c-7578-4a6f-ad1d-be939daba877","direction":"outgoing","index":119522,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed","verb":"get"},{"id":"f0ba0f9a-d4c6-4a4a-b95d-9b27cebf27d3","direction":"outgoing","index":119523,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bf2bb812-651a-47ed-a718-ccd30d4647e4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"640555e0-3cd4-4387-baf2-847e1e544cce","direction":"outgoing","index":119524,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown","verb":"get"},{"id":"ddb3c72d-9da8-483a-bea4-887e7bd27706","direction":"outgoing","index":119525,"result_id":"99cc4db6-e80e-4669-9dbf-9d4dc95d7375","status":200,"timestamp":"2026-05-22T11:05:24.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=de052f7b-476a-4b9a-b54a-26dabcbcb68d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:24.611-04:00"},{"id":"32db1dc5-cd59-43ed-bd4c-5de76403e304","created_at":"2026-05-22T11:05:24.821-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d06720da-4075-48ee-b23f-4568d2a7a820","direction":"outgoing","index":119526,"result_id":"32db1dc5-cd59-43ed-bd4c-5de76403e304","status":200,"timestamp":"2026-05-22T11:05:24.823-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:24.821-04:00"},{"id":"a3f5a9d2-8a78-4e0a-a03a-75a6aeb0d07a","created_at":"2026-05-22T11:05:26.673-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"911a31f0-a7dc-431d-812d-4309ae9d98d3","direction":"outgoing","index":119527,"result_id":"a3f5a9d2-8a78-4e0a-a03a-75a6aeb0d07a","status":200,"timestamp":"2026-05-22T11:05:26.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"e15c606d-2153-4bde-a7c3-c0a889d5561b","direction":"outgoing","index":119528,"result_id":"a3f5a9d2-8a78-4e0a-a03a-75a6aeb0d07a","status":200,"timestamp":"2026-05-22T11:05:26.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=937bb923-b5b5-4cd2-9a06-db47aa810e81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8127a289-070e-4617-b9d7-217e60fb52e1","direction":"outgoing","index":119529,"result_id":"a3f5a9d2-8a78-4e0a-a03a-75a6aeb0d07a","status":200,"timestamp":"2026-05-22T11:05:26.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"d1bb6a16-1e55-4e93-a675-845fd803da41","direction":"outgoing","index":119530,"result_id":"a3f5a9d2-8a78-4e0a-a03a-75a6aeb0d07a","status":200,"timestamp":"2026-05-22T11:05:26.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bdece5ab-6dad-46d3-80c9-e14cefbaeae2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:26.673-04:00"},{"id":"9417f21e-aa77-4f8b-b6e8-0cd699127af5","created_at":"2026-05-22T11:05:30.221-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#447365002)","type":"warning"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#60027007)","type":"warning"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:30.221-04:00"},{"id":"05743bde-9f06-42f4-8887-0de8ac12e7eb","created_at":"2026-05-22T11:05:30.280-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:30.280-04:00"},{"id":"72aba565-5b6c-4f82-a6f0-f3a540b7f233","created_at":"2026-05-22T11:05:30.283-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure-us_core_v400_procedure_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:30.283-04:00"},{"id":"1d2141d6-b8a0-42ef-9365-f0998702f6f9","created_at":"2026-05-22T11:05:30.284-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_procedure","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:30.284-04:00"},{"id":"af2ea473-2fbc-4cbf-be5d-5f7b6fb0e468","created_at":"2026-05-22T11:05:30.413-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Encounter reference used for this test was pulled from resource\nDiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"c0b69145-8695-4ffc-866b-04e92495293d","direction":"outgoing","index":119531,"result_id":"af2ea473-2fbc-4cbf-be5d-5f7b6fb0e468","status":200,"timestamp":"2026-05-22T11:05:30.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:30.413-04:00"},{"id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","created_at":"2026-05-22T11:05:37.572-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"02c28ab5-ba0a-4019-ae5d-9ceb7de4f3be","direction":"outgoing","index":119532,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85","verb":"get"},{"id":"f0ddbb09-20a5-4292-9833-e22283939189","direction":"outgoing","index":119533,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93939633-265e-4539-95a8-60f1532decc0","direction":"outgoing","index":119534,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0173bba8-316a-4592-b8ee-9f094ab943b4","direction":"outgoing","index":119535,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e90c9ff-3c27-48e5-8713-dbb4b294478e","direction":"outgoing","index":119536,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7bbeb619-3d79-46be-8d4e-99adcfe76b07","direction":"outgoing","index":119537,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cfc34713-1fe7-46dd-9b73-b2162b8db7c1","direction":"outgoing","index":119538,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/_search","verb":"post"},{"id":"6040ca78-1727-4815-a234-a0c829990313","direction":"outgoing","index":119539,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2059727b-ab8f-464b-b093-13060f98e640","direction":"outgoing","index":119540,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36064153-8c68-49dc-8d9a-657a9404ab8f","direction":"outgoing","index":119541,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6021ad83-b01c-4ca3-910e-4d3d67294e65","direction":"outgoing","index":119542,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"33a4a38a-c0df-4033-8aa4-12dfbe269dbb","direction":"outgoing","index":119543,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594a377c-7d52-4257-8c45-d912a5475c2c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"beaece14-8698-40a6-92ef-bbdff29396d5","direction":"outgoing","index":119544,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85","verb":"get"},{"id":"6dcc4d4e-38d0-49b4-9e25-a5ba2a2b0883","direction":"outgoing","index":119545,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5f758a9-2750-4eb0-9c02-514d1f8d902b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17eadae4-1943-4ba5-b47b-29ef96932712","direction":"outgoing","index":119546,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5f758a9-2750-4eb0-9c02-514d1f8d902b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e970a28-c2fd-4737-8507-8ce2bcc7e4ef","direction":"outgoing","index":119547,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.765-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5f758a9-2750-4eb0-9c02-514d1f8d902b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5356f0ca-b452-4644-847b-27e1a2735646","direction":"outgoing","index":119548,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5f758a9-2750-4eb0-9c02-514d1f8d902b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c629ee7-47be-4e6d-a08d-1195ff856546","direction":"outgoing","index":119549,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d5f758a9-2750-4eb0-9c02-514d1f8d902b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5fa7671d-3143-4efb-a046-5c19e3a2ed45","direction":"outgoing","index":119550,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355","verb":"get"},{"id":"3d4e218d-8779-4f89-b70f-0bce66855ec5","direction":"outgoing","index":119551,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"689f25f2-e477-4891-bcad-2771bbb27ccb","direction":"outgoing","index":119552,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"97345496-a619-4b24-a704-7df7df355363","direction":"outgoing","index":119553,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30a2d5a1-6b8e-4499-8c27-f1fa596b0854","direction":"outgoing","index":119554,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.857-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78138607-971c-4b7a-88e8-6c786700fc46","direction":"outgoing","index":119555,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceda4db-8085-4c57-99b1-927917547dd4","direction":"outgoing","index":119556,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf3c1bdc-a248-4635-9899-d2c2b6d36b71","direction":"outgoing","index":119557,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6af22163-0c3e-497d-b843-4955de0c43e2","direction":"outgoing","index":119558,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fac4f037-3a7b-4083-a86b-a12c4db28ad9","direction":"outgoing","index":119559,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.937-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0057bd0-d938-4a30-a8a1-3afd4e09a55c","direction":"outgoing","index":119560,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c13f39cf-bc38-410b-b9b2-c677f3fc7aab","direction":"outgoing","index":119561,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81e11473-e09e-4f91-9e74-cc6bc8031d60","direction":"outgoing","index":119562,"result_id":"5a14f304-b8d7-41df-ad57-5f473b0ad096","status":200,"timestamp":"2026-05-22T11:05:37.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2db2ba21-aa38-4930-b370-62df48f0866c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:37.572-04:00"},{"id":"b6e80b8c-610e-446f-9f7c-52963146a520","created_at":"2026-05-22T11:05:38.120-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"09d83342-6726-41d0-9639-8cd4257c27ce","direction":"outgoing","index":119563,"result_id":"b6e80b8c-610e-446f-9f7c-52963146a520","status":200,"timestamp":"2026-05-22T11:05:38.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_id=9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter__id_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:38.120-04:00"},{"id":"d571d129-20f4-4f17-a963-54a84a7f6686","created_at":"2026-05-22T11:05:38.414-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7729e320-e54e-4d00-9be3-7757892665a9","direction":"outgoing","index":119564,"result_id":"d571d129-20f4-4f17-a963-54a84a7f6686","status":200,"timestamp":"2026-05-22T11:05:38.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=0bb40726-2ce8-c94f-7123-aeaa7b25387a","verb":"get"},{"id":"3f52c8c7-942c-4178-a11d-715c85a269c7","direction":"outgoing","index":119565,"result_id":"d571d129-20f4-4f17-a963-54a84a7f6686","status":200,"timestamp":"2026-05-22T11:05:38.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C0bb40726-2ce8-c94f-7123-aeaa7b25387a","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_identifier_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:38.414-04:00"},{"id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","created_at":"2026-05-22T11:05:45.929-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a65385f6-751b-42dc-af09-2a67d7522d02","direction":"outgoing","index":119566,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2022c871-0a7c-44be-b5d8-d7d67210f294","direction":"outgoing","index":119567,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6f055856-11dc-4ac0-a108-2cf5fa92a2a7","direction":"outgoing","index":119568,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14ba2f92-01a8-466d-b383-32661ce337fb","direction":"outgoing","index":119569,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e61f80dd-fb0d-46ac-b06b-fab6be19e394","direction":"outgoing","index":119570,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dbdbada6-e87d-4fe6-a94b-8996309e3735","direction":"outgoing","index":119571,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:45.998-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ee913d7-db85-49c1-b523-e0580cfa5648","direction":"outgoing","index":119572,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f8c2b72b-4c55-4e70-b9d5-3809d1f24b71","direction":"outgoing","index":119573,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"736592e0-7b64-4b4c-92ab-762c4b7f30e0","direction":"outgoing","index":119574,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15e2379c-ec38-46f6-bb10-005c78f78d37","direction":"outgoing","index":119575,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b09bf0e7-aa40-44f8-942b-1384d17b96f8","direction":"outgoing","index":119576,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ef55676e-0e21-440b-98a4-baa5b9114714","direction":"outgoing","index":119577,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4345489-c1c1-4d5d-841c-22e3b046e346\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c46855c6-13b6-47c8-8709-07d78153e5b0","direction":"outgoing","index":119578,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"b6627230-af3e-405e-848a-131dde319bac","direction":"outgoing","index":119579,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd431c7a-f9ce-4fd5-aee8-c123fd861955\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff190f34-f16b-4d23-9586-053a0d7abf5e","direction":"outgoing","index":119580,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd431c7a-f9ce-4fd5-aee8-c123fd861955\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"342d64f8-fa6c-4b0c-aef1-498b5e056c3a","direction":"outgoing","index":119581,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd431c7a-f9ce-4fd5-aee8-c123fd861955\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c9860fd-1c9d-43b4-aef5-06c87d4756a8","direction":"outgoing","index":119582,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd431c7a-f9ce-4fd5-aee8-c123fd861955\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88849e4f-3aff-46a8-a4d7-08e4e7e0b317","direction":"outgoing","index":119583,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd431c7a-f9ce-4fd5-aee8-c123fd861955\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ee612a3-e6b7-4427-9edc-33852e7ac858","direction":"outgoing","index":119584,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"e501fd92-23cb-4a94-a687-68e209c411a3","direction":"outgoing","index":119585,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"24d67215-055d-4dc3-82f9-e5ca6c7d58ed","direction":"outgoing","index":119586,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"39b12b4a-b201-44ea-a85f-b07b931bd11f","direction":"outgoing","index":119587,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52d8c413-c043-4767-8c8c-a0d13fc3671b","direction":"outgoing","index":119588,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0589c215-c312-4990-a857-64e7dced66bb","direction":"outgoing","index":119589,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"642eb398-cb03-41ca-ac70-660f04366f8d","direction":"outgoing","index":119590,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4120a1f-17a9-4bf8-9033-584a2669b38e","direction":"outgoing","index":119591,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.272-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14c80aff-8146-4e07-91e6-11b27f94a367","direction":"outgoing","index":119592,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0653d9ad-7ccc-4374-bd67-51abe891dc19","direction":"outgoing","index":119593,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5c7e883-dd14-4f9e-9bba-813271190d66","direction":"outgoing","index":119594,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe93ead3-bf46-4733-ac33-35fa2792cf37","direction":"outgoing","index":119595,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"edc8f420-89fe-438b-b74f-0cd8015ac8b2","direction":"outgoing","index":119596,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.331-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd925553-d434-4174-8158-1acc6619917e","direction":"outgoing","index":119597,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e867cf84-1b9c-41cd-bbd2-4ca1a2ed378c","direction":"outgoing","index":119598,"result_id":"0e594a32-ef39-4f3d-96d9-4cb7df9f1e4e","status":200,"timestamp":"2026-05-22T11:05:46.355-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa538277-060a-47ac-82ac-2948dcb8e61c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_date_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:45.929-04:00"},{"id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","created_at":"2026-05-22T11:05:51.051-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9b5a107e-4c9d-4b4d-a155-c3ce477888f2","direction":"outgoing","index":119599,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished","verb":"get"},{"id":"34c799f6-788e-461a-9728-17a599b21b43","direction":"outgoing","index":119600,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.066-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1678d00b-c620-4fe3-a972-efb8aed4d11f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c10dffc3-94e2-4aa8-8c14-4fb5bb3c773b","direction":"outgoing","index":119601,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1678d00b-c620-4fe3-a972-efb8aed4d11f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fbcc7aab-ffb8-445d-b362-6a1b6d15b32e","direction":"outgoing","index":119602,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1678d00b-c620-4fe3-a972-efb8aed4d11f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5ef2021-7b64-43c2-a613-b25ea3baf216","direction":"outgoing","index":119603,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1678d00b-c620-4fe3-a972-efb8aed4d11f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"445e0d88-58da-4998-97d9-96d56f4d19ba","direction":"outgoing","index":119604,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1678d00b-c620-4fe3-a972-efb8aed4d11f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79ad7944-0fc6-42b1-88d7-d0485ffb5060","direction":"outgoing","index":119605,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished","verb":"get"},{"id":"d6a8f15e-4df7-48e8-812b-6a2cc619e37a","direction":"outgoing","index":119606,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39615e90-6087-46a7-8ef8-55b8db8eac8c","direction":"outgoing","index":119607,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d3fab87-bfa3-4a65-aebb-ebec1cff71b0","direction":"outgoing","index":119608,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f36fa208-3fe8-4520-849e-130eee5e5276","direction":"outgoing","index":119609,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"32f709eb-7766-48ed-82f0-8d7c0eebdaa7","direction":"outgoing","index":119610,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c2e0dbcf-77ab-4821-8901-cf1d69bf10b7","direction":"outgoing","index":119611,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43a0610d-e20e-400c-9704-fadc3309b996","direction":"outgoing","index":119612,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2c9e377-7b6d-4aa5-90cf-d8a0033f4455","direction":"outgoing","index":119613,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e95a8f37-f280-4211-9b95-bf9c11f775dc","direction":"outgoing","index":119614,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed8caebd-0c48-4f1a-9703-5a3aefaed662","direction":"outgoing","index":119615,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d89fb479-cb29-4391-a393-8f50220f197b","direction":"outgoing","index":119616,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f98d011e-5cb7-4b99-840b-e6f21cf49736","direction":"outgoing","index":119617,"result_id":"5cd2eedd-03fe-4f2b-92b1-61687697e7d6","status":200,"timestamp":"2026-05-22T11:05:51.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=26ad48a1-45e2-4671-b56c-01698e85e2b1\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_patient_status_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:51.051-04:00"},{"id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","created_at":"2026-05-22T11:05:57.655-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5c931d8d-c3c8-4c6b-897c-44c51d46068f","direction":"outgoing","index":119618,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85","verb":"get"},{"id":"e630222b-e7e1-4ecd-8f66-0bb72b050f7d","direction":"outgoing","index":119619,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f7da2f2-b4fe-4cd8-8448-ced1a061e9ec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"607afe1c-4f80-40ce-878a-1f8c8a52bf9e","direction":"outgoing","index":119620,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f7da2f2-b4fe-4cd8-8448-ced1a061e9ec\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbd2a318-a459-4eba-9515-a19cb6ab8abb","direction":"outgoing","index":119621,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f7da2f2-b4fe-4cd8-8448-ced1a061e9ec\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eac1db7b-06c2-41c2-98ee-3e9023039dfb","direction":"outgoing","index":119622,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f7da2f2-b4fe-4cd8-8448-ced1a061e9ec\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a96e8877-4394-4c85-a8e2-f4deec00b804","direction":"outgoing","index":119623,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f7da2f2-b4fe-4cd8-8448-ced1a061e9ec\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79639266-ddff-4e61-8f76-c543b5c5887e","direction":"outgoing","index":119624,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85","verb":"get"},{"id":"b45687ae-c497-4afb-aaca-f207f74583a2","direction":"outgoing","index":119625,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac32ec90-b7c2-4be7-a8c8-530dc6ed55e1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5a5df5f-f646-49e4-9ad3-b6b5c2a99344","direction":"outgoing","index":119626,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac32ec90-b7c2-4be7-a8c8-530dc6ed55e1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"84095e11-5182-4cd6-8539-ca91a00c245d","direction":"outgoing","index":119627,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac32ec90-b7c2-4be7-a8c8-530dc6ed55e1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d06dd50-6960-4b91-9a0a-c1eccabdddf2","direction":"outgoing","index":119628,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac32ec90-b7c2-4be7-a8c8-530dc6ed55e1\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf2d7a8b-1e28-455b-adac-ed43a881e850","direction":"outgoing","index":119629,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac32ec90-b7c2-4be7-a8c8-530dc6ed55e1\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"33325ab9-7a79-4020-bf1a-98dd614448a1","direction":"outgoing","index":119630,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355","verb":"get"},{"id":"8651a3c2-7f30-4ece-8962-f84da0dd92e0","direction":"outgoing","index":119631,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.823-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"19d5f686-ecc5-420e-9a81-39bba4fc9f3a","direction":"outgoing","index":119632,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5b70ab-5a62-46b0-a091-c42b493b4bae","direction":"outgoing","index":119633,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b325b4d-2dc6-4384-a9ad-4f15e97179d1","direction":"outgoing","index":119634,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"51c9f184-8e86-4213-821d-1862ca67ce35","direction":"outgoing","index":119635,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f0ef200c-13eb-4b05-89d3-4dde380e7485","direction":"outgoing","index":119636,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f708b02-b649-4d02-95f6-1d864236bb00","direction":"outgoing","index":119637,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf1a3dbc-943a-4741-8590-a6ee13ce0e83","direction":"outgoing","index":119638,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c616cdef-97ca-48ec-8f0f-b44f1f5a4409","direction":"outgoing","index":119639,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43af24e2-cc11-41e3-a65d-8523c83de4c2","direction":"outgoing","index":119640,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b9a8e15-0c26-40f1-82f4-782a31d51640","direction":"outgoing","index":119641,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d2b8b76-0495-4ce5-85cc-f2fb9f31ef94","direction":"outgoing","index":119642,"result_id":"30e738e8-8fe1-4b26-afee-ab740f7f5f7a","status":200,"timestamp":"2026-05-22T11:05:57.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cac4fdd-8b99-4ab6-8ff0-339a670d9c11\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_class_patient_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:05:57.655-04:00"},{"id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","created_at":"2026-05-22T11:06:01.122-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e3eb13e1-8bea-42a3-9deb-f62ec5a5a804","direction":"outgoing","index":119643,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009","verb":"get"},{"id":"7b82a141-294a-4934-9747-c9a1b7aa30e8","direction":"outgoing","index":119644,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59531a11-80f1-46e4-9fbf-8fd981c37bbc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7bb809da-f51c-4a50-8b07-67305ea5109a","direction":"outgoing","index":119645,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59531a11-80f1-46e4-9fbf-8fd981c37bbc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78d15dcb-0e66-46e6-bdee-41681805275c","direction":"outgoing","index":119646,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009","verb":"get"},{"id":"c161a56a-3be9-4e89-8e25-6e8986ffbe2f","direction":"outgoing","index":119647,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=25944812-e7b2-4c72-b534-af45e518ca69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46e90c62-016e-446e-8630-f6428386e5ab","direction":"outgoing","index":119648,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=25944812-e7b2-4c72-b534-af45e518ca69\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"283fdf35-1790-48ef-8118-58d295bcefaa","direction":"outgoing","index":119649,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009","verb":"get"},{"id":"44cbbd10-45db-44ac-aafd-c226355b5047","direction":"outgoing","index":119650,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2ae4f6b-6260-4b44-b965-cde5e2c5ff50\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d9c528a-fa45-4164-af26-02b0c5fe80a0","direction":"outgoing","index":119651,"result_id":"1ab3a781-a1b1-442d-916f-6d542bd9dc5c","status":200,"timestamp":"2026-05-22T11:06:01.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2ae4f6b-6260-4b44-b965-cde5e2c5ff50\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_patient_type_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:01.122-04:00"},{"id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","created_at":"2026-05-22T11:06:06.431-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"682e0f0c-5bc9-47fa-a62c-7a4fc2be7d6e","direction":"outgoing","index":119652,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"f15923d7-c304-47e6-bb69-13340eca3a24","direction":"outgoing","index":119653,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=344c3ac5-b4f5-4099-a02e-794fedb86114\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f126c0ba-d654-4987-a4e1-cc4a17d31fde","direction":"outgoing","index":119654,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=344c3ac5-b4f5-4099-a02e-794fedb86114\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aeaa85a5-5fdc-4a8f-bb32-46c80074df5c","direction":"outgoing","index":119655,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=344c3ac5-b4f5-4099-a02e-794fedb86114\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1eeab2a7-b70f-41a9-bd23-970f22d00f0c","direction":"outgoing","index":119656,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=344c3ac5-b4f5-4099-a02e-794fedb86114\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dceb6a26-5f81-46b4-bd54-9135d0bc3cd9","direction":"outgoing","index":119657,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=344c3ac5-b4f5-4099-a02e-794fedb86114\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64b1e0fd-01b2-4d1e-b2be-6ac918244b48","direction":"outgoing","index":119658,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"5e3eae6f-5ecf-4b87-a391-7d37b114f939","direction":"outgoing","index":119659,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f68385a-41ef-4e4d-adc7-a2b604edc4b4","direction":"outgoing","index":119660,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85d23ab3-ec34-4840-9d6e-1d7d587077ba","direction":"outgoing","index":119661,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d3b36ff3-81f6-4d20-b5b6-7530b6fe0826","direction":"outgoing","index":119662,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5aabd176-0975-4471-a5ea-d51ce4955c27","direction":"outgoing","index":119663,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"377b2e66-33a9-46e3-88ba-b84ea97f4a9b","direction":"outgoing","index":119664,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e73bb3f3-9811-4461-8a04-47db46a7885c","direction":"outgoing","index":119665,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea5b831d-2194-4912-92d9-b72fca886654","direction":"outgoing","index":119666,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b891ee5-e989-4ca5-9802-4e8448f59fc3","direction":"outgoing","index":119667,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1bdb0353-aa8c-4105-b135-41c8a973010f","direction":"outgoing","index":119668,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92c094e6-1a6a-4a13-9b47-d86ddc2b5084","direction":"outgoing","index":119669,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"011c2310-b34d-48f4-84e9-84bb4204f145","direction":"outgoing","index":119670,"result_id":"0681aae7-9ea0-4b61-a3c3-6fd7b451f993","status":200,"timestamp":"2026-05-22T11:06:06.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a116feff-f0ae-4653-b397-298ba3a35eaf\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_provenance_revinclude_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:06.431-04:00"},{"id":"0d497b12-d6a6-422f-9624-d650b01c44f1","created_at":"2026-05-22T11:06:14.507-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed","type":"info"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#394701000)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410429000)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|4.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:14.507-04:00"},{"id":"5337a9b0-d9a6-478f-97e6-e6d1200bfbea","created_at":"2026-05-22T11:06:14.833-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:14.833-04:00"},{"id":"db45bf30-4c83-4337-a8df-7fb8b195ef76","created_at":"2026-05-22T11:06:15.112-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f3bd5d29-7117-4c91-93de-daa9d727e9c3","direction":"outgoing","index":119671,"result_id":"db45bf30-4c83-4337-a8df-7fb8b195ef76","status":200,"timestamp":"2026-05-22T11:06:15.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6","verb":"get"},{"id":"a614a2bc-07e2-452b-b036-222e7db85ce3","direction":"outgoing","index":119672,"result_id":"db45bf30-4c83-4337-a8df-7fb8b195ef76","status":200,"timestamp":"2026-05-22T11:06:15.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter-us_core_v400_encounter_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.112-04:00"},{"id":"e4c2f185-104a-4d47-a39f-dbd6f3680e30","created_at":"2026-05-22T11:06:15.151-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_encounter","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.151-04:00"},{"id":"81b2c538-de9d-4fcb-be56-d65113a05fc9","created_at":"2026-05-22T11:06:15.281-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"4fe12571-7f39-4f01-a70c-9e85f89d988f","direction":"outgoing","index":119673,"result_id":"81b2c538-de9d-4fcb-be56-d65113a05fc9","status":200,"timestamp":"2026-05-22T11:06:15.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization-us_core_v400_organization_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.281-04:00"},{"id":"e8be5c56-459f-4219-a23c-28e524bb3d2b","created_at":"2026-05-22T11:06:15.552-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5afb3d5b-88c2-46e9-be98-afb4c6929120","direction":"outgoing","index":119674,"result_id":"e8be5c56-459f-4219-a23c-28e524bb3d2b","status":200,"timestamp":"2026-05-22T11:06:15.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052","verb":"get"},{"id":"583a8ba7-1b3c-45de-921b-36e8132b658d","direction":"outgoing","index":119675,"result_id":"e8be5c56-459f-4219-a23c-28e524bb3d2b","status":200,"timestamp":"2026-05-22T11:06:15.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/_search","verb":"post"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization-us_core_v400_organization_name_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.552-04:00"},{"id":"f7308b59-36b7-42b9-b50f-cbed6d7a1fd9","created_at":"2026-05-22T11:06:15.718-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ff987a87-59ac-4f77-b065-a20751d93398","direction":"outgoing","index":119676,"result_id":"f7308b59-36b7-42b9-b50f-cbed6d7a1fd9","status":200,"timestamp":"2026-05-22T11:06:15.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization-us_core_v400_organization_address_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.718-04:00"},{"id":"c13cdbb6-f299-46ea-a477-d2de873457ba","created_at":"2026-05-22T11:06:15.765-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization.identifier[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|4.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization-us_core_v400_organization_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.765-04:00"},{"id":"8b5b47d7-1b55-431b-8740-284716910cb0","created_at":"2026-05-22T11:06:15.773-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization-us_core_v400_organization_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.773-04:00"},{"id":"062faeb7-a68d-417c-b402-0834fc241f3a","created_at":"2026-05-22T11:06:15.774-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_organization","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.774-04:00"},{"id":"24944d8b-ca09-47b8-bf5b-9a1d7f77db77","created_at":"2026-05-22T11:06:15.902-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"631910d0-aa49-45a9-b109-17395932d7a2","direction":"outgoing","index":119677,"result_id":"24944d8b-ca09-47b8-bf5b-9a1d7f77db77","status":200,"timestamp":"2026-05-22T11:06:15.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner-us_core_v400_practitioner_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:15.902-04:00"},{"id":"dd754a15-ad7c-4d48-97cb-8a745e7efbaf","created_at":"2026-05-22T11:06:16.172-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e9ded50e-2699-4945-aa2a-7a948cda5e45","direction":"outgoing","index":119678,"result_id":"dd754a15-ad7c-4d48-97cb-8a745e7efbaf","status":200,"timestamp":"2026-05-22T11:06:16.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251","verb":"get"},{"id":"0bed9fdf-33f5-4d63-ad1e-092076b1f6eb","direction":"outgoing","index":119679,"result_id":"dd754a15-ad7c-4d48-97cb-8a745e7efbaf","status":200,"timestamp":"2026-05-22T11:06:16.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/_search","verb":"post"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner-us_core_v400_practitioner_name_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.172-04:00"},{"id":"0bfe3647-cd85-456a-9dd7-cffb8cf59fda","created_at":"2026-05-22T11:06:16.442-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"56799684-f8db-4893-ad66-465d7044121e","direction":"outgoing","index":119680,"result_id":"0bfe3647-cd85-456a-9dd7-cffb8cf59fda","status":200,"timestamp":"2026-05-22T11:06:16.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819","verb":"get"},{"id":"b9e22072-a6f5-484f-8439-d09e948e67ab","direction":"outgoing","index":119681,"result_id":"0bfe3647-cd85-456a-9dd7-cffb8cf59fda","status":200,"timestamp":"2026-05-22T11:06:16.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner-us_core_v400_practitioner_identifier_search_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.442-04:00"},{"id":"1cb5bdc0-2e2a-4abf-b411-3e7d3b6bbeda","created_at":"2026-05-22T11:06:16.498-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner-us_core_v400_practitioner_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.498-04:00"},{"id":"8efba3e3-43ce-4134-93a2-858a0f9cc9f3","created_at":"2026-05-22T11:06:16.503-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner-us_core_v400_practitioner_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.503-04:00"},{"id":"12d900fd-26b7-4aed-b2a3-bf9ad817fe08","created_at":"2026-05-22T11:06:16.505-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_practitioner","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.505-04:00"},{"id":"8a91b3fe-c870-4375-ab65-cd729e97110c","created_at":"2026-05-22T11:06:16.678-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a510041-ff45-4c55-8f00-e3af18f20443","direction":"outgoing","index":119682,"result_id":"8a91b3fe-c870-4375-ab65-cd729e97110c","status":200,"timestamp":"2026-05-22T11:06:16.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_provenance-us_core_v400_provenance_read_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:16.678-04:00"},{"id":"4d5773e3-ed75-43b0-84bb-44dc12e69de1","created_at":"2026-05-22T11:06:21.230-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_provenance-us_core_v400_provenance_validation_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:21.230-04:00"},{"id":"1bc5316d-95f5-4012-8ae6-bbebd226685c","created_at":"2026-05-22T11:06:21.318-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_provenance-us_core_v400_provenance_must_support_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:21.318-04:00"},{"id":"b4a6f504-a945-461b-b90d-62687ecf65ec","created_at":"2026-05-22T11:06:21.605-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ac697e72-ff3b-4d45-b384-4ca734a7ae66","direction":"outgoing","index":119683,"result_id":"b4a6f504-a945-461b-b90d-62687ecf65ec","status":200,"timestamp":"2026-05-22T11:06:21.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"},{"id":"67a3ca53-717f-4c18-94cf-450c0b1907ef","direction":"outgoing","index":119684,"result_id":"b4a6f504-a945-461b-b90d-62687ecf65ec","status":200,"timestamp":"2026-05-22T11:06:21.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_provenance-us_core_v400_provenance_reference_resolution_test","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:21.605-04:00"},{"id":"b15345ee-2524-4fbe-9e54-82a540aec8f4","created_at":"2026-05-22T11:06:21.645-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_provenance","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:21.645-04:00"},{"id":"544da96d-f460-42bb-96a6-d89677be332d","created_at":"2026-05-22T11:06:25.543-04:00","inputs":[{"name":"patient_ids","value":"85,355","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"551607cc-0049-43d4-8ede-3340cfed53ba","direction":"outgoing","index":119685,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"44ea1730-31c6-430b-b45d-9c3c2dee5ccb","direction":"outgoing","index":119686,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=41aeeb09-1d62-4c30-b197-5dfd368136d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"204b716f-a468-4030-a6e1-4d4fc0d8f6a5","direction":"outgoing","index":119687,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=41aeeb09-1d62-4c30-b197-5dfd368136d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1564127-73ca-4b86-84ca-640d53c02817","direction":"outgoing","index":119688,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"68bddaf4-5711-489e-91b5-fe441ca000b5","direction":"outgoing","index":119689,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=25501fac-260e-4280-84fa-4fecc5205b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93a76a46-d8c4-4fb8-b860-3511160854dd","direction":"outgoing","index":119690,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"26225757-7de1-4d4b-9280-8a36a8abab47","direction":"outgoing","index":119691,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d7b044cb-613f-4ccf-8278-269bce8e5669\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c9240e44-bab7-471e-ae36-85a6506c8400","direction":"outgoing","index":119692,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.631-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d7b044cb-613f-4ccf-8278-269bce8e5669\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eff6e452-38f4-497d-90af-85e6ffbec510","direction":"outgoing","index":119693,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"862bd912-2cec-4345-a7d0-cf732c9a635f","direction":"outgoing","index":119694,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=52c8e08c-d0c0-488a-921e-45158823759c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db9308db-1aca-4fbe-9363-08353ec4989d","direction":"outgoing","index":119695,"result_id":"544da96d-f460-42bb-96a6-d89677be332d","status":200,"timestamp":"2026-05-22T11:06:25.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=52c8e08c-d0c0-488a-921e-45158823759c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_types","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.543-04:00"},{"id":"f04346ec-5e40-49f3-adb3-59c61dbcddf9","created_at":"2026-05-22T11:06:25.678-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_attachments","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.678-04:00"},{"id":"d024537a-44a0-45ce-8746-6398305b693a","created_at":"2026-05-22T11:06:25.680-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_v400_clinical_notes_guidance","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.680-04:00"},{"id":"7d4c3383-64ae-42cb-b988-641ae4216f9e","created_at":"2026-05-22T11:06:25.688-04:00","inputs":[{"name":"dar_extension_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.688-04:00"},{"id":"5a27c1f6-2dd0-42a7-879b-5e03cde67586","created_at":"2026-05-22T11:06:25.691-04:00","inputs":[{"name":"dar_code_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v400-us_core_v400_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.691-04:00"},{"id":"f07fd190-bbcc-48b4-a99b-93b6ad0a8239","created_at":"2026-05-22T11:06:25.692-04:00","inputs":[{"name":"dar_extension_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"dar_code_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api-us_core_311_data_absent_reason","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.692-04:00"},{"id":"dcfb2eaa-5ac8-499c-8f39-f0f2e1d8d199","created_at":"2026-05-22T11:06:25.702-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:00:31-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v400-us_core_v400_fhir_api","test_run_id":"0941fa5d-b34a-4f27-8e1f-526f2eeedbb0","test_session_id":"bivJskNbr3Z","updated_at":"2026-05-22T11:06:25.702-04:00"}] \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_501.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_501.yaml new file mode 100644 index 000000000..3c34ae9ad --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_501.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v501 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 5.0.1 session created + status: created + start_run: + runnable: 2 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 2 US Core FHIR API + + - state_description: Finished Group 2 US Core FHIR API + status: done + last_completed: 2 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_501_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_501_expected.json new file mode 100644 index 000000000..123fb1e2e --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_501_expected.json @@ -0,0 +1,41390 @@ +[ + { + "id": "ed19dec6-9759-4c13-a37a-4af3d8fdd774", + "created_at": "2026-05-22T08:44:38.940-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-standalone_auth_tls", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:38.940-04:00" + }, + { + "id": "1080ee6f-5848-4e8d-91ba-f03ca9ad2d08", + "created_at": "2026-05-22T08:44:39.833-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[4].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-coverage'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[4].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-coverage-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationdispense'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-status'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-type'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[14].searchParam[2].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-medicationdispense-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[28]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancystatus'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[29]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancyintent'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[30]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-occupation'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[31]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[32]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[33]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[34]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[35]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[36]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-average-blood-pressure'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-specimen'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-id'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[24].searchParam[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/SearchParameter/us-core-specimen-patient'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6adec7a6-270a-4b1b-9e75-ec3760f6f45c", + "direction": "outgoing", + "index": 112433, + "result_id": "1080ee6f-5848-4e8d-91ba-f03ca9ad2d08", + "status": 200, + "timestamp": "2026-05-22T08:44:39.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-us_core_conformance_support", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:39.833-04:00" + }, + { + "id": "d575500b-c846-498e-9919-3dedfc0e66dd", + "created_at": "2026-05-22T08:44:40.024-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-us_core_fhir_version", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.024-04:00" + }, + { + "id": "38deaec3-a46a-49e8-9ddb-a61aaa45496b", + "created_at": "2026-05-22T08:44:40.034-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6adec7a6-270a-4b1b-9e75-ec3760f6f45c", + "direction": "outgoing", + "index": 112433, + "result_id": "1080ee6f-5848-4e8d-91ba-f03ca9ad2d08", + "status": 200, + "timestamp": "2026-05-22T08:44:39.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-us_core_json_support", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.034-04:00" + }, + { + "id": "0a15070c-6ec3-432d-a294-f37c53e04e3a", + "created_at": "2026-05-22T08:44:40.044-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6adec7a6-270a-4b1b-9e75-ec3760f6f45c", + "direction": "outgoing", + "index": 112433, + "result_id": "1080ee6f-5848-4e8d-91ba-f03ca9ad2d08", + "status": 200, + "timestamp": "2026-05-22T08:44:39.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-us_core_profile_support", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.044-04:00" + }, + { + "id": "c221bb41-c74b-42eb-b094-68c58c2d7a9c", + "created_at": "2026-05-22T08:44:40.051-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6adec7a6-270a-4b1b-9e75-ec3760f6f45c", + "direction": "outgoing", + "index": 112433, + "result_id": "1080ee6f-5848-4e8d-91ba-f03ca9ad2d08", + "status": 200, + "timestamp": "2026-05-22T08:44:39.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement-us_core_instantiate", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.051-04:00" + }, + { + "id": "3c880ff7-a9df-47e5-998d-932775f8826f", + "created_at": "2026-05-22T08:44:40.054-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_capability_statement", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.054-04:00" + }, + { + "id": "cebdb012-8b0a-4703-933c-2aebf5d2e2a1", + "created_at": "2026-05-22T08:44:40.721-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e6dc99b7-4b60-4eac-9402-61f497b1cc29", + "direction": "outgoing", + "index": 112434, + "result_id": "cebdb012-8b0a-4703-933c-2aebf5d2e2a1", + "status": 200, + "timestamp": "2026-05-22T08:44:40.722-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85", + "verb": "get" + }, + { + "id": "f4b51dd0-2af6-4fd6-912f-225aa49e7639", + "direction": "outgoing", + "index": 112435, + "result_id": "cebdb012-8b0a-4703-933c-2aebf5d2e2a1", + "status": 200, + "timestamp": "2026-05-22T08:44:40.735-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/_search", + "verb": "post" + }, + { + "id": "8df816c8-4ff0-4e1b-ac78-5d6c8eaf7a2b", + "direction": "outgoing", + "index": 112436, + "result_id": "cebdb012-8b0a-4703-933c-2aebf5d2e2a1", + "status": 200, + "timestamp": "2026-05-22T08:44:40.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355", + "verb": "get" + }, + { + "id": "32192da1-dd17-4c55-bad7-1b202db46677", + "direction": "outgoing", + "index": 112437, + "result_id": "cebdb012-8b0a-4703-933c-2aebf5d2e2a1", + "status": 200, + "timestamp": "2026-05-22T08:44:40.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:40.721-04:00" + }, + { + "id": "e626982f-c7d9-4358-9b28-80704b5af0a8", + "created_at": "2026-05-22T08:44:41.055-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d6b69d1-8258-4c59-bd79-e656a859c3b8", + "direction": "outgoing", + "index": 112438, + "result_id": "e626982f-c7d9-4358-9b28-80704b5af0a8", + "status": 200, + "timestamp": "2026-05-22T08:44:41.059-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + }, + { + "id": "09a5df47-b3f6-4b73-a980-4c59ae483dfc", + "direction": "outgoing", + "index": 112439, + "result_id": "e626982f-c7d9-4358-9b28-80704b5af0a8", + "status": 200, + "timestamp": "2026-05-22T08:44:41.077-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_identifier_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.055-04:00" + }, + { + "id": "23ddfc35-bdea-46a9-a79f-10fb8e9fcc18", + "created_at": "2026-05-22T08:44:41.220-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fd6b52e8-c4d9-4308-a5d3-f47013f7958f", + "direction": "outgoing", + "index": 112440, + "result_id": "23ddfc35-bdea-46a9-a79f-10fb8e9fcc18", + "status": 200, + "timestamp": "2026-05-22T08:44:41.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_name_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.220-04:00" + }, + { + "id": "ca6e78d3-06b4-4cc8-9401-62ce29fa9138", + "created_at": "2026-05-22T08:44:41.378-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7ef7cb76-24ff-4eeb-a425-e26a38535f13", + "direction": "outgoing", + "index": 112441, + "result_id": "ca6e78d3-06b4-4cc8-9401-62ce29fa9138", + "status": 200, + "timestamp": "2026-05-22T08:44:41.380-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_birthdate_family_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.378-04:00" + }, + { + "id": "ba830fec-ebfa-4126-a9ec-c857b90029f5", + "created_at": "2026-05-22T08:44:41.537-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bb139c90-563b-49ed-ac53-e03059d3cfe8", + "direction": "outgoing", + "index": 112442, + "result_id": "ba830fec-ebfa-4126-a9ec-c857b90029f5", + "status": 200, + "timestamp": "2026-05-22T08:44:41.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_birthdate_name_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.537-04:00" + }, + { + "id": "9d176f2f-3b23-4c1b-8b86-56592505c93d", + "created_at": "2026-05-22T08:44:41.707-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "24cbf02a-12c6-4017-ac32-2150c2a32d8b", + "direction": "outgoing", + "index": 112443, + "result_id": "9d176f2f-3b23-4c1b-8b86-56592505c93d", + "status": 200, + "timestamp": "2026-05-22T08:44:41.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_family_gender_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.707-04:00" + }, + { + "id": "358b02fb-08a1-44f3-a0dd-02b71c5f28b6", + "created_at": "2026-05-22T08:44:41.861-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "15fe80a3-ba2a-435e-9d24-3200429b6baa", + "direction": "outgoing", + "index": 112444, + "result_id": "358b02fb-08a1-44f3-a0dd-02b71c5f28b6", + "status": 200, + "timestamp": "2026-05-22T08:44:41.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_gender_name_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:41.861-04:00" + }, + { + "id": "1e0efc98-7db1-43ee-a505-65e04a42376e", + "created_at": "2026-05-22T08:44:42.015-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b7dc80e7-1ffb-4b08-9572-185be45a98c1", + "direction": "outgoing", + "index": 112445, + "result_id": "1e0efc98-7db1-43ee-a505-65e04a42376e", + "status": 200, + "timestamp": "2026-05-22T08:44:42.018-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:42.015-04:00" + }, + { + "id": "38f67280-2ca8-45ad-a5f0-013e05e15e52", + "created_at": "2026-05-22T08:44:42.560-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7442918d-270a-4d82-9d44-f98abd26819c", + "direction": "outgoing", + "index": 112446, + "result_id": "38f67280-2ca8-45ad-a5f0-013e05e15e52", + "status": 200, + "timestamp": "2026-05-22T08:44:42.562-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target", + "verb": "get" + }, + { + "id": "f4880c48-cddd-4100-bc3c-50bb030753ca", + "direction": "outgoing", + "index": 112447, + "result_id": "38f67280-2ca8-45ad-a5f0-013e05e15e52", + "status": 200, + "timestamp": "2026-05-22T08:44:42.578-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target", + "verb": "get" + }, + { + "id": "4998e280-5e13-4a9c-9346-839edc0005f1", + "direction": "outgoing", + "index": 112448, + "result_id": "38f67280-2ca8-45ad-a5f0-013e05e15e52", + "status": 200, + "timestamp": "2026-05-22T08:44:42.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=907\u0026_revinclude=Provenance:target", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:42.560-04:00" + }, + { + "id": "418f6bd4-f3fc-4e8b-8063-c9a7435ea4ff", + "created_at": "2026-05-22T08:44:45.959-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + }, + { + "message": "Patient/355: Patient.extension[3]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Patient/355: Patient.extension[3]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation", + "type": "info" + }, + { + "message": "Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + }, + { + "message": "Patient/907: Patient.extension[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Patient/907: Patient.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-sex", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:45.959-04:00" + }, + { + "id": "f384ffdf-fa20-49eb-8638-82b0cf4d1665", + "created_at": "2026-05-22T08:44:45.986-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient-us_core_v501_patient_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:45.986-04:00" + }, + { + "id": "bc14dd31-f933-47ff-a1b1-598e2e3ad086", + "created_at": "2026-05-22T08:44:45.987-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_patient", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:45.987-04:00" + }, + { + "id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "created_at": "2026-05-22T08:44:46.784-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2e1d5ff2-3d43-4ff4-a4fb-69c1bffc1601", + "direction": "outgoing", + "index": 112449, + "result_id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "status": 200, + "timestamp": "2026-05-22T08:44:46.791-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85", + "verb": "get" + }, + { + "id": "c128b577-29b1-4d49-a929-d55084c9ef6e", + "direction": "outgoing", + "index": 112450, + "result_id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "status": 200, + "timestamp": "2026-05-22T08:44:46.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355", + "verb": "get" + }, + { + "id": "8d34a640-a4d1-4688-ad52-bfba1e732835", + "direction": "outgoing", + "index": 112451, + "result_id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "status": 200, + "timestamp": "2026-05-22T08:44:46.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search", + "verb": "post" + }, + { + "id": "cd81a9c1-2709-44e7-ae2f-dce5a5e0483f", + "direction": "outgoing", + "index": 112452, + "result_id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "status": 200, + "timestamp": "2026-05-22T08:44:46.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355", + "verb": "get" + }, + { + "id": "cdb5b23a-7dfa-4409-a4ff-12620c766ae7", + "direction": "outgoing", + "index": 112453, + "result_id": "fe1b792d-c107-4e12-9b55-eb19e946633a", + "status": 200, + "timestamp": "2026-05-22T08:44:46.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:46.784-04:00" + }, + { + "id": "7bd10b51-e0dd-4473-af29-906dc9c0fd78", + "created_at": "2026-05-22T08:44:47.149-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "87aa950c-72c7-4e3d-9968-06fd65da63ba", + "direction": "outgoing", + "index": 112454, + "result_id": "7bd10b51-e0dd-4473-af29-906dc9c0fd78", + "status": 200, + "timestamp": "2026-05-22T08:44:47.154-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355", + "verb": "get" + }, + { + "id": "041bf5c4-415d-425e-b0ff-97efc4261991", + "direction": "outgoing", + "index": 112455, + "result_id": "7bd10b51-e0dd-4473-af29-906dc9c0fd78", + "status": 200, + "timestamp": "2026-05-22T08:44:47.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_patient_clinical_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:47.149-04:00" + }, + { + "id": "c757a2fa-7588-4255-b2e2-818406cc02dc", + "created_at": "2026-05-22T08:44:47.317-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "98c8d856-ccc5-46d7-98ea-7e31e1541bd0", + "direction": "outgoing", + "index": 112456, + "result_id": "c757a2fa-7588-4255-b2e2-818406cc02dc", + "status": 200, + "timestamp": "2026-05-22T08:44:47.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:47.317-04:00" + }, + { + "id": "1fc8d6ac-416d-49fa-9fb1-b6e55d7b60d1", + "created_at": "2026-05-22T08:44:47.801-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a1af32be-9dc1-4367-a6e7-2335fa4e2475", + "direction": "outgoing", + "index": 112457, + "result_id": "1fc8d6ac-416d-49fa-9fb1-b6e55d7b60d1", + "status": 200, + "timestamp": "2026-05-22T08:44:47.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "bee5ef6d-d6fe-4f68-bc08-9f51508849ac", + "direction": "outgoing", + "index": 112458, + "result_id": "1fc8d6ac-416d-49fa-9fb1-b6e55d7b60d1", + "status": 200, + "timestamp": "2026-05-22T08:44:47.828-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "b56452f1-32af-4f4b-adcd-6db062268119", + "direction": "outgoing", + "index": 112459, + "result_id": "1fc8d6ac-416d-49fa-9fb1-b6e55d7b60d1", + "status": 200, + "timestamp": "2026-05-22T08:44:47.843-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:47.801-04:00" + }, + { + "id": "323ae9f4-3d4c-43a2-9b45-85afade45ed9", + "created_at": "2026-05-22T08:44:52.402-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:52.402-04:00" + }, + { + "id": "690e02ac-82ea-4c64-9ccf-e5c4d5feec7b", + "created_at": "2026-05-22T08:44:52.455-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:52.455-04:00" + }, + { + "id": "0435f5ed-2b30-4e7a-b218-7bce16de7736", + "created_at": "2026-05-22T08:44:52.623-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "219e49f9-58e5-4dfe-8288-68e3844397a7", + "direction": "outgoing", + "index": 112460, + "result_id": "0435f5ed-2b30-4e7a-b218-7bce16de7736", + "status": 200, + "timestamp": "2026-05-22T08:44:52.628-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance-us_core_v501_allergy_intolerance_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:52.623-04:00" + }, + { + "id": "8763e1fc-3ec5-4cb5-a272-93bcbb9c61f3", + "created_at": "2026-05-22T08:44:52.646-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_allergy_intolerance", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:52.646-04:00" + }, + { + "id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "created_at": "2026-05-22T08:44:54.638-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d3c8ef7b-000a-4883-98a9-00d2dab455c7", + "direction": "outgoing", + "index": 112461, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.645-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "29bcbe7d-1aad-4198-aa1d-0382b6aeb3d0", + "direction": "outgoing", + "index": 112462, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/_search", + "verb": "post" + }, + { + "id": "10c750c7-5e31-4480-981d-c32e315dacbc", + "direction": "outgoing", + "index": 112463, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "3f650528-d9fb-4853-bfc4-3fc78d8b6a44", + "direction": "outgoing", + "index": 112464, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "9b1148b5-7181-4967-ab4c-c907525273ab", + "direction": "outgoing", + "index": 112465, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "3be2914b-01f8-4db8-981d-a3259fb6afeb", + "direction": "outgoing", + "index": 112466, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d81a1db5-82ca-476b-88bc-f82bdbe13d46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9afc2779-e975-45f3-92ab-807db621b0b9", + "direction": "outgoing", + "index": 112467, + "result_id": "8f8d8502-ab30-4157-977e-33dccba835a2", + "status": 200, + "timestamp": "2026-05-22T08:44:54.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:54.638-04:00" + }, + { + "id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "created_at": "2026-05-22T08:44:56.100-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "30e499eb-d505-4a05-9265-85a20e12cd7a", + "direction": "outgoing", + "index": 112468, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "00d26a9d-a555-4bfd-b217-08559a9aa58b", + "direction": "outgoing", + "index": 112469, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "eeb39a9c-1399-4e3d-a853-5c945810f5b1", + "direction": "outgoing", + "index": 112470, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "0a79a2f9-3472-46f8-92c5-712f3c07f0e2", + "direction": "outgoing", + "index": 112471, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "ba4fec99-b0f7-4889-8b40-03248497cd34", + "direction": "outgoing", + "index": 112472, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.157-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "0c2320b2-99a5-43c1-bf64-bf60aa67c83a", + "direction": "outgoing", + "index": 112473, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.168-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "a44baf2c-417b-4a3b-be01-f6e76488c269", + "direction": "outgoing", + "index": 112474, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.180-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "9215bc6d-7672-4429-adce-4782fe4b2810", + "direction": "outgoing", + "index": 112475, + "result_id": "c2d492f2-a165-42c9-9dd0-560fee8dcead", + "status": 200, + "timestamp": "2026-05-22T08:44:56.192-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_patient_category_status_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:56.100-04:00" + }, + { + "id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "created_at": "2026-05-22T08:44:58.139-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "acbbddd2-b75c-4294-9570-5fda8fcf5ef5", + "direction": "outgoing", + "index": 112476, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "40845a65-fa26-48cf-a208-02eff4e36576", + "direction": "outgoing", + "index": 112477, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b47eb48f-1300-4c2f-b1e6-92d67e37db00", + "direction": "outgoing", + "index": 112478, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ccca95bf-eda6-4faf-9b95-864a417f6605", + "direction": "outgoing", + "index": 112479, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.192-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "09bc5406-0969-4970-94ea-7af94cfafc5a", + "direction": "outgoing", + "index": 112480, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.203-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8280c748-715c-4d50-a612-301ac7a3e159", + "direction": "outgoing", + "index": 112481, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.214-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4a097d67-a6c8-4d3d-a787-4a4ccaea7d96", + "direction": "outgoing", + "index": 112482, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.226-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7be7109b-a359-48b7-895f-472b066f6879", + "direction": "outgoing", + "index": 112483, + "result_id": "346aaae9-b1f8-4a18-b213-541f90dfbcac", + "status": 200, + "timestamp": "2026-05-22T08:44:58.239-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c4a472f8-edd6-4c4b-b78a-0541155b8d4f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:58.139-04:00" + }, + { + "id": "36051451-5b40-4800-a5d8-7ff0459bb437", + "created_at": "2026-05-22T08:44:58.927-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e35892b5-3b42-4c8c-832c-8def1f847662", + "direction": "outgoing", + "index": 112484, + "result_id": "36051451-5b40-4800-a5d8-7ff0459bb437", + "status": 200, + "timestamp": "2026-05-22T08:44:58.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "d32e15e3-03a3-4d50-abca-88f237bd236c", + "direction": "outgoing", + "index": 112485, + "result_id": "36051451-5b40-4800-a5d8-7ff0459bb437", + "status": 200, + "timestamp": "2026-05-22T08:44:58.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "827e9eef-9914-49c3-b1b5-503fbe4842c5", + "direction": "outgoing", + "index": 112486, + "result_id": "36051451-5b40-4800-a5d8-7ff0459bb437", + "status": 200, + "timestamp": "2026-05-22T08:44:58.962-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "e0fa0885-a039-40ad-8af9-55fb99b78ca5", + "direction": "outgoing", + "index": 112487, + "result_id": "36051451-5b40-4800-a5d8-7ff0459bb437", + "status": 200, + "timestamp": "2026-05-22T08:44:58.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:58.927-04:00" + }, + { + "id": "a1ee2e44-7dad-4af3-a1a3-bdfb680c892e", + "created_at": "2026-05-22T08:44:59.109-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4f1cb6bb-f46b-43cb-aef1-c59146f06a31", + "direction": "outgoing", + "index": 112488, + "result_id": "a1ee2e44-7dad-4af3-a1a3-bdfb680c892e", + "status": 200, + "timestamp": "2026-05-22T08:44:59.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:44:59.109-04:00" + }, + { + "id": "942d5ba0-0435-486d-8927-8775cc70e677", + "created_at": "2026-05-22T08:45:00.490-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "815e7ef7-7040-4b2c-ac4f-0439971532ae", + "direction": "outgoing", + "index": 112489, + "result_id": "942d5ba0-0435-486d-8927-8775cc70e677", + "status": 200, + "timestamp": "2026-05-22T08:45:00.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "ca1fff46-bfbd-46d1-b7b9-36cf57512777", + "direction": "outgoing", + "index": 112490, + "result_id": "942d5ba0-0435-486d-8927-8775cc70e677", + "status": 200, + "timestamp": "2026-05-22T08:45:00.519-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "20872b8d-b386-4879-b9d0-0d69d54eac73", + "direction": "outgoing", + "index": 112491, + "result_id": "942d5ba0-0435-486d-8927-8775cc70e677", + "status": 200, + "timestamp": "2026-05-22T08:45:00.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaa964bb-4e69-4a4c-9d0a-db354848430e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "824e17bf-b6ea-4272-94e3-ce363552cd50", + "direction": "outgoing", + "index": 112492, + "result_id": "942d5ba0-0435-486d-8927-8775cc70e677", + "status": 200, + "timestamp": "2026-05-22T08:45:00.556-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:00.490-04:00" + }, + { + "id": "bb578aac-a383-47de-b42b-4b9696b5279c", + "created_at": "2026-05-22T08:45:08.820-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:08.820-04:00" + }, + { + "id": "3bb6ceee-1c34-4949-afa1-c7eec0266ffc", + "created_at": "2026-05-22T08:45:08.876-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:08.876-04:00" + }, + { + "id": "6ad11614-b554-4457-81a8-e3d2be5930e5", + "created_at": "2026-05-22T08:45:09.041-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3e0eae92-691a-4b35-872c-7aca68f140f2", + "direction": "outgoing", + "index": 112493, + "result_id": "6ad11614-b554-4457-81a8-e3d2be5930e5", + "status": 200, + "timestamp": "2026-05-22T08:45:09.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan-us_core_v501_care_plan_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:09.041-04:00" + }, + { + "id": "740d9121-1482-4615-823e-a5b91c53f904", + "created_at": "2026-05-22T08:45:09.061-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_plan", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:09.061-04:00" + }, + { + "id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "created_at": "2026-05-22T08:45:12.238-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3deda11f-e92d-41e1-a0ba-60a78cf5e6ff", + "direction": "outgoing", + "index": 112494, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.244-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "9ec6822b-fe7e-4254-8d2a-c9264eb65164", + "direction": "outgoing", + "index": 112495, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.270-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "4631f4f9-b14b-449c-a08e-cda9e8781a7d", + "direction": "outgoing", + "index": 112496, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.287-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/_search", + "verb": "post" + }, + { + "id": "b375baa9-6eeb-427d-ac7f-52b742f0628b", + "direction": "outgoing", + "index": 112497, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active", + "verb": "get" + }, + { + "id": "5de79165-71b5-4f3c-8eb9-f66cc41934f3", + "direction": "outgoing", + "index": 112498, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.320-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "f405fb8e-25cc-47ce-9078-1f36927eddf6", + "direction": "outgoing", + "index": 112499, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.334-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "0185e2d9-e55e-4496-855f-905f7c6e979c", + "direction": "outgoing", + "index": 112500, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "4e039d7f-936e-4f26-ba9f-194ff6593d04", + "direction": "outgoing", + "index": 112501, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "24669684-5a99-4c93-ae32-8d37d33af28d", + "direction": "outgoing", + "index": 112502, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.375-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "80506ec0-b68f-41d8-91d0-81842699a1b7", + "direction": "outgoing", + "index": 112503, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.387-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "f3154cdc-5320-4511-b3d1-61b6e980c4b4", + "direction": "outgoing", + "index": 112504, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "ec11b96d-57ed-4fa9-b24e-ea53512a088e", + "direction": "outgoing", + "index": 112505, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=20615d39-45a2-472c-80f7-54ef1fddcbd1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3c083324-3eaa-40e6-ad67-6c1824f54289", + "direction": "outgoing", + "index": 112506, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "975cd792-beff-471f-9325-31e2ceba3546", + "direction": "outgoing", + "index": 112507, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=proposed", + "verb": "get" + }, + { + "id": "85104ff4-ed75-4814-80db-e95b23cdeae3", + "direction": "outgoing", + "index": 112508, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=active", + "verb": "get" + }, + { + "id": "92f3acf5-cf39-4e62-9a15-85a0442d8f2f", + "direction": "outgoing", + "index": 112509, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=suspended", + "verb": "get" + }, + { + "id": "d3c501dd-a5f7-4629-8ca7-d861aff0b53d", + "direction": "outgoing", + "index": 112510, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=inactive", + "verb": "get" + }, + { + "id": "c67992a3-fe9f-470a-bd2a-b79f6d4427d3", + "direction": "outgoing", + "index": 112511, + "result_id": "9af364f7-0b01-49ce-9c2f-19a281aad97b", + "status": 200, + "timestamp": "2026-05-22T08:45:12.499-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:12.238-04:00" + }, + { + "id": "017e979d-8541-4e37-868a-eb4fd63209f3", + "created_at": "2026-05-22T08:45:12.750-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0afe19ca-c2c2-4afe-8e4d-3f1dd602655a", + "direction": "outgoing", + "index": 112512, + "result_id": "017e979d-8541-4e37-868a-eb4fd63209f3", + "status": 400, + "timestamp": "2026-05-22T08:45:12.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003", + "verb": "get" + }, + { + "id": "48640e30-8270-4289-8829-053864071411", + "direction": "outgoing", + "index": 112513, + "result_id": "017e979d-8541-4e37-868a-eb4fd63209f3", + "status": 400, + "timestamp": "2026-05-22T08:45:12.769-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003\u0026status=proposed", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_role_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:12.750-04:00" + }, + { + "id": "adb0ea81-9e32-4158-8a38-a889bf990684", + "created_at": "2026-05-22T08:45:13.023-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6c40078a-694d-42a5-87c9-ceb32d69249d", + "direction": "outgoing", + "index": 112514, + "result_id": "adb0ea81-9e32-4158-8a38-a889bf990684", + "status": 400, + "timestamp": "2026-05-22T08:45:13.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003", + "verb": "get" + }, + { + "id": "8fcaeb98-8324-4529-970e-3e820949d295", + "direction": "outgoing", + "index": 112515, + "result_id": "adb0ea81-9e32-4158-8a38-a889bf990684", + "status": 400, + "timestamp": "2026-05-22T08:45:13.049-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003\u0026status=proposed", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_patient_role_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:13.023-04:00" + }, + { + "id": "742d0512-720b-4cd8-80b9-5786992190ea", + "created_at": "2026-05-22T08:45:13.195-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f163a2e5-55e9-4e41-9dbe-592704af5831", + "direction": "outgoing", + "index": 112516, + "result_id": "742d0512-720b-4cd8-80b9-5786992190ea", + "status": 200, + "timestamp": "2026-05-22T08:45:13.199-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:13.195-04:00" + }, + { + "id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "created_at": "2026-05-22T08:45:16.298-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b68d9c2a-25ea-4de4-a8ff-633c9b33437a", + "direction": "outgoing", + "index": 112517, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "8ba1e96c-a70b-4c0f-b95a-b4e107af35fa", + "direction": "outgoing", + "index": 112518, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.323-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "9bc8d04d-11e6-4cb3-b7df-e33bd47cc27b", + "direction": "outgoing", + "index": 112519, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "81e2141c-468e-457c-be79-971086eb9763", + "direction": "outgoing", + "index": 112520, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "da52df1e-3b0d-4f00-a730-e9c8cf6d4fd2", + "direction": "outgoing", + "index": 112521, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "119b1d7c-8309-4b57-b979-edfcfd450ce8", + "direction": "outgoing", + "index": 112522, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "0bf78ae8-749b-4689-9d39-0e0cdf5434ef", + "direction": "outgoing", + "index": 112523, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "4240a006-ec53-40b0-bdb4-c215b33fcd73", + "direction": "outgoing", + "index": 112524, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "ca7be4d8-d442-4259-9027-e1a862f7ec88", + "direction": "outgoing", + "index": 112525, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.437-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "a27a812f-37b0-46df-a562-b752cc7508dc", + "direction": "outgoing", + "index": 112526, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=413a0c3a-8acd-4e26-86c0-7ebec647522e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0881cbc3-12ca-4727-8885-99fdbaa34e2d", + "direction": "outgoing", + "index": 112527, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.465-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "e474d741-7e9f-43fb-9cab-842f9d2734ec", + "direction": "outgoing", + "index": 112528, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=proposed", + "verb": "get" + }, + { + "id": "224b438e-58f3-4957-b371-b742e00cff17", + "direction": "outgoing", + "index": 112529, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.495-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=active", + "verb": "get" + }, + { + "id": "1bd7437c-65d4-40c6-846c-e7ab612bc070", + "direction": "outgoing", + "index": 112530, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=suspended", + "verb": "get" + }, + { + "id": "f34a907e-18cb-4812-95ec-6cb2010c1d21", + "direction": "outgoing", + "index": 112531, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=inactive", + "verb": "get" + }, + { + "id": "f80a4241-0ac1-4345-90d1-91d0f10b9e76", + "direction": "outgoing", + "index": 112532, + "result_id": "d7c0cc9b-f85c-472a-b449-e0b62b13a576", + "status": 200, + "timestamp": "2026-05-22T08:45:16.536-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:16.298-04:00" + }, + { + "id": "8d908621-ad58-4613-b549-bb1a98f655f3", + "created_at": "2026-05-22T08:45:21.252-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#133932002)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:21.252-04:00" + }, + { + "id": "8cffe748-8c1c-4ea4-98bf-d70f43d1fbeb", + "created_at": "2026-05-22T08:45:21.449-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:21.449-04:00" + }, + { + "id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "created_at": "2026-05-22T08:45:36.915-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dff7dfa2-f0fc-4681-93ba-a0838f32f969", + "direction": "outgoing", + "index": 112533, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:36.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "0f04d837-d913-4b9b-a202-3b1ed60216ee", + "direction": "outgoing", + "index": 112534, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:36.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "af0508b0-5603-40c3-9487-b201aec22200", + "direction": "outgoing", + "index": 112535, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:36.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "62366d3e-4f81-4ab1-9d66-7e095ce3303c", + "direction": "outgoing", + "index": 112536, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:36.982-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "c1ea8b3e-bdb5-48b8-9669-52cf94625d09", + "direction": "outgoing", + "index": 112537, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:36.999-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "4693cf3c-f0c6-4b9b-8bb4-3792f45534fc", + "direction": "outgoing", + "index": 112538, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + }, + { + "id": "67ff14b6-be1c-42e8-bd41-b13267b96a9c", + "direction": "outgoing", + "index": 112539, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "781bd9bb-d1db-429e-9ca8-eab989aaddec", + "direction": "outgoing", + "index": 112540, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "b73debce-c030-4935-b479-dfcfbe5fe59b", + "direction": "outgoing", + "index": 112541, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "6af5ceb7-4849-4b53-a049-aa3d1cb890ae", + "direction": "outgoing", + "index": 112542, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.078-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "20284fc8-bfed-43e6-a578-b7668d3a165d", + "direction": "outgoing", + "index": 112543, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "b5c3a310-a1f0-490f-bebb-87b714b17f95", + "direction": "outgoing", + "index": 112544, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.117-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "c48c36a2-3f21-4a18-ba59-b69cce3162e4", + "direction": "outgoing", + "index": 112545, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "741f2b43-0bac-4423-a2c9-c6c7b5996f56", + "direction": "outgoing", + "index": 112546, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "5e98ff59-5495-4465-9e3f-d384d262216d", + "direction": "outgoing", + "index": 112547, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "c8c379fc-5bbb-4da7-9e77-8d95d246bc19", + "direction": "outgoing", + "index": 112548, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "0ffee13f-7bdd-4977-9048-70f0977f4bd9", + "direction": "outgoing", + "index": 112549, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.202-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "04bc874e-ae7f-4c8d-a92e-17b0b1e0d731", + "direction": "outgoing", + "index": 112550, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "cf39fe02-dbfc-42f5-9a2c-2b052d9ebebb", + "direction": "outgoing", + "index": 112551, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "4d987c18-4366-4f74-9aad-63fc7351e6bb", + "direction": "outgoing", + "index": 112552, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.244-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "2f22d913-e0b0-4312-b1a6-4a4db80b8131", + "direction": "outgoing", + "index": 112553, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "8cabe57b-bc5c-4bfa-a748-f3508ffdadf4", + "direction": "outgoing", + "index": 112554, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "a58160e9-b7b9-4e59-8831-f58d4156cd3d", + "direction": "outgoing", + "index": 112555, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "73cc7527-ff07-4d68-9431-ffbaf0588b34", + "direction": "outgoing", + "index": 112556, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.309-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "b83e2b0f-f107-471c-8f19-fe751c027d1f", + "direction": "outgoing", + "index": 112557, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "673e21a5-baf0-4b42-bdbe-0effc093bb12", + "direction": "outgoing", + "index": 112558, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.340-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "fed4aca3-eb1a-44b8-8aa4-fa3ad75cd2dc", + "direction": "outgoing", + "index": 112559, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.353-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "b59895b0-a7f1-4c7f-b529-0f4414327fc3", + "direction": "outgoing", + "index": 112560, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "0e85c5dd-d29d-4daa-94d9-f23069244b84", + "direction": "outgoing", + "index": 112561, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "2fbc0b02-5ab1-4cce-82f4-7a8dc1e4c5e9", + "direction": "outgoing", + "index": 112562, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "de4654a0-c0c3-4a05-a58a-16610862d28b", + "direction": "outgoing", + "index": 112563, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "66fe9d4e-531c-4677-ace2-de3a95a173b1", + "direction": "outgoing", + "index": 112564, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.430-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "1a50f8a4-bf63-4605-86a5-508b615892a5", + "direction": "outgoing", + "index": 112565, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "4ba6fb7d-1ad5-4cb7-9193-ebc23523ed3d", + "direction": "outgoing", + "index": 112566, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "7a3ad107-212e-448d-9a84-aeb710e77836", + "direction": "outgoing", + "index": 112567, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "a53f8c6a-67d1-48a1-8596-c2f111e153dd", + "direction": "outgoing", + "index": 112568, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.486-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "5ea1f538-92f6-4fac-9936-27d7299420ab", + "direction": "outgoing", + "index": 112569, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.500-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "1972d989-be7e-4cb2-8833-567f78ae6620", + "direction": "outgoing", + "index": 112570, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "ab7fd3ca-60e7-47c0-aa39-737ecfb7f95c", + "direction": "outgoing", + "index": 112571, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.531-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "0753950b-5b44-4796-8199-38d7fd58b17b", + "direction": "outgoing", + "index": 112572, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.546-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "699496e1-130d-48d1-ba48-b36c4376b72e", + "direction": "outgoing", + "index": 112573, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.564-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "cd001b35-8065-46dc-9d43-4ae6b9ac91bc", + "direction": "outgoing", + "index": 112574, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.577-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "92655514-c298-4027-9a5d-040efc01b336", + "direction": "outgoing", + "index": 112575, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "af6bdc30-3dbc-44b4-bb69-f7cfcc49fd52", + "direction": "outgoing", + "index": 112576, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "a1388c2a-5ff4-496c-9a77-8a2527b5b14c", + "direction": "outgoing", + "index": 112577, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "e74cd8c1-def1-4c43-a53d-8c3a9404437b", + "direction": "outgoing", + "index": 112578, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "a424835f-c7f9-4cd6-954f-8e12a38b59f8", + "direction": "outgoing", + "index": 112579, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.646-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "6dacb54c-25d1-4122-b3f5-1824498cd5ce", + "direction": "outgoing", + "index": 112580, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "c45ae50c-6ab1-412d-b08d-a1b9306ec9c9", + "direction": "outgoing", + "index": 112581, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "5e42929b-42db-4957-97da-a8debb44a280", + "direction": "outgoing", + "index": 112582, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "4c88a50b-91af-47a7-a35f-ef7a1540f6f2", + "direction": "outgoing", + "index": 112583, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "0f3c24fc-03f6-4be8-bdc0-3ef35139eea3", + "direction": "outgoing", + "index": 112584, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.712-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "102594a9-bac1-4c17-a664-b781827eff26", + "direction": "outgoing", + "index": 112585, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "3aeb00b1-8c1d-402e-b183-217417766664", + "direction": "outgoing", + "index": 112586, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "ce96bb36-66fb-4bdb-882d-3851955a7dc7", + "direction": "outgoing", + "index": 112587, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "d9bacbe6-9269-4f87-9f47-d784d543425d", + "direction": "outgoing", + "index": 112588, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "cc3cc29a-8050-4a3a-871e-bb645aa1f802", + "direction": "outgoing", + "index": 112589, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "456924a6-61a2-47f1-8f5a-6a5000931799", + "direction": "outgoing", + "index": 112590, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "54fe17e7-669a-4569-82ce-34b637da80ab", + "direction": "outgoing", + "index": 112591, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "e994ca57-9228-4a0c-b85f-9b4419e27c78", + "direction": "outgoing", + "index": 112592, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "2dc53f6b-e671-468f-908d-d3d3381bd0d6", + "direction": "outgoing", + "index": 112593, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.854-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "364a6f90-eec3-438c-ac67-59926652ccf4", + "direction": "outgoing", + "index": 112594, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "347d3e2b-d186-4939-b69b-e8138490ca90", + "direction": "outgoing", + "index": 112595, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "de27a55b-8779-4a89-8e20-7d9e0dd7fcc8", + "direction": "outgoing", + "index": 112596, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.895-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "9b51e81d-1b58-4ec2-8527-169632160d53", + "direction": "outgoing", + "index": 112597, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "aca652c1-b1db-42dc-92bf-9e6f32e61299", + "direction": "outgoing", + "index": 112598, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "757fb411-7e21-4dee-aa12-2ae8f4cb10c8", + "direction": "outgoing", + "index": 112599, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "f53e74ba-90c0-4cc9-bc9d-6ac97c96a861", + "direction": "outgoing", + "index": 112600, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "29ad76c6-762c-4aaa-a863-9f47966bf3e1", + "direction": "outgoing", + "index": 112601, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.966-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "76ee7a91-3adf-44ee-a02f-ecf20c3f08ca", + "direction": "outgoing", + "index": 112602, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "b1bf573b-1b01-4d85-92b7-5b839e95f6a2", + "direction": "outgoing", + "index": 112603, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:37.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "5e23f39f-ee3d-4694-994e-94cfb41fd22b", + "direction": "outgoing", + "index": 112604, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.004-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "1f04ab58-0f57-4a1a-ab8d-13a4ef3facf2", + "direction": "outgoing", + "index": 112605, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.018-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "21162fda-d146-4f36-a3f7-5bb9cc748ae6", + "direction": "outgoing", + "index": 112606, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.031-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "0bf2f299-0833-4098-a330-861ddbadb466", + "direction": "outgoing", + "index": 112607, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.046-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "f17003f5-e70b-4c19-8c08-0c4f4a18ac26", + "direction": "outgoing", + "index": 112608, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "1770d267-269f-40d8-9f7d-7d3183393f14", + "direction": "outgoing", + "index": 112609, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.070-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "78f2244c-9a67-44db-b334-4700cf6fc9cd", + "direction": "outgoing", + "index": 112610, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "d959fb3d-17d2-47d5-b6e9-763f3b918677", + "direction": "outgoing", + "index": 112611, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "c879dfe2-8adf-423d-8a95-8ac8de11d54c", + "direction": "outgoing", + "index": 112612, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.110-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "4368223b-a65d-46d5-9ea3-43fab2730dcc", + "direction": "outgoing", + "index": 112613, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "814858ba-b285-49a3-9eee-cba128155fb4", + "direction": "outgoing", + "index": 112614, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.135-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "8c270010-d80c-406e-9c89-f11e727fdb88", + "direction": "outgoing", + "index": 112615, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "8b6ea007-aa6e-4eaa-a68e-04450f1cb187", + "direction": "outgoing", + "index": 112616, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "2afa74c8-33cc-4d75-a925-9e6910d93032", + "direction": "outgoing", + "index": 112617, + "result_id": "f8cb080b-8d20-4b61-b865-fa771c0f8235", + "status": 200, + "timestamp": "2026-05-22T08:45:38.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team-us_core_v501_care_team_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:36.915-04:00" + }, + { + "id": "2d26cf6e-ade4-44b5-bfac-81073fa3613b", + "created_at": "2026-05-22T08:45:38.184-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_care_team", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:38.184-04:00" + }, + { + "id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "created_at": "2026-05-22T08:45:41.657-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1528e2ed-bc2f-4fa0-afbd-50001e2f9f3d", + "direction": "outgoing", + "index": 112618, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85", + "verb": "get" + }, + { + "id": "4b2cac59-dea2-4d3e-97a8-5235e041c7a6", + "direction": "outgoing", + "index": 112619, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5e6d586-9bc7-4160-844e-905c4561df21\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e61f7b87-70e9-4872-bb0b-aadf9a1fc4a9", + "direction": "outgoing", + "index": 112620, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "cf9f5184-5801-480e-ab1c-58ed70994fa6", + "direction": "outgoing", + "index": 112621, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5e6d586-9bc7-4160-844e-905c4561df21\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7df1ccad-3830-4a1c-89aa-08e6dc5a30ee", + "direction": "outgoing", + "index": 112622, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=Patient/85", + "verb": "get" + }, + { + "id": "8907ad33-9154-4390-8b70-fe2a240f9520", + "direction": "outgoing", + "index": 112623, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.718-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=79d333a4-a665-4f31-a5cf-0328169b1f78\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2ab8066d-8310-4f7a-8fde-2f418a56c727", + "direction": "outgoing", + "index": 112624, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355", + "verb": "get" + }, + { + "id": "f63a8b16-1978-4fe0-b122-26706edae93e", + "direction": "outgoing", + "index": 112625, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3a317610-8101-439c-b22e-302484888533", + "direction": "outgoing", + "index": 112626, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ed7984f8-876c-4b5d-aed2-997c978ba875", + "direction": "outgoing", + "index": 112627, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.764-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f1db0d2-2408-4ae3-8ba8-629e891485b7", + "direction": "outgoing", + "index": 112628, + "result_id": "4cc5974d-8021-4eb1-a3e8-c0710340fb45", + "status": 200, + "timestamp": "2026-05-22T08:45:41.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:41.657-04:00" + }, + { + "id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "created_at": "2026-05-22T08:45:43.027-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ac148a47-af8c-48da-b8e3-95ff320a57e4", + "direction": "outgoing", + "index": 112629, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7a7c2d3e-2d89-4d23-91cd-ff75f35b230b", + "direction": "outgoing", + "index": 112630, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.054-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a30e19e1-f11c-46f5-b433-befe70a75afc", + "direction": "outgoing", + "index": 112631, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.071-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2524c611-0f2e-45e6-896e-97ee6e042685\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "96b10ca0-bd83-40af-a35e-0f83c17bf3a0", + "direction": "outgoing", + "index": 112632, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.084-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "effcd7be-a0f6-439f-93e6-67a17b0273b8", + "direction": "outgoing", + "index": 112633, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c7d77863-e2e0-4e3e-98be-eca3c420a129\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "591d6d0a-41e8-4d4b-b083-d28e0e946a48", + "direction": "outgoing", + "index": 112634, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "cbd73da7-a7d5-4bbe-9dac-4f4d6972d8cf", + "direction": "outgoing", + "index": 112635, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.122-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5bd415bf-ed49-4160-8f0d-dd094098bf38", + "direction": "outgoing", + "index": 112636, + "result_id": "9cfd580d-b643-445d-b297-9a4c2108df84", + "status": 200, + "timestamp": "2026-05-22T08:45:43.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_abatement_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:43.027-04:00" + }, + { + "id": "b3730611-cbd6-44f3-a624-dc41db2f67c2", + "created_at": "2026-05-22T08:45:43.166-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `asserted-date`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_asserted_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:43.166-04:00" + }, + { + "id": "e1271da4-089e-4c50-b6d4-ab509d607b33", + "created_at": "2026-05-22T08:45:43.570-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a3a3d9ea-6b4c-4577-8b59-d78e9b956a69", + "direction": "outgoing", + "index": 112637, + "result_id": "e1271da4-089e-4c50-b6d4-ab509d607b33", + "status": 200, + "timestamp": "2026-05-22T08:45:43.576-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "48ce6516-0a9c-4170-bd17-2963647e3525", + "direction": "outgoing", + "index": 112638, + "result_id": "e1271da4-089e-4c50-b6d4-ab509d607b33", + "status": 200, + "timestamp": "2026-05-22T08:45:43.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "992c9e60-9701-4007-98ac-8741e2c77478", + "direction": "outgoing", + "index": 112639, + "result_id": "e1271da4-089e-4c50-b6d4-ab509d607b33", + "status": 200, + "timestamp": "2026-05-22T08:45:43.603-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:43.570-04:00" + }, + { + "id": "b431dd06-a966-46c3-9995-d5d0973f2226", + "created_at": "2026-05-22T08:45:44.022-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0600efde-b86d-483c-bb32-4de101a91897", + "direction": "outgoing", + "index": 112640, + "result_id": "b431dd06-a966-46c3-9995-d5d0973f2226", + "status": 200, + "timestamp": "2026-05-22T08:45:44.028-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85", + "verb": "get" + }, + { + "id": "bf00f575-2c6a-4622-9f47-7e1c29564c80", + "direction": "outgoing", + "index": 112641, + "result_id": "b431dd06-a966-46c3-9995-d5d0973f2226", + "status": 200, + "timestamp": "2026-05-22T08:45:44.049-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85", + "verb": "get" + }, + { + "id": "3032def5-c774-403f-ae95-246f965b8b89", + "direction": "outgoing", + "index": 112642, + "result_id": "b431dd06-a966-46c3-9995-d5d0973f2226", + "status": 200, + "timestamp": "2026-05-22T08:45:44.061-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_category_encounter_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:44.022-04:00" + }, + { + "id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "created_at": "2026-05-22T08:45:45.736-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e0a7a8e5-4d7a-4ce7-84e5-3af26c438d9a", + "direction": "outgoing", + "index": 112643, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "3e0804b3-5b54-45f7-92a5-a064a584b91c", + "direction": "outgoing", + "index": 112644, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f6f0847c-f92b-416d-baa6-ff5e389bf96e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e317c0e0-3992-4031-adae-41563f8a5b2b", + "direction": "outgoing", + "index": 112645, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "af1cf77d-dedd-46b8-83ad-e893c55ece08", + "direction": "outgoing", + "index": 112646, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6c21307-e0ab-4d36-8de9-18b8cba97e4b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a85b8406-728a-4570-9770-3ccd83155674", + "direction": "outgoing", + "index": 112647, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355", + "verb": "get" + }, + { + "id": "c2b3a170-6e83-4004-8c0d-8c098d0b4979", + "direction": "outgoing", + "index": 112648, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.810-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=625cf7bb-b68a-48c3-ae2c-010d41e0f113\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6f30fc7d-b4c0-4673-ad73-8e685f91cf43", + "direction": "outgoing", + "index": 112649, + "result_id": "4b9dd3ee-2fb7-42ac-93cd-2623b978f995", + "status": 200, + "timestamp": "2026-05-22T08:45:45.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=625cf7bb-b68a-48c3-ae2c-010d41e0f113\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:45.736-04:00" + }, + { + "id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "created_at": "2026-05-22T08:45:48.175-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d6948317-039b-478d-89d8-c69d5208543f", + "direction": "outgoing", + "index": 112650, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.180-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00", + "verb": "get" + }, + { + "id": "6c8c65c7-8263-4e06-89c5-0af7c714f587", + "direction": "outgoing", + "index": 112651, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00", + "verb": "get" + }, + { + "id": "e528c538-722f-4554-a81d-83748d09f0fb", + "direction": "outgoing", + "index": 112652, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.255-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e72d207d-d6ae-4a4a-a2eb-91aa3d81f102\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7c8262c6-6054-4b73-8a15-54c58226a14b", + "direction": "outgoing", + "index": 112653, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.269-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00", + "verb": "get" + }, + { + "id": "cc509742-9b64-49a1-90d9-2cd8187fd7cd", + "direction": "outgoing", + "index": 112654, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.280-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1876b6aa-1218-41ac-8a86-996237f25b48\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "251864d2-342b-43b4-aaed-6b25ce2f14b5", + "direction": "outgoing", + "index": 112655, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00", + "verb": "get" + }, + { + "id": "2859da4d-f9f4-4770-a629-607a3c798d22", + "direction": "outgoing", + "index": 112656, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00", + "verb": "get" + }, + { + "id": "ab729c2c-1764-4f59-ae85-ef68b16265c0", + "direction": "outgoing", + "index": 112657, + "result_id": "9ffbd3ed-bfc9-4149-b69f-f37474d0320c", + "status": 200, + "timestamp": "2026-05-22T08:45:48.311-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_recorded_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:48.175-04:00" + }, + { + "id": "42e58911-96e7-4763-aa0c-362820bcf413", + "created_at": "2026-05-22T08:45:50.562-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "640ff328-9f06-4d00-a792-39e11085b47d", + "direction": "outgoing", + "index": 112658, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.569-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "66fbc7d5-a97f-434d-b696-6d50c979cd52", + "direction": "outgoing", + "index": 112659, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b10ca0c1-bc2a-43a6-8e10-7aef57e9daaf", + "direction": "outgoing", + "index": 112660, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0e0572d2-3d3d-4c3b-881d-41cfb9d5e12d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1afa8f1d-509f-4b70-bfe1-a46bb58724dc", + "direction": "outgoing", + "index": 112661, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.623-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3c8ac4bd-c235-4a76-85d2-6f82f2bf71af", + "direction": "outgoing", + "index": 112662, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.636-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=731e9e3e-b12b-457c-abed-e6b41a66e273\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63be1915-cc4d-4cd3-ab0c-f8084096a87b", + "direction": "outgoing", + "index": 112663, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8ea0f926-e7ed-4767-bbc2-6909e5ff6667", + "direction": "outgoing", + "index": 112664, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "02f535c5-9677-4a1e-93d6-088d2a176b00", + "direction": "outgoing", + "index": 112665, + "result_id": "42e58911-96e7-4763-aa0c-362820bcf413", + "status": 200, + "timestamp": "2026-05-22T08:45:50.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_onset_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:50.562-04:00" + }, + { + "id": "eead1397-09b2-43fa-b788-7726016d0690", + "created_at": "2026-05-22T08:45:52.511-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "964358cb-44e3-4751-a819-456af1d78636", + "direction": "outgoing", + "index": 112666, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85", + "verb": "get" + }, + { + "id": "c6f30fa4-18a6-4256-9548-0232ac2374b6", + "direction": "outgoing", + "index": 112667, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.540-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=917de9f2-0846-43c0-88f8-c400c6b92577\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8c145bae-af09-46a1-b19a-aa42a01cb90b", + "direction": "outgoing", + "index": 112668, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85", + "verb": "get" + }, + { + "id": "23f67e70-dbfe-4383-a65a-7839d76e7d47", + "direction": "outgoing", + "index": 112669, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.566-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b25f44ba-e038-4367-ad06-7505d8bea255\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "afa431ef-5ae8-468b-b66a-655728650168", + "direction": "outgoing", + "index": 112670, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "3d557e5d-692b-4875-b609-6010d91dbc78", + "direction": "outgoing", + "index": 112671, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.594-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=117662a7-0152-4f96-b889-f712f651107f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6839b364-3531-4512-bd8d-5e74e91e680c", + "direction": "outgoing", + "index": 112672, + "result_id": "eead1397-09b2-43fa-b788-7726016d0690", + "status": 200, + "timestamp": "2026-05-22T08:45:52.609-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=117662a7-0152-4f96-b889-f712f651107f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_patient_clinical_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:52.511-04:00" + }, + { + "id": "28161fff-7359-45ba-b562-fae53e4ef1fc", + "created_at": "2026-05-22T08:45:52.744-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "961523ec-5009-499a-b2fb-c34cbcc838af", + "direction": "outgoing", + "index": 112673, + "result_id": "28161fff-7359-45ba-b562-fae53e4ef1fc", + "status": 200, + "timestamp": "2026-05-22T08:45:52.746-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:52.744-04:00" + }, + { + "id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "created_at": "2026-05-22T08:45:55.160-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "be16587f-b826-4deb-9a16-632c9b382da0", + "direction": "outgoing", + "index": 112674, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.164-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "13660622-f52d-45f6-b22e-4be6d530b578", + "direction": "outgoing", + "index": 112675, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=07df0518-42f6-4588-ad06-a02689e3ffc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46bbef0d-a377-481e-aa63-3c33bbf76a24", + "direction": "outgoing", + "index": 112676, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "29e9f005-676c-495e-bf17-93d0b4b5f4af", + "direction": "outgoing", + "index": 112677, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "381daa3a-b5b2-4bbe-9384-1a5e1827f4e8", + "direction": "outgoing", + "index": 112678, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.226-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92a72619-3c35-493d-a573-04a9f3b911de", + "direction": "outgoing", + "index": 112679, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b2a69ca0-d54b-4a7c-b74e-d58ac4074e20", + "direction": "outgoing", + "index": 112680, + "result_id": "c4482799-9d54-4815-830a-a0570bfaf3d4", + "status": 200, + "timestamp": "2026-05-22T08:45:55.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:45:55.160-04:00" + }, + { + "id": "05d8ad4d-4d09-4c11-aec3-f9112d245788", + "created_at": "2026-05-22T08:46:00.690-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.code: None of the codings provided are in the value set 'US Core Condition Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-code|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#15777000)", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:00.690-04:00" + }, + { + "id": "e0c38594-0500-493e-b3bc-c08c3c8f68b6", + "created_at": "2026-05-22T08:46:00.825-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:00.825-04:00" + }, + { + "id": "1bb2430a-b2a5-41fa-8953-493a19439a94", + "created_at": "2026-05-22T08:46:01.920-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dfda1fe1-2d2e-41e6-832c-2b66b55b33ee", + "direction": "outgoing", + "index": 112681, + "result_id": "1bb2430a-b2a5-41fa-8953-493a19439a94", + "status": 200, + "timestamp": "2026-05-22T08:46:01.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis-us_core_v501_condition_encounter_diagnosis_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:01.920-04:00" + }, + { + "id": "d6c4c1d9-578c-4d4d-b471-89486c551142", + "created_at": "2026-05-22T08:46:01.939-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_encounter_diagnosis", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:01.939-04:00" + }, + { + "id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "created_at": "2026-05-22T08:46:05.200-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "286e6296-c480-4ab4-866c-7d1a5efbf713", + "direction": "outgoing", + "index": 112682, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85", + "verb": "get" + }, + { + "id": "894aa037-e5dc-4cbc-8fe6-48dc462580d0", + "direction": "outgoing", + "index": 112683, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.232-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5e6d586-9bc7-4160-844e-905c4561df21\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b2c49470-79db-4efc-b7e3-4017ac9f5c65", + "direction": "outgoing", + "index": 112684, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.248-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "e707c7ca-4dd7-49c1-a9d8-8799c79ec6ad", + "direction": "outgoing", + "index": 112685, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c5e6d586-9bc7-4160-844e-905c4561df21\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e831437-e833-4685-a285-fcc9d2e1ad43", + "direction": "outgoing", + "index": 112686, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355", + "verb": "get" + }, + { + "id": "2299b822-84bd-4fbe-8fa2-3d63303e1b20", + "direction": "outgoing", + "index": 112687, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.287-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "342f9290-92fa-4887-8d08-522cbed7dac5", + "direction": "outgoing", + "index": 112688, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5eff68c1-1447-4d6a-8f94-8585677fa9de", + "direction": "outgoing", + "index": 112689, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.315-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2f6c28f0-d6d9-4567-9384-91dd54b18d37", + "direction": "outgoing", + "index": 112690, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "e75f015a-3331-4e0f-87b9-cca48c9b486d", + "direction": "outgoing", + "index": 112691, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.343-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "17eee77a-0f0d-453a-98a6-4cb11ae69b3d", + "direction": "outgoing", + "index": 112692, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e0c9e3f8-1a19-4cd4-986d-230fb149d80d", + "direction": "outgoing", + "index": 112693, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f4fe9da-8e39-48a7-b393-a02db36df7de\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7ae9b98d-5bf3-43e0-9c9c-6e19fc542239", + "direction": "outgoing", + "index": 112694, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=Patient/355", + "verb": "get" + }, + { + "id": "566c0a86-c9a7-4a54-a76d-7ce00a52809d", + "direction": "outgoing", + "index": 112695, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f4c0d152-a872-44d4-af12-cff2f79c3ec1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "af84b292-bbf9-415e-9e2b-de184e430f2a", + "direction": "outgoing", + "index": 112696, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f4c0d152-a872-44d4-af12-cff2f79c3ec1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da9e7fe6-76ed-416b-be38-34258c4d12ee", + "direction": "outgoing", + "index": 112697, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f4c0d152-a872-44d4-af12-cff2f79c3ec1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f1f70080-617b-4f46-bd43-86808c92018b", + "direction": "outgoing", + "index": 112698, + "result_id": "becfceb5-19f1-4028-b649-63b78185f3a8", + "status": 200, + "timestamp": "2026-05-22T08:46:05.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:05.200-04:00" + }, + { + "id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "created_at": "2026-05-22T08:46:07.626-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0ad83fb0-b2c5-4b6b-b405-2b6ae1bbcec9", + "direction": "outgoing", + "index": 112699, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.632-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "66b7c5c3-d46b-486d-b09d-2ae2f56de5c7", + "direction": "outgoing", + "index": 112700, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.648-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "880aa882-7104-478b-b2ee-484986dc3f51", + "direction": "outgoing", + "index": 112701, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.661-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "48f21dbd-f7e8-4ff3-ab9c-71a9b6471a6d", + "direction": "outgoing", + "index": 112702, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.676-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bf1891ee-1f0d-474b-b67f-b81d154524e1", + "direction": "outgoing", + "index": 112703, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01d91605-4f37-4764-9948-02c3eaac0b6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1778de9-453e-4b6a-9aee-6219a86fd52e", + "direction": "outgoing", + "index": 112704, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0b9812d5-8efb-4f10-9579-5fe15196d02f", + "direction": "outgoing", + "index": 112705, + "result_id": "5a2e450d-424a-4ca3-8980-611098dbbc7f", + "status": 200, + "timestamp": "2026-05-22T08:46:07.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cdd8e9a6-9150-47e3-a9c1-d6ee7fd60ad0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_abatement_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:07.626-04:00" + }, + { + "id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "created_at": "2026-05-22T08:46:08.401-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "24c75d61-6476-4e18-adbc-b40ac53cd259", + "direction": "outgoing", + "index": 112706, + "result_id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "status": 200, + "timestamp": "2026-05-22T08:46:08.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355", + "verb": "get" + }, + { + "id": "2702de83-3dbe-48e2-9476-dd63ea608fe6", + "direction": "outgoing", + "index": 112707, + "result_id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "status": 200, + "timestamp": "2026-05-22T08:46:08.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bd214d8d-ce42-4d32-9c08-f5a57fbf53a4", + "direction": "outgoing", + "index": 112708, + "result_id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "status": 200, + "timestamp": "2026-05-22T08:46:08.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "83faa4e8-b9f4-46d6-9105-8dfacfea02a8", + "direction": "outgoing", + "index": 112709, + "result_id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "status": 200, + "timestamp": "2026-05-22T08:46:08.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b5eb8320-8d64-4d2f-930c-91eb6d494815", + "direction": "outgoing", + "index": 112710, + "result_id": "60f10aed-e51a-4df0-87e9-e5e74db8fa9f", + "status": 200, + "timestamp": "2026-05-22T08:46:08.469-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_asserted_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:08.401-04:00" + }, + { + "id": "edc672f3-90bc-42dc-a0ed-10fb0902cb2b", + "created_at": "2026-05-22T08:46:08.725-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a9598e48-1901-46f3-9a4d-268dba75c04b", + "direction": "outgoing", + "index": 112711, + "result_id": "edc672f3-90bc-42dc-a0ed-10fb0902cb2b", + "status": 200, + "timestamp": "2026-05-22T08:46:08.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355", + "verb": "get" + }, + { + "id": "1c2aee09-0feb-485c-8c38-78f9bee32887", + "direction": "outgoing", + "index": 112712, + "result_id": "edc672f3-90bc-42dc-a0ed-10fb0902cb2b", + "status": 200, + "timestamp": "2026-05-22T08:46:08.747-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:08.725-04:00" + }, + { + "id": "ee74d627-5a39-4226-916e-f1857cea8a2a", + "created_at": "2026-05-22T08:46:08.761-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `category`, `encounter`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_category_encounter_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:08.761-04:00" + }, + { + "id": "f4d4b327-e46d-47c1-a8ff-83cdd5bd7c6c", + "created_at": "2026-05-22T08:46:09.006-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9819ec84-7f7d-41fe-93bc-512d4c99e063", + "direction": "outgoing", + "index": 112713, + "result_id": "f4d4b327-e46d-47c1-a8ff-83cdd5bd7c6c", + "status": 200, + "timestamp": "2026-05-22T08:46:09.010-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355", + "verb": "get" + }, + { + "id": "041c03a8-a599-45af-90b1-457f3717fa6f", + "direction": "outgoing", + "index": 112714, + "result_id": "f4d4b327-e46d-47c1-a8ff-83cdd5bd7c6c", + "status": 200, + "timestamp": "2026-05-22T08:46:09.028-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:09.006-04:00" + }, + { + "id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "created_at": "2026-05-22T08:46:11.568-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b18fd0a5-8f83-4a1c-a182-0dc3a87cfbb6", + "direction": "outgoing", + "index": 112715, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00", + "verb": "get" + }, + { + "id": "6ec5ad34-1ebf-41a0-88f1-1a2f0ab0e582", + "direction": "outgoing", + "index": 112716, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00", + "verb": "get" + }, + { + "id": "576e2b74-4ae5-4e23-83a6-fd90228258ea", + "direction": "outgoing", + "index": 112717, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00", + "verb": "get" + }, + { + "id": "b4fa0116-3447-464d-a13a-4305c011dde2", + "direction": "outgoing", + "index": 112718, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00", + "verb": "get" + }, + { + "id": "14302639-a509-4aad-a184-ba75e5adecf5", + "direction": "outgoing", + "index": 112719, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.628-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=17d06393-a54a-4e3b-8710-61e3962ac8ae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9c707c6a-041c-4dee-8236-16c845d6bb3d", + "direction": "outgoing", + "index": 112720, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=17d06393-a54a-4e3b-8710-61e3962ac8ae\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "55bde18e-a533-4b83-b888-381dcf94a3ea", + "direction": "outgoing", + "index": 112721, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00", + "verb": "get" + }, + { + "id": "02586d0e-3c87-48eb-9e5f-ef72ffe27596", + "direction": "outgoing", + "index": 112722, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=522ebc2f-fc23-4731-92b9-ff63f5d10aea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4a367d5f-f794-472e-acc3-41344570158a", + "direction": "outgoing", + "index": 112723, + "result_id": "7ef1abd2-bd93-46f2-99e0-fd7c1f6933b7", + "status": 200, + "timestamp": "2026-05-22T08:46:11.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=522ebc2f-fc23-4731-92b9-ff63f5d10aea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_recorded_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:11.568-04:00" + }, + { + "id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "created_at": "2026-05-22T08:46:14.288-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a03dab9d-dcb2-46ae-914d-50a70bac0223", + "direction": "outgoing", + "index": 112724, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.295-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e26640d7-5633-43a2-bb11-a579d4e41408", + "direction": "outgoing", + "index": 112725, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bb8086b3-7d3d-4bf5-a368-50dcde1bace4", + "direction": "outgoing", + "index": 112726, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8756695b-4b5e-4e3b-8208-14572b327c61", + "direction": "outgoing", + "index": 112727, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.340-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cb091dc8-3d0f-442a-a439-c1f646d428db", + "direction": "outgoing", + "index": 112728, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=84806891-cfa0-4480-8d94-35005436fd27\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "64fc41f8-50b5-48f5-aa4f-ac241f986379", + "direction": "outgoing", + "index": 112729, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=84806891-cfa0-4480-8d94-35005436fd27\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "25581e62-6a1f-4e15-aa19-e4721bd96ec8", + "direction": "outgoing", + "index": 112730, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1619a0e9-d11a-4a87-9d81-fd987f082618", + "direction": "outgoing", + "index": 112731, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.393-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=24c44216-6bcf-4268-8df9-98f775eec04a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d789e025-f68a-4c6c-ad6e-ce1cf12c8d7d", + "direction": "outgoing", + "index": 112732, + "result_id": "ac6e6a60-f10c-4bad-a918-3651510172fb", + "status": 200, + "timestamp": "2026-05-22T08:46:14.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=24c44216-6bcf-4268-8df9-98f775eec04a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_onset_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:14.288-04:00" + }, + { + "id": "c495e210-b419-4783-856d-b62f87df4875", + "created_at": "2026-05-22T08:46:15.893-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2a95069d-7098-4a12-81dd-7ab39258843c", + "direction": "outgoing", + "index": 112733, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "a3abe33a-4f41-482c-aba6-ec4df89e2956", + "direction": "outgoing", + "index": 112734, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.914-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=117662a7-0152-4f96-b889-f712f651107f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b009c7c9-ede0-4bac-ae46-cedbcf832fa7", + "direction": "outgoing", + "index": 112735, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.926-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=117662a7-0152-4f96-b889-f712f651107f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cfe001d5-f0a5-4cd8-add3-957d4e75d0ad", + "direction": "outgoing", + "index": 112736, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.937-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355", + "verb": "get" + }, + { + "id": "dc2426b3-2c06-4a2c-8b41-38276b4039c3", + "direction": "outgoing", + "index": 112737, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bba76d82-c0fb-41d1-847c-18218248bfbd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f1ef34a-b995-4ac1-9327-aa99d7efcf38", + "direction": "outgoing", + "index": 112738, + "result_id": "c495e210-b419-4783-856d-b62f87df4875", + "status": 200, + "timestamp": "2026-05-22T08:46:15.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bba76d82-c0fb-41d1-847c-18218248bfbd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_patient_clinical_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:15.893-04:00" + }, + { + "id": "cd62b3a0-0681-4bef-a17c-300a304e4ae8", + "created_at": "2026-05-22T08:46:16.090-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "10e6e055-dab4-44b6-8657-2116ce768858", + "direction": "outgoing", + "index": 112739, + "result_id": "cd62b3a0-0681-4bef-a17c-300a304e4ae8", + "status": 200, + "timestamp": "2026-05-22T08:46:16.092-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:16.090-04:00" + }, + { + "id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "created_at": "2026-05-22T08:46:17.494-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5d9f2beb-6d53-4486-b54b-a329e0612120", + "direction": "outgoing", + "index": 112740, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.497-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "e7c9e781-94cd-450d-b858-be6f2d5e2505", + "direction": "outgoing", + "index": 112741, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.516-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=07df0518-42f6-4588-ad06-a02689e3ffc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7e150ad5-7e69-4af3-8d5f-219b92006cd9", + "direction": "outgoing", + "index": 112742, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.530-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "0394505c-3521-4131-84ed-0dd734c413fc", + "direction": "outgoing", + "index": 112743, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7ee7a7a4-b91b-4cae-b94b-5ed995a1a104", + "direction": "outgoing", + "index": 112744, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f92eb98c-e074-4286-a56c-c29ec6426ff1", + "direction": "outgoing", + "index": 112745, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.571-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b2c1879b-55b4-4822-87a1-37ebf246a0c4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da1c17c3-b8d1-4b62-bbd2-a90f8ef8c474", + "direction": "outgoing", + "index": 112746, + "result_id": "beb40222-33ec-414b-a0bc-8055911ee75d", + "status": 200, + "timestamp": "2026-05-22T08:46:17.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:17.494-04:00" + }, + { + "id": "ad6f4302-5430-44bb-a75a-a48ae786c8f3", + "created_at": "2026-05-22T08:46:18.490-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/condition-category|0.5.0", + "type": "info" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.category[0]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/condition-category#health-concern)", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:18.490-04:00" + }, + { + "id": "3e1b3c3b-dc38-439a-ae51-252996b58ea6", + "created_at": "2026-05-22T08:46:18.511-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:18.511-04:00" + }, + { + "id": "6141c9ba-67dd-47df-9fe6-941aead5f98c", + "created_at": "2026-05-22T08:46:18.517-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns-us_core_v501_condition_problems_health_concerns_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:18.517-04:00" + }, + { + "id": "a83dc2df-fcf3-44b1-8c2e-01cd1d8c8352", + "created_at": "2026-05-22T08:46:18.520-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_condition_problems_health_concerns", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:18.520-04:00" + }, + { + "id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "created_at": "2026-05-22T08:46:19.200-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "58d9e84a-9e62-4813-b00d-7ff47ca9e94a", + "direction": "outgoing", + "index": 112747, + "result_id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "status": 200, + "timestamp": "2026-05-22T08:46:19.205-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=85", + "verb": "get" + }, + { + "id": "609422c5-1bd1-4bdf-be27-801104816c02", + "direction": "outgoing", + "index": 112748, + "result_id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "status": 200, + "timestamp": "2026-05-22T08:46:19.227-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355", + "verb": "get" + }, + { + "id": "332f3fe7-fea5-4eab-aa8f-d08f817e56f6", + "direction": "outgoing", + "index": 112749, + "result_id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "status": 200, + "timestamp": "2026-05-22T08:46:19.244-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/_search", + "verb": "post" + }, + { + "id": "801e8c33-1365-438e-881a-c3ec8ba88dbb", + "direction": "outgoing", + "index": 112750, + "result_id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "status": 200, + "timestamp": "2026-05-22T08:46:19.260-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355", + "verb": "get" + }, + { + "id": "1fc0b478-3f7d-4085-986c-a96edf4e1082", + "direction": "outgoing", + "index": 112751, + "result_id": "393b6a76-7a79-4e5f-af46-291d80b29e62", + "status": 200, + "timestamp": "2026-05-22T08:46:19.272-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:19.200-04:00" + }, + { + "id": "10e340a6-0072-44cf-9ab5-f1bd1eff7f42", + "created_at": "2026-05-22T08:46:19.537-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2b768023-0cb0-4235-8452-8db2df50cbc1", + "direction": "outgoing", + "index": 112752, + "result_id": "10e340a6-0072-44cf-9ab5-f1bd1eff7f42", + "status": 200, + "timestamp": "2026-05-22T08:46:19.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001", + "verb": "get" + }, + { + "id": "c353e687-33fe-4bac-8652-2106ba772042", + "direction": "outgoing", + "index": 112753, + "result_id": "10e340a6-0072-44cf-9ab5-f1bd1eff7f42", + "status": 200, + "timestamp": "2026-05-22T08:46:19.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_patient_type_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:19.537-04:00" + }, + { + "id": "fb900ee2-2d3e-4353-8170-0e2cf0df9178", + "created_at": "2026-05-22T08:46:19.695-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b2500183-c17f-4f5c-890d-40696671a648", + "direction": "outgoing", + "index": 112754, + "result_id": "fb900ee2-2d3e-4353-8170-0e2cf0df9178", + "status": 200, + "timestamp": "2026-05-22T08:46:19.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:19.695-04:00" + }, + { + "id": "948077bd-5c46-46d0-8aee-e8c4b045a921", + "created_at": "2026-05-22T08:46:20.192-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b2fff337-b708-4d91-8b21-42f0a626b3e0", + "direction": "outgoing", + "index": 112755, + "result_id": "948077bd-5c46-46d0-8aee-e8c4b045a921", + "status": 200, + "timestamp": "2026-05-22T08:46:20.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ec0933d4-fd16-4eea-abb5-62fbaf37533e", + "direction": "outgoing", + "index": 112756, + "result_id": "948077bd-5c46-46d0-8aee-e8c4b045a921", + "status": 200, + "timestamp": "2026-05-22T08:46:20.216-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "75696f90-79b7-4343-b561-fb63d62f6286", + "direction": "outgoing", + "index": 112757, + "result_id": "948077bd-5c46-46d0-8aee-e8c4b045a921", + "status": 200, + "timestamp": "2026-05-22T08:46:20.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:20.192-04:00" + }, + { + "id": "27bb51ff-9c91-418a-ac6f-fd93df2aa1a9", + "created_at": "2026-05-22T08:46:20.474-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:20.474-04:00" + }, + { + "id": "564af20f-e52a-41b9-a64e-137aefd4f63c", + "created_at": "2026-05-22T08:46:20.483-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:20.483-04:00" + }, + { + "id": "66a1ae77-0fcf-468c-81df-ace49e175aa2", + "created_at": "2026-05-22T08:46:20.488-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device-us_core_v501_device_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:20.488-04:00" + }, + { + "id": "cb69b153-6ea1-479c-a4f7-600f33ef40a4", + "created_at": "2026-05-22T08:46:20.491-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_device", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:20.491-04:00" + }, + { + "id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "created_at": "2026-05-22T08:46:22.592-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f316c3cb-3fb5-44fb-8014-54c92de36ec9", + "direction": "outgoing", + "index": 112758, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.595-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "5049d3c5-d66d-498c-aa26-02cdcce68d30", + "direction": "outgoing", + "index": 112759, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.610-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "67e72387-afc0-48d5-bd97-e83e01217d9a", + "direction": "outgoing", + "index": 112760, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "679b7d58-0e13-4653-abe4-3a68e27355ff", + "direction": "outgoing", + "index": 112761, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.635-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "79991dd1-13c8-4046-a0f7-477b65b7aedb", + "direction": "outgoing", + "index": 112762, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.648-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "fc42b27a-15c0-49c0-b420-cab4b525d3f7", + "direction": "outgoing", + "index": 112763, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.662-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "a286faf2-d4c0-42d5-8761-7555413d348f", + "direction": "outgoing", + "index": 112764, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "d1c51544-fa40-44fd-9a32-a1b6930cae45", + "direction": "outgoing", + "index": 112765, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.700-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "ae2c1ceb-114c-4734-9955-0b3b11d5a95b", + "direction": "outgoing", + "index": 112766, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355", + "verb": "get" + }, + { + "id": "bfd8833a-3f10-4af2-a882-f5e46bec1bd8", + "direction": "outgoing", + "index": 112767, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.725-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=907", + "verb": "get" + }, + { + "id": "a0f2c322-9977-4e2a-a1e2-6e18cc0a01eb", + "direction": "outgoing", + "index": 112768, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.735-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=907", + "verb": "get" + }, + { + "id": "46f663dc-8b98-4e5b-8f8c-a14dc1fc121f", + "direction": "outgoing", + "index": 112769, + "result_id": "aee6fd15-0b1f-493f-9e90-99ddfe126786", + "status": 200, + "timestamp": "2026-05-22T08:46:22.745-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:22.592-04:00" + }, + { + "id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "created_at": "2026-05-22T08:46:24.761-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9ac00965-ac63-484f-a5f3-fa5356020bfc", + "direction": "outgoing", + "index": 112770, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "9a0b143a-648e-45ea-a632-e41b62faf087", + "direction": "outgoing", + "index": 112771, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.794-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=639a4fe1-51b3-4ffe-aded-0f6b96d16e14\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b0a1b17-71ca-4fdb-ad9e-e1f3fecd509e", + "direction": "outgoing", + "index": 112772, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.808-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "80828589-7a08-465b-a294-7b64ed8c162b", + "direction": "outgoing", + "index": 112773, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.821-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57ac7a5a-a8ec-49a1-95ac-867ab7f159c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8851bc9b-ea61-4afc-8cb5-112c33d5efea", + "direction": "outgoing", + "index": 112774, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57ac7a5a-a8ec-49a1-95ac-867ab7f159c9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f20fd12b-ffb2-4e4d-a346-ac1be18fe71b", + "direction": "outgoing", + "index": 112775, + "result_id": "d74a5595-fe84-4082-ac33-478fbfbc0c60", + "status": 200, + "timestamp": "2026-05-22T08:46:24.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:24.761-04:00" + }, + { + "id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "created_at": "2026-05-22T08:46:25.895-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fbe76421-5ac2-49bd-9c20-d6c7f4705b9f", + "direction": "outgoing", + "index": 112776, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6da2c3fa-a877-4d37-b65e-927c8b4cbc4a", + "direction": "outgoing", + "index": 112777, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "58892630-ce47-4f42-bbf1-0d88b6a89ce1", + "direction": "outgoing", + "index": 112778, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d66c744f-7fe1-4c89-91e9-c8ff94ee2bca", + "direction": "outgoing", + "index": 112779, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.960-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "75dbc4d2-89af-4721-865d-40490aa841df", + "direction": "outgoing", + "index": 112780, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.973-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "36c843ba-d199-46e6-ba0e-53b816342338", + "direction": "outgoing", + "index": 112781, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0b729a07-9cb2-4392-96aa-7697b4c539d5", + "direction": "outgoing", + "index": 112782, + "result_id": "5ff289db-0f46-4ba8-bdcb-13b6c0d92723", + "status": 200, + "timestamp": "2026-05-22T08:46:25.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:25.895-04:00" + }, + { + "id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "created_at": "2026-05-22T08:46:28.800-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "515bcbcb-4da5-4087-b05e-dff9528033a3", + "direction": "outgoing", + "index": 112783, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "8dba6e21-1333-4c24-a297-703af1448b23", + "direction": "outgoing", + "index": 112784, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73045b63-db9b-46cd-88cb-d46d61084f88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c43930e2-4fff-4dfa-869c-1b013eb445c9", + "direction": "outgoing", + "index": 112785, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "aa8cd786-b16b-4850-a511-3e460349e0eb", + "direction": "outgoing", + "index": 112786, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.854-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=215974a2-c633-450f-89bb-342756d96025\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "caf9472b-7951-4538-8019-cd2ebafce101", + "direction": "outgoing", + "index": 112787, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.866-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=215974a2-c633-450f-89bb-342756d96025\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5b92a58a-ac1b-43ec-934b-7b77d1ab1f5c", + "direction": "outgoing", + "index": 112788, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "9e54ca0d-2d7b-49b4-ab71-3c4dfcf751a5", + "direction": "outgoing", + "index": 112789, + "result_id": "f6f2ca41-f8af-4156-a54a-9bbcb29256d5", + "status": 200, + "timestamp": "2026-05-22T08:46:28.894-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4d0bfb48-1db2-4e21-b085-ddaa20cf11a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:28.800-04:00" + }, + { + "id": "9f2b2cb6-f547-468d-a182-3a90e81a02b2", + "created_at": "2026-05-22T08:46:29.352-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "841ba124-9e94-484e-a020-0c49b82dc54b", + "direction": "outgoing", + "index": 112790, + "result_id": "9f2b2cb6-f547-468d-a182-3a90e81a02b2", + "status": 200, + "timestamp": "2026-05-22T08:46:29.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "0791274d-8ee9-439a-8e84-beb3813ae3d7", + "direction": "outgoing", + "index": 112791, + "result_id": "9f2b2cb6-f547-468d-a182-3a90e81a02b2", + "status": 200, + "timestamp": "2026-05-22T08:46:29.377-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "f2dbda29-a173-4566-9e8e-3750b46a450a", + "direction": "outgoing", + "index": 112792, + "result_id": "9f2b2cb6-f547-468d-a182-3a90e81a02b2", + "status": 200, + "timestamp": "2026-05-22T08:46:29.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:29.352-04:00" + }, + { + "id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "created_at": "2026-05-22T08:46:30.408-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ad80c610-022e-44ba-9616-75003f8ee32f", + "direction": "outgoing", + "index": 112793, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.414-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c8adcee1-e67f-4d6e-9b5d-ccbd1bf4c9da", + "direction": "outgoing", + "index": 112794, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "016668b5-deda-4c47-a0e0-36124386a4dc", + "direction": "outgoing", + "index": 112795, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b7e1b682-3cce-40c9-b5a3-eb1435896e02", + "direction": "outgoing", + "index": 112796, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.463-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bd204484-1856-4398-83a7-db67eff691ce", + "direction": "outgoing", + "index": 112797, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.476-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "565ca0c0-f468-4a51-96bd-70d2dc903d7b", + "direction": "outgoing", + "index": 112798, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f81a18a2-5ffd-4786-9273-8b43e616de26", + "direction": "outgoing", + "index": 112799, + "result_id": "59c0ab8f-9c0e-4c6a-915e-0b05e1956f21", + "status": 200, + "timestamp": "2026-05-22T08:46:30.498-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:30.408-04:00" + }, + { + "id": "bfbe3ade-deac-4003-99ba-86f00291a7aa", + "created_at": "2026-05-22T08:46:30.641-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f24d2572-11f9-4bf4-83db-087636663949", + "direction": "outgoing", + "index": 112800, + "result_id": "bfbe3ade-deac-4003-99ba-86f00291a7aa", + "status": 200, + "timestamp": "2026-05-22T08:46:30.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:30.641-04:00" + }, + { + "id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "created_at": "2026-05-22T08:46:32.515-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "073c9be2-a6ae-43d2-b61c-eb5385e25a89", + "direction": "outgoing", + "index": 112801, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.518-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "d324d893-a838-4931-841a-a7b1d2d03659", + "direction": "outgoing", + "index": 112802, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.529-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "21ab4c03-be51-4f1f-9459-371d46a02d0f", + "direction": "outgoing", + "index": 112803, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "6f10cf3f-03c3-416d-b08b-0b0af645374d", + "direction": "outgoing", + "index": 112804, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "f93146db-360a-4016-b776-21f65195f18f", + "direction": "outgoing", + "index": 112805, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.563-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "2b5e6d6d-bfd0-4bc1-973a-c797f3965dfe", + "direction": "outgoing", + "index": 112806, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355", + "verb": "get" + }, + { + "id": "c935df8b-3a5a-41b2-b590-c37f3fd95286", + "direction": "outgoing", + "index": 112807, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=907", + "verb": "get" + }, + { + "id": "b09be033-4929-4bdf-b9f8-2e1758a2b113", + "direction": "outgoing", + "index": 112808, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.595-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=907", + "verb": "get" + }, + { + "id": "89667a6a-fe63-4406-980d-d005849b267c", + "direction": "outgoing", + "index": 112809, + "result_id": "9da62af7-753b-4524-9da8-7bb02e5c2edc", + "status": 200, + "timestamp": "2026-05-22T08:46:32.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:32.515-04:00" + }, + { + "id": "a5becf46-afa0-4774-9371-78130c12c008", + "created_at": "2026-05-22T08:46:38.157-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:38.157-04:00" + }, + { + "id": "1a1b29b5-a6c7-4e76-a244-2e7bec00164c", + "created_at": "2026-05-22T08:46:38.222-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:38.222-04:00" + }, + { + "id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "created_at": "2026-05-22T08:46:45.698-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e2341d28-0035-4df8-b0a2-44f9b978f9c1", + "direction": "outgoing", + "index": 112810, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.707-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082", + "verb": "get" + }, + { + "id": "b3950e5d-f864-4b21-942e-6ac247906d0f", + "direction": "outgoing", + "index": 112811, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.731-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "177c3f2c-6b09-467d-91c1-6a5be622c2d7", + "direction": "outgoing", + "index": 112812, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "3a970372-1d73-453e-8553-7922f2d3cd3e", + "direction": "outgoing", + "index": 112813, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "30b8181c-29b3-46a2-b356-e9e7d98dcfca", + "direction": "outgoing", + "index": 112814, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "0154b54d-052e-42d7-b8ff-6a4c876e1509", + "direction": "outgoing", + "index": 112815, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "892f15e3-40da-4b4c-8fc6-2e4bfa32e140", + "direction": "outgoing", + "index": 112816, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "d0ad0ae2-4a6d-4bf5-81ad-9f6dd55da1e2", + "direction": "outgoing", + "index": 112817, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "def0ad0f-f473-4e2b-9c84-6363e2ce019f", + "direction": "outgoing", + "index": 112818, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "127b52a6-7dd3-412a-9274-f6d6bc4be7c4", + "direction": "outgoing", + "index": 112819, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "495e45d7-902c-4988-a2fd-84cf05de0335", + "direction": "outgoing", + "index": 112820, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "67625424-c752-4430-b68b-fb9500c4832f", + "direction": "outgoing", + "index": 112821, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a23083d1-d9e7-4b7f-a539-ba9b174a241c", + "direction": "outgoing", + "index": 112822, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.888-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "09e77622-6bf4-4ff7-bdeb-f7005870caa0", + "direction": "outgoing", + "index": 112823, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "74505865-6fb6-4f81-b11a-d45e8fb0317c", + "direction": "outgoing", + "index": 112824, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "c574158a-dc70-47af-90d2-4ce16a54e005", + "direction": "outgoing", + "index": 112825, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.933-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "bbb373df-e5da-432f-9043-53596b863e0f", + "direction": "outgoing", + "index": 112826, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.943-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "3b200ee2-344b-40b1-b1db-94780f85288f", + "direction": "outgoing", + "index": 112827, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a0ecc81e-a819-47ff-ac41-32d0e75eec5d", + "direction": "outgoing", + "index": 112828, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.973-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "2f8df420-0ddd-4866-8e19-b1bf4e30e54b", + "direction": "outgoing", + "index": 112829, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:45.987-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "2216f2f3-478f-46c2-a594-09a6f7417469", + "direction": "outgoing", + "index": 112830, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "2a6ffe6f-00f1-4282-81c2-f28e5310a6b7", + "direction": "outgoing", + "index": 112831, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "6c4e1419-a721-43f6-a456-88d9f8df9f17", + "direction": "outgoing", + "index": 112832, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.027-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "cd13ddfe-6b7a-4f71-8db8-14c2dd476461", + "direction": "outgoing", + "index": 112833, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "a9e5e016-a54e-40f0-8a23-cb0b426233c7", + "direction": "outgoing", + "index": 112834, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.052-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "81bf23cb-bf14-461d-b62e-709b29c4077f", + "direction": "outgoing", + "index": 112835, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.064-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + }, + { + "id": "0ba7a232-6405-478b-9a3a-39f6c4c50f94", + "direction": "outgoing", + "index": 112836, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.077-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + }, + { + "id": "4aa2a957-1647-49ea-afee-7b6b6f0ed2b0", + "direction": "outgoing", + "index": 112837, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/1a49dc54-1728-4a24-a8dc-d00c7b2a74cc", + "verb": "get" + }, + { + "id": "77f6e82a-cdd3-4f4c-9c26-5c0f36cc8761", + "direction": "outgoing", + "index": 112838, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + }, + { + "id": "a43cd2cb-1065-431a-9606-9962b89918a2", + "direction": "outgoing", + "index": 112839, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.114-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/1a49dc54-1728-4a24-a8dc-d00c7b2a74cc", + "verb": "get" + }, + { + "id": "0f317b89-f893-44de-9882-c7e511e4be69", + "direction": "outgoing", + "index": 112840, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.128-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d", + "verb": "get" + }, + { + "id": "3bfeb21c-2f86-4527-807a-e4b3f8076620", + "direction": "outgoing", + "index": 112841, + "result_id": "7a6474b3-242d-4bc7-a60e-f99d9926d67c", + "status": 200, + "timestamp": "2026-05-22T08:46:46.140-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Media/653cf7b4-8ae2-4ed5-a2ce-892371b040b8", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note-us_core_v501_diagnostic_report_note_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:45.698-04:00" + }, + { + "id": "81fb67d1-ff12-4378-92e2-bb21aae259b8", + "created_at": "2026-05-22T08:46:46.150-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_note", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:46.150-04:00" + }, + { + "id": "4261eb77-481e-4af5-8132-e43982924abf", + "created_at": "2026-05-22T08:46:46.947-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "66fa697c-2642-46f6-ade1-c1164ad988ad", + "direction": "outgoing", + "index": 112842, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:46.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "d0a10024-de00-41b1-84a3-fd4b44a0569d", + "direction": "outgoing", + "index": 112843, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:46.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "27a41f74-3b95-4e31-966e-a8ea8d960df6", + "direction": "outgoing", + "index": 112844, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:46.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "f3cf5992-9311-4e73-816b-83291fd21de9", + "direction": "outgoing", + "index": 112845, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:47.013-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "0387b7d3-7d44-4432-ab79-0e4262e8a28b", + "direction": "outgoing", + "index": 112846, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:47.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355", + "verb": "get" + }, + { + "id": "92e3e3fc-2d0b-44fc-b050-b1367a939567", + "direction": "outgoing", + "index": 112847, + "result_id": "4261eb77-481e-4af5-8132-e43982924abf", + "status": 200, + "timestamp": "2026-05-22T08:46:47.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:46.947-04:00" + }, + { + "id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "created_at": "2026-05-22T08:46:48.020-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0e8d9192-7df0-40b0-907b-e8952fbcad42", + "direction": "outgoing", + "index": 112848, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.025-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "98076513-e9ce-420e-9943-b0dbff672a79", + "direction": "outgoing", + "index": 112849, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=639a4fe1-51b3-4ffe-aded-0f6b96d16e14\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "76137d94-7d75-4106-ab04-9d0ba2fb33cc", + "direction": "outgoing", + "index": 112850, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.066-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "7768c372-aa33-4aad-8dee-a183cb4933ff", + "direction": "outgoing", + "index": 112851, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.081-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57ac7a5a-a8ec-49a1-95ac-867ab7f159c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "848d6b86-a465-4c18-b720-9769723c2560", + "direction": "outgoing", + "index": 112852, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57ac7a5a-a8ec-49a1-95ac-867ab7f159c9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d651d590-0a8f-4d8d-a411-fec47ec02dca", + "direction": "outgoing", + "index": 112853, + "result_id": "ac2ed6cc-14d9-4dfe-afa1-b8c87146e041", + "status": 200, + "timestamp": "2026-05-22T08:46:48.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:48.020-04:00" + }, + { + "id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "created_at": "2026-05-22T08:46:48.959-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2e0cd037-2e20-47d4-ace3-ab9b1e58bda8", + "direction": "outgoing", + "index": 112854, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:48.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1505df3d-47ed-425f-bf49-17d485fe4888", + "direction": "outgoing", + "index": 112855, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:48.989-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e11a2720-1c1d-483d-a519-4426060c051f", + "direction": "outgoing", + "index": 112856, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:49.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "175b2428-1f46-49da-ba6f-a0d253ced56e", + "direction": "outgoing", + "index": 112857, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:49.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e8d0282e-ba9a-4cd3-8902-12957b45f6f1", + "direction": "outgoing", + "index": 112858, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:49.027-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8eae1696-a2fe-4165-8eb3-a369552d9df9", + "direction": "outgoing", + "index": 112859, + "result_id": "655ca87b-05ed-4355-9165-0ceb59658bc7", + "status": 200, + "timestamp": "2026-05-22T08:46:49.042-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:48.959-04:00" + }, + { + "id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "created_at": "2026-05-22T08:46:50.532-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "05e2c47c-cdc6-4be6-8e28-79d714fb44f0", + "direction": "outgoing", + "index": 112860, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.536-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "b260a98b-4298-414a-8444-19aece386410", + "direction": "outgoing", + "index": 112861, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=215974a2-c633-450f-89bb-342756d96025\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0e76ae1-4c7f-418f-8a91-028b90f25f76", + "direction": "outgoing", + "index": 112862, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=215974a2-c633-450f-89bb-342756d96025\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b2be34e-e223-4755-89da-d41c9108db50", + "direction": "outgoing", + "index": 112863, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "0f533942-9d99-4ce8-91c7-e0a390c3bd3b", + "direction": "outgoing", + "index": 112864, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=919a1782-adb5-473e-92ec-034979b66daa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9a95b82-18e2-455f-8bfd-ef733dbd9a2c", + "direction": "outgoing", + "index": 112865, + "result_id": "333395a1-9549-49b1-ba69-6b1fc99ea0d6", + "status": 200, + "timestamp": "2026-05-22T08:46:50.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=919a1782-adb5-473e-92ec-034979b66daa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:50.532-04:00" + }, + { + "id": "7ae29676-f467-4725-ac31-aaf9335eba46", + "created_at": "2026-05-22T08:46:50.883-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "409fdac8-539f-47a0-887a-b9bc670fb849", + "direction": "outgoing", + "index": 112866, + "result_id": "7ae29676-f467-4725-ac31-aaf9335eba46", + "status": 200, + "timestamp": "2026-05-22T08:46:50.887-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355", + "verb": "get" + }, + { + "id": "8e0aa8a0-c5ae-4d52-bb9b-92e4a579f17a", + "direction": "outgoing", + "index": 112867, + "result_id": "7ae29676-f467-4725-ac31-aaf9335eba46", + "status": 200, + "timestamp": "2026-05-22T08:46:50.900-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:50.883-04:00" + }, + { + "id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "created_at": "2026-05-22T08:46:51.779-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3ae59d2b-0f23-4594-abcf-ddba3b418cfa", + "direction": "outgoing", + "index": 112868, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6426443e-dae4-49e2-b0d8-e920ede496d9", + "direction": "outgoing", + "index": 112869, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1464387f-c13d-4929-8521-7bc41372b049", + "direction": "outgoing", + "index": 112870, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.826-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5a31aab4-3b00-42dc-ad82-a966df19508a", + "direction": "outgoing", + "index": 112871, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.837-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3211f26e-34ec-4fa4-bbb1-be4db8aaf28f", + "direction": "outgoing", + "index": 112872, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "08509777-d52b-4e39-a16d-8872f0a4b56c", + "direction": "outgoing", + "index": 112873, + "result_id": "2e33d95a-3908-40a9-a319-2b8afb40ac32", + "status": 200, + "timestamp": "2026-05-22T08:46:51.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:51.779-04:00" + }, + { + "id": "dc49aa97-8ed1-4e89-8451-8ffc4d5079ae", + "created_at": "2026-05-22T08:46:51.994-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2b9ae94c-9d9f-4b48-959a-f78465bf98d6", + "direction": "outgoing", + "index": 112874, + "result_id": "dc49aa97-8ed1-4e89-8451-8ffc4d5079ae", + "status": 200, + "timestamp": "2026-05-22T08:46:51.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:51.994-04:00" + }, + { + "id": "e9b21185-5fc2-4616-a38d-1f4863f2e6eb", + "created_at": "2026-05-22T08:46:52.471-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "32cf36ee-57e0-4a1f-b41d-d7024d4fedd7", + "direction": "outgoing", + "index": 112875, + "result_id": "e9b21185-5fc2-4616-a38d-1f4863f2e6eb", + "status": 200, + "timestamp": "2026-05-22T08:46:52.482-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "9eaaec9f-dd84-4cf7-a669-34cb8b64e99f", + "direction": "outgoing", + "index": 112876, + "result_id": "e9b21185-5fc2-4616-a38d-1f4863f2e6eb", + "status": 200, + "timestamp": "2026-05-22T08:46:52.513-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "6a1033e1-96d0-4241-84c3-235c5a3be36e", + "direction": "outgoing", + "index": 112877, + "result_id": "e9b21185-5fc2-4616-a38d-1f4863f2e6eb", + "status": 200, + "timestamp": "2026-05-22T08:46:52.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:52.471-04:00" + }, + { + "id": "5ddda6c1-b3e4-4436-a726-9c3299f4d15e", + "created_at": "2026-05-22T08:46:53.022-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:53.022-04:00" + }, + { + "id": "65c7244e-2e18-421b-a701-4c230bb260fd", + "created_at": "2026-05-22T08:46:53.041-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:53.041-04:00" + }, + { + "id": "6d69a798-28f7-47e1-81f9-164943fe9df9", + "created_at": "2026-05-22T08:46:53.993-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "74e061dc-52b0-42e5-972a-c93b4fcdc3a0", + "direction": "outgoing", + "index": 112878, + "result_id": "6d69a798-28f7-47e1-81f9-164943fe9df9", + "status": 200, + "timestamp": "2026-05-22T08:46:53.996-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "38d263a9-a1ad-492d-baf2-20464b17febe", + "direction": "outgoing", + "index": 112879, + "result_id": "6d69a798-28f7-47e1-81f9-164943fe9df9", + "status": 200, + "timestamp": "2026-05-22T08:46:54.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "749e31ef-cf32-44d1-8826-fd3b08dc7063", + "direction": "outgoing", + "index": 112880, + "result_id": "6d69a798-28f7-47e1-81f9-164943fe9df9", + "status": 200, + "timestamp": "2026-05-22T08:46:54.034-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab-us_core_v501_diagnostic_report_lab_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:53.993-04:00" + }, + { + "id": "af0cefb8-155c-4d89-b0c9-83e165320b60", + "created_at": "2026-05-22T08:46:54.050-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_diagnostic_report_lab", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:54.050-04:00" + }, + { + "id": "453157ac-34d8-40af-9059-cb580009a0e5", + "created_at": "2026-05-22T08:46:57.946-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9e3776db-1d8e-41ba-af07-569a4db456b1", + "direction": "outgoing", + "index": 112881, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:57.951-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "6542eeaf-1e33-40ba-8dc3-51b7501bfffa", + "direction": "outgoing", + "index": 112882, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:57.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=99ebbfb8-c66c-4cd8-b9a8-bd4c067920eb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bf2218e2-1584-4eb2-a11b-bae943395cd7", + "direction": "outgoing", + "index": 112883, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:57.984-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=99ebbfb8-c66c-4cd8-b9a8-bd4c067920eb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ae10f101-6ca0-49e1-bcbc-d4e85e292a19", + "direction": "outgoing", + "index": 112884, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:57.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search", + "verb": "post" + }, + { + "id": "d21e1d33-8ee2-48e4-a381-143bb126e923", + "direction": "outgoing", + "index": 112885, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=99ebbfb8-c66c-4cd8-b9a8-bd4c067920eb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6b2d3d2d-b10e-4472-80af-8f73ef1751e9", + "direction": "outgoing", + "index": 112886, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=99ebbfb8-c66c-4cd8-b9a8-bd4c067920eb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bd74abd3-8b90-47c5-bd8c-4701007ef24a", + "direction": "outgoing", + "index": 112887, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.044-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85", + "verb": "get" + }, + { + "id": "af76131e-29ca-4d78-b0e0-af896702ea92", + "direction": "outgoing", + "index": 112888, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e6428e9f-9ed5-46d0-bbdd-df7fbd896df7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fc01237a-a473-425f-bd78-66858c921f0d", + "direction": "outgoing", + "index": 112889, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e6428e9f-9ed5-46d0-bbdd-df7fbd896df7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "02a34624-85e2-46b0-b0a4-0cae1ed15750", + "direction": "outgoing", + "index": 112890, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.081-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "a387b393-6950-4685-b1ac-d6987ee74c2f", + "direction": "outgoing", + "index": 112891, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.092-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b24c58f-15db-4508-a411-ed85cb8c8fe9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f5d9d5bd-b3bf-4aa4-8c56-ffcd774f0fc6", + "direction": "outgoing", + "index": 112892, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.105-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b24c58f-15db-4508-a411-ed85cb8c8fe9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8cd028b7-cc69-482f-ac8e-08eb551bc406", + "direction": "outgoing", + "index": 112893, + "result_id": "453157ac-34d8-40af-9059-cb580009a0e5", + "status": 200, + "timestamp": "2026-05-22T08:46:58.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:57.946-04:00" + }, + { + "id": "a6bcf6c0-4e68-42d9-b33c-865dad3b82cd", + "created_at": "2026-05-22T08:46:58.254-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bbf69e68-fd11-4ec8-8c0e-56a9a50baac1", + "direction": "outgoing", + "index": 112894, + "result_id": "a6bcf6c0-4e68-42d9-b33c-865dad3b82cd", + "status": 200, + "timestamp": "2026-05-22T08:46:58.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:46:58.254-04:00" + }, + { + "id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "created_at": "2026-05-22T08:47:02.115-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a35d4962-2d21-413d-a1fc-d429fe3e3b66", + "direction": "outgoing", + "index": 112895, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "96e98b86-e05c-4c45-95ad-c6f7f822093a", + "direction": "outgoing", + "index": 112896, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.136-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c6968762-bd64-4183-922a-6b21922e6046", + "direction": "outgoing", + "index": 112897, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.148-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a0ce5742-bf8c-4c25-ad07-d2cc00824798\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47fc13fe-02e8-4861-88bd-e6bae91c01f3", + "direction": "outgoing", + "index": 112898, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a0ce5742-bf8c-4c25-ad07-d2cc00824798\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "971610e2-422e-403c-91ad-7a6f4fbaef2a", + "direction": "outgoing", + "index": 112899, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "29ae6f5b-6c46-4fa4-bba0-7283d6fd1297", + "direction": "outgoing", + "index": 112900, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8624cfc1-6127-46a4-b9ed-9aa13c782cc5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0cc5e3cb-7b52-4f86-ad9d-d46a6d16a075", + "direction": "outgoing", + "index": 112901, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.199-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8624cfc1-6127-46a4-b9ed-9aa13c782cc5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4a37f064-286c-4a92-b0c6-6a7562a89610", + "direction": "outgoing", + "index": 112902, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.212-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c9961077-cab8-4b9d-8026-5005ba7b4d2d", + "direction": "outgoing", + "index": 112903, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.225-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3ea9d0cd-aa32-4018-af71-6bab63f19be9", + "direction": "outgoing", + "index": 112904, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b0eeeb4c-b2bd-4e88-8df5-c2a360b02cc5", + "direction": "outgoing", + "index": 112905, + "result_id": "bf9c719e-4c4b-4192-8149-ccff3e00aa2a", + "status": 200, + "timestamp": "2026-05-22T08:47:02.250-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:02.115-04:00" + }, + { + "id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "created_at": "2026-05-22T08:47:05.079-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ccc8aebe-ade3-4956-8352-78a9960b1b5c", + "direction": "outgoing", + "index": 112906, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded", + "verb": "get" + }, + { + "id": "e6b694a2-28f8-46f0-8d19-cf42b3c420c6", + "direction": "outgoing", + "index": 112907, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=08b14ded-a229-4fb0-ba51-03e4b588554a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "782d689e-cce1-4daa-adf7-57905c2cfcbc", + "direction": "outgoing", + "index": 112908, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded", + "verb": "get" + }, + { + "id": "5be5527b-4e0b-4a4f-9725-284aae7fbb9b", + "direction": "outgoing", + "index": 112909, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9a9c20c0-5634-4e5e-9bb2-42890d6e6512\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4bc4f6c5-9d39-41d1-a5dc-748872500941", + "direction": "outgoing", + "index": 112910, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error", + "verb": "get" + }, + { + "id": "bfcbafcd-38d5-409f-9c28-4cd61d160a34", + "direction": "outgoing", + "index": 112911, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.159-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d9059289-2a51-417f-98f2-42b1278290bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "595734d8-15c3-4441-b2e1-3d07e239362f", + "direction": "outgoing", + "index": 112912, + "result_id": "ca81f092-4d1f-40bb-9176-8f831206d6e8", + "status": 200, + "timestamp": "2026-05-22T08:47:05.172-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d9059289-2a51-417f-98f2-42b1278290bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:05.079-04:00" + }, + { + "id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "created_at": "2026-05-22T08:47:08.339-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1b34d421-2180-4b0e-946d-c4a10d85d549", + "direction": "outgoing", + "index": 112913, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.343-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "2f8cac70-85c0-4b66-a346-bf56624cd465", + "direction": "outgoing", + "index": 112914, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.364-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a8e1fcc4-f0a3-4304-9118-df7c1c443ec6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ca670c24-7c65-4310-9888-a3eb68183741", + "direction": "outgoing", + "index": 112915, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.380-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a8e1fcc4-f0a3-4304-9118-df7c1c443ec6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ed0f81bc-ee69-40cd-9691-12568fd73a29", + "direction": "outgoing", + "index": 112916, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "93a03bc4-8784-4126-9a9d-8fae65e2cf4c", + "direction": "outgoing", + "index": 112917, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e251d913-db93-4e66-99b5-bb2aef80c2f9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f98db64-8d2f-404e-b748-4f729760e165", + "direction": "outgoing", + "index": 112918, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e251d913-db93-4e66-99b5-bb2aef80c2f9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "027001f5-dd3a-4ed9-8bfd-a3214c0913b5", + "direction": "outgoing", + "index": 112919, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355", + "verb": "get" + }, + { + "id": "63b544be-6e8d-4f89-8043-cf1f290fdfcd", + "direction": "outgoing", + "index": 112920, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=60f39fc3-a7d9-4d59-9fe6-c3969d8158e5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f65af672-94b5-4076-9a0a-75af8e94128a", + "direction": "outgoing", + "index": 112921, + "result_id": "065cdfcd-75e1-42e8-83e9-ab4703363001", + "status": 200, + "timestamp": "2026-05-22T08:47:08.462-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=60f39fc3-a7d9-4d59-9fe6-c3969d8158e5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:08.339-04:00" + }, + { + "id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "created_at": "2026-05-22T08:47:09.507-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "aa065b60-835a-4ab4-8609-6039929f39a9", + "direction": "outgoing", + "index": 112922, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.518-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "596efcd9-1754-4b11-b1e7-33239308e57d", + "direction": "outgoing", + "index": 112923, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "7e2174f5-4903-43c4-be97-e2c99b0c50d6", + "direction": "outgoing", + "index": 112924, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "f7235e51-c127-4f66-b7c2-d2842668927a", + "direction": "outgoing", + "index": 112925, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "db1a9c83-a1a6-49c1-ad95-52b6d9535e2d", + "direction": "outgoing", + "index": 112926, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "44e59905-cc53-4830-9629-fdf10f12b2d0", + "direction": "outgoing", + "index": 112927, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "194aa1c2-cad5-431f-8bc8-04fecd8f4ba0", + "direction": "outgoing", + "index": 112928, + "result_id": "062bfc04-171a-4445-804c-61d2cfdf3e36", + "status": 200, + "timestamp": "2026-05-22T08:47:09.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_type_period_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:09.507-04:00" + }, + { + "id": "a3f868a9-73fc-400c-b521-ec21a52fa29c", + "created_at": "2026-05-22T08:47:10.071-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fda0aaae-71a5-4ce1-b7cb-aff405f976d1", + "direction": "outgoing", + "index": 112929, + "result_id": "a3f868a9-73fc-400c-b521-ec21a52fa29c", + "status": 200, + "timestamp": "2026-05-22T08:47:10.078-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3", + "verb": "get" + }, + { + "id": "892f55a2-f76d-433c-ac29-361a9dc84a66", + "direction": "outgoing", + "index": 112930, + "result_id": "a3f868a9-73fc-400c-b521-ec21a52fa29c", + "status": 200, + "timestamp": "2026-05-22T08:47:10.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "c10d614c-207c-448e-926a-8d82ca2345af", + "direction": "outgoing", + "index": 112931, + "result_id": "a3f868a9-73fc-400c-b521-ec21a52fa29c", + "status": 200, + "timestamp": "2026-05-22T08:47:10.109-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_patient_type_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:10.071-04:00" + }, + { + "id": "c7abbd83-de6a-4bb3-aa6c-e34f4937e83e", + "created_at": "2026-05-22T08:47:10.249-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "02fd70e1-c7bc-467d-bfe8-f21a4601a226", + "direction": "outgoing", + "index": 112932, + "result_id": "c7abbd83-de6a-4bb3-aa6c-e34f4937e83e", + "status": 200, + "timestamp": "2026-05-22T08:47:10.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:10.249-04:00" + }, + { + "id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "created_at": "2026-05-22T08:47:12.717-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "125dd1d9-d969-40b9-9437-78d709614437", + "direction": "outgoing", + "index": 112933, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "b94f14c0-3786-4079-86af-6d892f544a66", + "direction": "outgoing", + "index": 112934, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=854fd974-ee78-47a4-a776-d21a6a770cd2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3abeb07-0bec-4281-a5cf-cb965a7a72cd", + "direction": "outgoing", + "index": 112935, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=854fd974-ee78-47a4-a776-d21a6a770cd2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "25157af6-4157-4025-a6b4-d61c2104aff6", + "direction": "outgoing", + "index": 112936, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "b467a658-129a-4709-85e9-f52952171004", + "direction": "outgoing", + "index": 112937, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.783-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff1c032c-8365-479f-b8e0-146a1cc21c20\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c20041b0-170e-4ec5-94a4-e154cf7452d6", + "direction": "outgoing", + "index": 112938, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.796-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff1c032c-8365-479f-b8e0-146a1cc21c20\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea170e13-bd0d-4af0-9928-dafe95f02bb8", + "direction": "outgoing", + "index": 112939, + "result_id": "775d0faf-f00e-4720-bb3a-681d88789aa8", + "status": 200, + "timestamp": "2026-05-22T08:47:12.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:12.717-04:00" + }, + { + "id": "2e4c4c87-1b58-45d5-a735-f51363a15865", + "created_at": "2026-05-22T08:47:19.869-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1')", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_extension_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:19.869-04:00" + }, + { + "id": "9f3bb874-f6f0-43a3-a753-9ea58ff3d51d", + "created_at": "2026-05-22T08:47:19.979-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:19.979-04:00" + }, + { + "id": "d6df1e47-2827-4842-a4a9-f22d27ca814d", + "created_at": "2026-05-22T08:47:19.981-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v501_document_reference_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:19.981-04:00" + }, + { + "id": "af007c62-f203-4a3c-9395-e9ae17340e28", + "created_at": "2026-05-22T08:47:19.987-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference-us_core_v400_document_reference_custodian_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:19.987-04:00" + }, + { + "id": "2ef2f9af-0605-430c-965f-b79df92c284a", + "created_at": "2026-05-22T08:47:19.988-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_document_reference", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:19.988-04:00" + }, + { + "id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "created_at": "2026-05-22T08:47:25.908-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0c1de969-2ddd-4d09-89b6-8c19c6dc5d38", + "direction": "outgoing", + "index": 112940, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85", + "verb": "get" + }, + { + "id": "c6838a4d-6d12-427d-bf05-5a46f1c99b54", + "direction": "outgoing", + "index": 112941, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.926-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b00203c8-64d0-4ec1-9e9a-fb2134b629aa", + "direction": "outgoing", + "index": 112942, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9922c48-e8e8-4bf6-9b92-41798e58979b", + "direction": "outgoing", + "index": 112943, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "327520e8-f193-4964-bd14-43c1724787ba", + "direction": "outgoing", + "index": 112944, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.960-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6de031d9-8a55-4241-b428-1330b1960f9a", + "direction": "outgoing", + "index": 112945, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.971-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e409d946-708e-4b9a-850c-4f0b7914b952", + "direction": "outgoing", + "index": 112946, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/_search", + "verb": "post" + }, + { + "id": "5657ab9a-c89d-46f8-b17b-cafff8607942", + "direction": "outgoing", + "index": 112947, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:25.995-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2ac1b24f-b78a-43c4-86f9-44fbbb3b3bbd", + "direction": "outgoing", + "index": 112948, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.008-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "49980f36-1ff0-4385-bf25-381705851e3b", + "direction": "outgoing", + "index": 112949, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9cd82607-5547-465a-b52e-b67c516c6b25", + "direction": "outgoing", + "index": 112950, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.034-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a26ff5b1-4695-4056-8372-307037820b55", + "direction": "outgoing", + "index": 112951, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.048-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f14d813-b27e-4090-a2ec-c8148b679e2b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "acdebf58-7998-49c3-aee8-d592bb6ea92c", + "direction": "outgoing", + "index": 112952, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85", + "verb": "get" + }, + { + "id": "e4dd40b5-b089-40cc-8e48-9e7dff7faf35", + "direction": "outgoing", + "index": 112953, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.077-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c7bfa89-7e80-4409-9996-cb49783688e9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8823250f-acbd-484d-a6ac-f6aa89c77887", + "direction": "outgoing", + "index": 112954, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c7bfa89-7e80-4409-9996-cb49783688e9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "267764ed-63b0-4bc9-b41a-3181099f8d2a", + "direction": "outgoing", + "index": 112955, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.104-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c7bfa89-7e80-4409-9996-cb49783688e9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3e3def87-7eb9-44ec-9bdc-8de512fba634", + "direction": "outgoing", + "index": 112956, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.117-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c7bfa89-7e80-4409-9996-cb49783688e9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8f52983f-b229-4d8d-8944-f6cf795ecd69", + "direction": "outgoing", + "index": 112957, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4c7bfa89-7e80-4409-9996-cb49783688e9\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d73d10e7-44c1-469d-b562-0158d90448aa", + "direction": "outgoing", + "index": 112958, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355", + "verb": "get" + }, + { + "id": "e1bda165-09ec-4ee7-9c81-ed1a89af5444", + "direction": "outgoing", + "index": 112959, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.159-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fdf26cc3-4039-410b-af87-9f55044fc67a", + "direction": "outgoing", + "index": 112960, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.173-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3068bc2c-924c-4be3-bda5-c4f0d4711d4a", + "direction": "outgoing", + "index": 112961, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.187-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aeecc87c-bf98-4983-ac79-7abe8c343677", + "direction": "outgoing", + "index": 112962, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c98bab8f-36b1-462c-b869-e3f6762f090e", + "direction": "outgoing", + "index": 112963, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.213-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7263f5fc-3c60-4f8d-8941-1af079c326dc", + "direction": "outgoing", + "index": 112964, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "23b2720b-d3ae-4cef-84aa-304bc55d4a5f", + "direction": "outgoing", + "index": 112965, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.236-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0369c1f-ea6f-4759-ad85-857f67abce22", + "direction": "outgoing", + "index": 112966, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.248-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "238fd5a0-3e42-4e77-9752-f139a99f2733", + "direction": "outgoing", + "index": 112967, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1dfc34f-801a-401a-9ff8-fcde4d208161", + "direction": "outgoing", + "index": 112968, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.270-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "df7f7bd6-699b-4066-a050-baf8bda22e97", + "direction": "outgoing", + "index": 112969, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "77d2a355-013e-400b-b38e-efa6ba800ee8", + "direction": "outgoing", + "index": 112970, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c94df3fa-7aa8-48d1-9ef7-6d18ee2ec23c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ef960c15-2b45-47c5-9e22-e9954cd7662d", + "direction": "outgoing", + "index": 112971, + "result_id": "e12f916b-cf89-4f74-b89f-d0c34df06d2f", + "status": 200, + "timestamp": "2026-05-22T08:47:26.306-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:25.908-04:00" + }, + { + "id": "8af7b795-adcb-42fe-92a2-0db78b174d6e", + "created_at": "2026-05-22T08:47:26.444-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "347c48fc-df85-41c1-b7d5-ce57e50eb764", + "direction": "outgoing", + "index": 112972, + "result_id": "8af7b795-adcb-42fe-92a2-0db78b174d6e", + "status": 200, + "timestamp": "2026-05-22T08:47:26.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_id=cac22925-f852-4ed3-af57-50afe02288bd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:26.444-04:00" + }, + { + "id": "d58aa071-d11b-448b-ac2f-8adfe348386a", + "created_at": "2026-05-22T08:47:26.704-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "eaffe811-7bac-4ca2-8dfc-59de4f10858a", + "direction": "outgoing", + "index": 112973, + "result_id": "d58aa071-d11b-448b-ac2f-8adfe348386a", + "status": 200, + "timestamp": "2026-05-22T08:47:26.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=09775519-5327-3bbf-cb95-66313dde54ee", + "verb": "get" + }, + { + "id": "8efb9293-8a1e-4674-92d3-be210483a6fd", + "direction": "outgoing", + "index": 112974, + "result_id": "d58aa071-d11b-448b-ac2f-8adfe348386a", + "status": 200, + "timestamp": "2026-05-22T08:47:26.720-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C09775519-5327-3bbf-cb95-66313dde54ee", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_identifier_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:26.704-04:00" + }, + { + "id": "8ccfca37-bd96-4b13-afad-ebc2327ca469", + "created_at": "2026-05-22T08:47:26.959-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7a0f2167-ec8f-442e-8a85-c92b027149e3", + "direction": "outgoing", + "index": 112975, + "result_id": "8ccfca37-bd96-4b13-afad-ebc2327ca469", + "status": 400, + "timestamp": "2026-05-22T08:47:26.963-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85", + "verb": "get" + }, + { + "id": "e5d24619-35e5-4132-b334-0a6e07814bba", + "direction": "outgoing", + "index": 112976, + "result_id": "8ccfca37-bd96-4b13-afad-ebc2327ca469", + "status": 400, + "timestamp": "2026-05-22T08:47:26.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85\u0026status=planned", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_patient_discharge_disposition_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:26.959-04:00" + }, + { + "id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "created_at": "2026-05-22T08:47:31.607-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6ab68a0b-5964-4e90-a014-389f07023219", + "direction": "outgoing", + "index": 112977, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.613-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85", + "verb": "get" + }, + { + "id": "abbfba51-ce6a-4435-bbf7-84d10086ce30", + "direction": "outgoing", + "index": 112978, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1df283d1-3421-490b-b6e0-205f8b664b01\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0600bd58-8c40-4c0a-8d1a-2d3e0471bde0", + "direction": "outgoing", + "index": 112979, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1df283d1-3421-490b-b6e0-205f8b664b01\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f1733043-20c3-4f85-a3d9-5ea7c6d3fa1e", + "direction": "outgoing", + "index": 112980, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1df283d1-3421-490b-b6e0-205f8b664b01\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bed7e653-5dfa-4e23-b4ee-550008d30631", + "direction": "outgoing", + "index": 112981, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1df283d1-3421-490b-b6e0-205f8b664b01\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93db4a84-f548-4452-bd87-0c5292213752", + "direction": "outgoing", + "index": 112982, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1df283d1-3421-490b-b6e0-205f8b664b01\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c4f3919f-d26b-4f5a-b0fd-9895e9cf53de", + "direction": "outgoing", + "index": 112983, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85", + "verb": "get" + }, + { + "id": "f994ed1f-c9f8-497e-b50a-2abf643604e4", + "direction": "outgoing", + "index": 112984, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.726-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cf888ae9-f28d-4297-aa17-723b58a1ee3b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "72981cd1-5a18-4196-93b9-2f20e964b556", + "direction": "outgoing", + "index": 112985, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.740-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cf888ae9-f28d-4297-aa17-723b58a1ee3b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b3a2c8c9-8de5-4470-a1f1-9eca8c4f7669", + "direction": "outgoing", + "index": 112986, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cf888ae9-f28d-4297-aa17-723b58a1ee3b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "90bd981d-7d6a-400d-a509-947a152f56a4", + "direction": "outgoing", + "index": 112987, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.766-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cf888ae9-f28d-4297-aa17-723b58a1ee3b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0d70a98f-6221-4fd5-9771-4ea4feb48e24", + "direction": "outgoing", + "index": 112988, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cf888ae9-f28d-4297-aa17-723b58a1ee3b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dc6e2caf-7f66-4b9b-b968-602fd8ede9a3", + "direction": "outgoing", + "index": 112989, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355", + "verb": "get" + }, + { + "id": "7cc00624-2203-44b0-8425-670dc08229f2", + "direction": "outgoing", + "index": 112990, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.811-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "51a6842e-2f9f-43b5-80d5-d6ea19e98f98", + "direction": "outgoing", + "index": 112991, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.821-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9b5b526-7cc5-4a9f-9ed9-1e74ba0291fe", + "direction": "outgoing", + "index": 112992, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "23ade5ef-79b6-4170-9360-8f105ceda62a", + "direction": "outgoing", + "index": 112993, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.846-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dcd7b8bf-c41b-4028-a790-be6780378852", + "direction": "outgoing", + "index": 112994, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "547e32be-a568-477d-b16d-b6430d67c773", + "direction": "outgoing", + "index": 112995, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.870-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95a78044-088f-4011-b2ce-a260caa7bebd", + "direction": "outgoing", + "index": 112996, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.883-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ee9c8220-69ae-4f96-a589-610bc654613f", + "direction": "outgoing", + "index": 112997, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.895-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2953e449-831a-4e58-b217-a255302a58a1", + "direction": "outgoing", + "index": 112998, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8d9c3e02-19fa-4afe-82c4-bf5bf3e0889f", + "direction": "outgoing", + "index": 112999, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ccd85da1-e137-44a6-a463-bb098433bb5b", + "direction": "outgoing", + "index": 113000, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b677bd9-7bf3-47a3-a08e-15dcbf8c703d", + "direction": "outgoing", + "index": 113001, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.947-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=53b88b54-8a9f-4ae9-b1d1-26f37fe4093c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "916b417f-6122-44b1-a55d-b697db239796", + "direction": "outgoing", + "index": 113002, + "result_id": "24d13787-d8a7-463c-acde-7fb962aba6d1", + "status": 200, + "timestamp": "2026-05-22T08:47:31.957-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_class_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:31.607-04:00" + }, + { + "id": "56eee593-68af-48d2-88af-7896f058075b", + "created_at": "2026-05-22T08:47:35.395-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "86ff2d51-78ff-4de7-b842-ccb222ffdab6", + "direction": "outgoing", + "index": 113003, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.403-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/b594895c-11cb-403f-a3bb-5729a3da4bd6\u0026patient=85", + "verb": "get" + }, + { + "id": "3d4afeb5-9856-41b4-b49d-73ce84f5ada9", + "direction": "outgoing", + "index": 113004, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92304a4c-c849-4fd7-b0c9-4feef55e7369\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d944f16-bbb8-454c-9dce-cfc041d1b1bc", + "direction": "outgoing", + "index": 113005, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92304a4c-c849-4fd7-b0c9-4feef55e7369\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de496b71-e79d-488c-addd-8dd686a73ed4", + "direction": "outgoing", + "index": 113006, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=92304a4c-c849-4fd7-b0c9-4feef55e7369\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4fae3e94-20fb-4075-be61-b312db83e0bc", + "direction": "outgoing", + "index": 113007, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/462d8d76-453e-4644-9f58-fc7f4f1daff0\u0026patient=355", + "verb": "get" + }, + { + "id": "d1c03217-017b-41cc-8615-646b6e9d5cff", + "direction": "outgoing", + "index": 113008, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fe7ba131-6915-49e7-ae3e-b94765ca6c7d", + "direction": "outgoing", + "index": 113009, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5590247-4da1-4799-b14d-21d06303ee77", + "direction": "outgoing", + "index": 113010, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.508-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1cd3f609-8dfc-4d69-8e6e-90026f5f06b4", + "direction": "outgoing", + "index": 113011, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.521-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "30e3fd95-de76-48e6-a5f7-10b445997ade", + "direction": "outgoing", + "index": 113012, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.532-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f808b00-a0e0-4e60-8409-2c13dfaa01cd", + "direction": "outgoing", + "index": 113013, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ecebe6ef-b93a-4f80-b839-b890ccc74b7c", + "direction": "outgoing", + "index": 113014, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3116900-0805-420d-83d7-a8b03548037c", + "direction": "outgoing", + "index": 113015, + "result_id": "56eee593-68af-48d2-88af-7896f058075b", + "status": 200, + "timestamp": "2026-05-22T08:47:35.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41b1dd76-c274-4a52-9cd6-9b3d6000bf56\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_patient_location_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:35.395-04:00" + }, + { + "id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "created_at": "2026-05-22T08:47:41.464-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2e1f9b94-c819-4a54-b703-57ae637b3d4e", + "direction": "outgoing", + "index": 113016, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "836c32a3-1cde-429d-8ea5-d4534e1a88eb", + "direction": "outgoing", + "index": 113017, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dcadfc50-8547-4bb2-8cad-8bd144012ae1", + "direction": "outgoing", + "index": 113018, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.499-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a1977683-8cc3-406c-a2c3-1ac9bd47544f", + "direction": "outgoing", + "index": 113019, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "28190e98-2a31-4c39-835e-669e8b5c80a0", + "direction": "outgoing", + "index": 113020, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3b70a99-414a-460b-9d38-35940612f259", + "direction": "outgoing", + "index": 113021, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.536-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "82ed0613-de45-42d2-af26-c1d70cc15169", + "direction": "outgoing", + "index": 113022, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.551-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4d686b40-082e-40a6-91a9-8ff0e06685be", + "direction": "outgoing", + "index": 113023, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.563-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "18a448a5-71fc-47db-8faf-f09683f85223", + "direction": "outgoing", + "index": 113024, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.575-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9276784e-68ec-4a97-8ef8-251073a71c84", + "direction": "outgoing", + "index": 113025, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "30adea29-e67c-49bc-92cd-56ded46004d0", + "direction": "outgoing", + "index": 113026, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.599-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f751d336-7a9f-46ff-8a1d-b425d87da182", + "direction": "outgoing", + "index": 113027, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.609-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a611efeb-a776-4e15-912d-7cefcc68a312\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "54833039-0962-4963-bfc6-aa424c4c640b", + "direction": "outgoing", + "index": 113028, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.621-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d539c805-fae3-4298-8312-8095624babf7", + "direction": "outgoing", + "index": 113029, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd0de94e-1f23-4e32-91a6-0a23a7dbee5f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2e95a2c0-f576-41ec-91c6-f93d03690a3d", + "direction": "outgoing", + "index": 113030, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.644-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd0de94e-1f23-4e32-91a6-0a23a7dbee5f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9a6ff512-5a64-49ef-acad-5791ac0ea739", + "direction": "outgoing", + "index": 113031, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd0de94e-1f23-4e32-91a6-0a23a7dbee5f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bbf12f74-009a-4af0-8c0a-302f278f72bd", + "direction": "outgoing", + "index": 113032, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd0de94e-1f23-4e32-91a6-0a23a7dbee5f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d086136b-cb98-4247-a4cd-d289cf4f0900", + "direction": "outgoing", + "index": 113033, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cd0de94e-1f23-4e32-91a6-0a23a7dbee5f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "75e2dccb-11bc-4d73-b679-dfeacdcad680", + "direction": "outgoing", + "index": 113034, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.703-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "28d29a6a-59cf-4686-b1c7-b1efc109c57a", + "direction": "outgoing", + "index": 113035, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.715-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0116312a-b258-4655-81f3-42dd461f86a4", + "direction": "outgoing", + "index": 113036, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0acef584-b3ab-4069-9650-5a253a943587", + "direction": "outgoing", + "index": 113037, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.743-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0c5e2c10-65e0-4c16-996b-8485171b705f", + "direction": "outgoing", + "index": 113038, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.756-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da8a9b33-30f8-40eb-b68d-7a3cb1e968fe", + "direction": "outgoing", + "index": 113039, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "27b96aa5-cba6-4a87-97e2-7eb72b7bf92c", + "direction": "outgoing", + "index": 113040, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.782-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7b419c4-9545-4d8b-b3c7-8ba709743c4e", + "direction": "outgoing", + "index": 113041, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dd18b9de-d346-4e6c-9185-019b6ce35032", + "direction": "outgoing", + "index": 113042, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ecdc9c74-eaa4-4238-b414-a3fc5bee61e3", + "direction": "outgoing", + "index": 113043, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.817-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "29c0f9f1-1856-4e05-87c0-db8a616fc82d", + "direction": "outgoing", + "index": 113044, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "99e8b8f9-e3f2-4227-9217-ccc287262f31", + "direction": "outgoing", + "index": 113045, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.841-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad5a91a5-df8e-4e39-80bc-50318136f2ca", + "direction": "outgoing", + "index": 113046, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.856-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "15623420-f1f1-439d-8116-ec8eee6d7b8c", + "direction": "outgoing", + "index": 113047, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.867-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "75765305-6e3f-45ee-a644-f8b3445d9ca4", + "direction": "outgoing", + "index": 113048, + "result_id": "a94519d8-1664-4f94-bf2f-203eaeb5ae88", + "status": 200, + "timestamp": "2026-05-22T08:47:41.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c9498e78-e1ae-4726-b9ce-5eb2b29d8248\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_date_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:41.464-04:00" + }, + { + "id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "created_at": "2026-05-22T08:47:45.518-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "504276c5-c1d7-4121-9fba-af2573a28be3", + "direction": "outgoing", + "index": 113049, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished", + "verb": "get" + }, + { + "id": "ac151e03-36ae-4f0b-b608-1775ec24e5d6", + "direction": "outgoing", + "index": 113050, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04ae48d-e708-4771-9c6f-ef9a6d0961dc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "97b15ea0-eaab-48f5-b8b3-ddc112a8b2c8", + "direction": "outgoing", + "index": 113051, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04ae48d-e708-4771-9c6f-ef9a6d0961dc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f7e63434-eac4-413b-9221-c6e5e1788d9e", + "direction": "outgoing", + "index": 113052, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04ae48d-e708-4771-9c6f-ef9a6d0961dc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "527e59cf-b906-4186-a48e-6b340cc36377", + "direction": "outgoing", + "index": 113053, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.583-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04ae48d-e708-4771-9c6f-ef9a6d0961dc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "94fe17a6-e929-4fc8-b377-c7fa207bad8b", + "direction": "outgoing", + "index": 113054, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.595-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04ae48d-e708-4771-9c6f-ef9a6d0961dc\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f34a0924-6c5f-4835-965b-eac17f279236", + "direction": "outgoing", + "index": 113055, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished", + "verb": "get" + }, + { + "id": "3970eba0-24a9-4842-ac88-bc09a61de1a2", + "direction": "outgoing", + "index": 113056, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a393eefb-5143-4972-a9b3-12691765304b", + "direction": "outgoing", + "index": 113057, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.632-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cad29353-6f7b-4b38-b673-88769fc320e4", + "direction": "outgoing", + "index": 113058, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a33f960-df82-4fd2-b4ef-73abd6afac72", + "direction": "outgoing", + "index": 113059, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ed8d212f-d977-478c-b6d5-60e2c695d031", + "direction": "outgoing", + "index": 113060, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8570ceb7-c759-4532-b0d9-6a6d17626ab6", + "direction": "outgoing", + "index": 113061, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.675-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "50145958-968e-42d9-b3f4-75760924b266", + "direction": "outgoing", + "index": 113062, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.684-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b81c2719-f811-4996-88a0-21c90ad797f1", + "direction": "outgoing", + "index": 113063, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.697-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b557949-4fed-4655-b2d3-655cbf1802c9", + "direction": "outgoing", + "index": 113064, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f75d3aa-3ed7-4757-9735-9ca5b4915f39", + "direction": "outgoing", + "index": 113065, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0cef960d-9ea3-4bb8-adcf-0f35370a032b", + "direction": "outgoing", + "index": 113066, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fc6a2260-9aa1-4eec-8083-68718adb11b0", + "direction": "outgoing", + "index": 113067, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a7711a89-cf30-4fbd-a8cd-17f4206a0ea2\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b71865d8-cc8a-45b8-8dd5-6b30edcd9f2e", + "direction": "outgoing", + "index": 113068, + "result_id": "9914be28-1c1f-4131-9c3c-ee7eaf8cc376", + "status": 200, + "timestamp": "2026-05-22T08:47:45.756-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026status=finished", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:45.518-04:00" + }, + { + "id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "created_at": "2026-05-22T08:47:47.462-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6ec39336-295b-42e9-af79-d8f6652782dd", + "direction": "outgoing", + "index": 113069, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.469-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009", + "verb": "get" + }, + { + "id": "89b8c1c1-aa6d-4964-bd9c-8300b65eae73", + "direction": "outgoing", + "index": 113070, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8c478445-c02b-44d9-beeb-4dbd35f216a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8b4d73b0-5c19-4852-839b-702844af3897", + "direction": "outgoing", + "index": 113071, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.507-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8c478445-c02b-44d9-beeb-4dbd35f216a7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4b351fbc-acae-4b3b-97d8-572749a9cff3", + "direction": "outgoing", + "index": 113072, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009", + "verb": "get" + }, + { + "id": "9351c935-a0bc-4d74-8241-3c70be5cd05e", + "direction": "outgoing", + "index": 113073, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ebd20504-01da-46a9-a4af-cbe3b4e3e010\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7671488e-42e0-4bde-92a6-a4c6aad9d247", + "direction": "outgoing", + "index": 113074, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.546-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ebd20504-01da-46a9-a4af-cbe3b4e3e010\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cec22331-ddfb-42d1-94cc-5b2285614eec", + "direction": "outgoing", + "index": 113075, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.556-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009", + "verb": "get" + }, + { + "id": "cf2dad35-19f7-4600-ad1b-d9f5afdc9065", + "direction": "outgoing", + "index": 113076, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fde09fe5-9e56-41fd-a3c9-c5d14a15e1db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4fb50373-6762-481a-9bb0-527a1561210f", + "direction": "outgoing", + "index": 113077, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fde09fe5-9e56-41fd-a3c9-c5d14a15e1db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c57f805b-26fe-46c2-a3a4-92619f6c5f30", + "direction": "outgoing", + "index": 113078, + "result_id": "65914182-d5ec-48b6-9083-6fa52e57e312", + "status": 200, + "timestamp": "2026-05-22T08:47:47.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026type=99211", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_patient_type_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:47.462-04:00" + }, + { + "id": "7d2ffe7c-600a-45e0-b5f0-1054c79c5e91", + "created_at": "2026-05-22T08:47:47.724-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "207e89fb-a71c-4b7b-82fc-9633ec02a585", + "direction": "outgoing", + "index": 113079, + "result_id": "7d2ffe7c-600a-45e0-b5f0-1054c79c5e91", + "status": 200, + "timestamp": "2026-05-22T08:47:47.726-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:47.724-04:00" + }, + { + "id": "d517711d-e980-4ee8-be56-bd86b129af88", + "created_at": "2026-05-22T08:47:51.969-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7a21c016-babd-4138-86c4-be0df05f3b2b", + "direction": "outgoing", + "index": 113080, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:51.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "0bfa8134-7432-4306-9c2f-cc6819f873d7", + "direction": "outgoing", + "index": 113081, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:51.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=05ea14bf-8180-416d-97b9-0b04f0e83d33\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "68932447-e5e8-495a-a180-a7d225368def", + "direction": "outgoing", + "index": 113082, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=05ea14bf-8180-416d-97b9-0b04f0e83d33\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9cf86fbd-5fcd-43fc-a57b-94b8c9a59829", + "direction": "outgoing", + "index": 113083, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=05ea14bf-8180-416d-97b9-0b04f0e83d33\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a0111cf9-a7a9-4e2a-ad5b-ae95af156d10", + "direction": "outgoing", + "index": 113084, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.048-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=05ea14bf-8180-416d-97b9-0b04f0e83d33\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4de676a0-7053-4722-880c-9375c15b3cd6", + "direction": "outgoing", + "index": 113085, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=05ea14bf-8180-416d-97b9-0b04f0e83d33\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "073be42a-9e19-449f-8ae1-70e45d89c2f6", + "direction": "outgoing", + "index": 113086, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.079-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "c3c15607-f14a-4b79-80fb-be4b8041f28b", + "direction": "outgoing", + "index": 113087, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.091-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d611475f-816c-4bf6-90fc-f00dc760e3bf", + "direction": "outgoing", + "index": 113088, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2506353a-03a0-42fe-a5c8-6c2232234117", + "direction": "outgoing", + "index": 113089, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "248839d3-4b3a-4f7b-bc19-129978faa050", + "direction": "outgoing", + "index": 113090, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1b9c7650-8256-4b12-8dd3-9c9e47f3d2a8", + "direction": "outgoing", + "index": 113091, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "59d6dd4d-77bd-4dbb-8190-8badfbe1dc7c", + "direction": "outgoing", + "index": 113092, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.155-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e417cb46-58c7-4b17-a4ee-112ca67d4190", + "direction": "outgoing", + "index": 113093, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.169-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f5de4bb8-e640-4dfb-b67f-9087d9fdbbca", + "direction": "outgoing", + "index": 113094, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db562a08-7947-4880-aa7e-5e14a7d29af3", + "direction": "outgoing", + "index": 113095, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fce11d04-9595-4c43-8025-8f0687bc2b9f", + "direction": "outgoing", + "index": 113096, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "360daac4-9eae-4ed3-8a82-ebf157ee8dac", + "direction": "outgoing", + "index": 113097, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b88afb03-a7f3-4769-9603-f23ac9da0113", + "direction": "outgoing", + "index": 113098, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f802a47-3c90-4217-ae16-0e2cb8a96e7a\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9d68a5f-38d9-4c9f-9a44-d7b5db635b00", + "direction": "outgoing", + "index": 113099, + "result_id": "d517711d-e980-4ee8-be56-bd86b129af88", + "status": 200, + "timestamp": "2026-05-22T08:47:52.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:47:51.969-04:00" + }, + { + "id": "5e50dc16-6a3a-4fc5-9fc9-0ea2641212dc", + "created_at": "2026-05-22T08:48:01.339-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed", + "type": "info" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#394701000)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410429000)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1711b0e8-ae28-466c-b439-3eff9887746e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:01.339-04:00" + }, + { + "id": "73faae8d-4256-44b9-a36c-6398a777baee", + "created_at": "2026-05-22T08:48:01.681-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:01.681-04:00" + }, + { + "id": "1f82bf0f-a803-437f-b6f8-7620e66fbe5b", + "created_at": "2026-05-22T08:48:01.949-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c286f46c-c9a9-42ea-9f1b-9d7be6fc119a", + "direction": "outgoing", + "index": 113100, + "result_id": "1f82bf0f-a803-437f-b6f8-7620e66fbe5b", + "status": 200, + "timestamp": "2026-05-22T08:48:01.955-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6", + "verb": "get" + }, + { + "id": "b792f326-6a74-40e5-9afb-55196ebbece4", + "direction": "outgoing", + "index": 113101, + "result_id": "1f82bf0f-a803-437f-b6f8-7620e66fbe5b", + "status": 200, + "timestamp": "2026-05-22T08:48:01.978-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter-us_core_v501_encounter_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:01.949-04:00" + }, + { + "id": "51426ecb-0d1c-493b-89c6-f3461c1bbf4c", + "created_at": "2026-05-22T08:48:01.995-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_encounter", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:01.995-04:00" + }, + { + "id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "created_at": "2026-05-22T08:48:02.671-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "629b049f-d47b-496e-9a20-e167e10cf659", + "direction": "outgoing", + "index": 113102, + "result_id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "status": 200, + "timestamp": "2026-05-22T08:48:02.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=85", + "verb": "get" + }, + { + "id": "e8281708-81f4-41f5-84cb-e3b90009ba79", + "direction": "outgoing", + "index": 113103, + "result_id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "status": 200, + "timestamp": "2026-05-22T08:48:02.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355", + "verb": "get" + }, + { + "id": "9fbcd540-e414-46ee-9826-14f76bf99142", + "direction": "outgoing", + "index": 113104, + "result_id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "status": 200, + "timestamp": "2026-05-22T08:48:02.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/_search", + "verb": "post" + }, + { + "id": "5cdd61c5-06d5-421e-aaf2-99d325b4e98d", + "direction": "outgoing", + "index": 113105, + "result_id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "status": 200, + "timestamp": "2026-05-22T08:48:02.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355", + "verb": "get" + }, + { + "id": "23cfd839-5bf1-4b3a-8274-88e4135170e9", + "direction": "outgoing", + "index": 113106, + "result_id": "ae178151-4052-49df-9eef-d7757bb99cf5", + "status": 200, + "timestamp": "2026-05-22T08:48:02.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:02.671-04:00" + }, + { + "id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "created_at": "2026-05-22T08:48:03.436-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2fb73175-0424-4f63-ab91-cd2c77b4ca88", + "direction": "outgoing", + "index": 113107, + "result_id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "status": 200, + "timestamp": "2026-05-22T08:48:03.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07", + "verb": "get" + }, + { + "id": "5feb20eb-8417-4a92-96cf-a77bf084cfcf", + "direction": "outgoing", + "index": 113108, + "result_id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "status": 200, + "timestamp": "2026-05-22T08:48:03.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "4a7ee5c1-094d-458a-a192-924d43f395ba", + "direction": "outgoing", + "index": 113109, + "result_id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "status": 200, + "timestamp": "2026-05-22T08:48:03.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "3d98a2fa-891a-4ed4-92b7-67c20c4ba665", + "direction": "outgoing", + "index": 113110, + "result_id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "status": 200, + "timestamp": "2026-05-22T08:48:03.498-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "b4230e16-79ac-43bc-8a75-a2dcac4cecc3", + "direction": "outgoing", + "index": 113111, + "result_id": "16554426-fe8e-47e8-944d-77d121aaf31d", + "status": 200, + "timestamp": "2026-05-22T08:48:03.511-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_patient_target_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:03.436-04:00" + }, + { + "id": "2502060c-9916-437f-a862-e33c099f07a4", + "created_at": "2026-05-22T08:48:03.637-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a549a94d-89bd-424b-b54f-e17d6c848aed", + "direction": "outgoing", + "index": 113112, + "result_id": "2502060c-9916-437f-a862-e33c099f07a4", + "status": 200, + "timestamp": "2026-05-22T08:48:03.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_patient_lifecycle_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:03.637-04:00" + }, + { + "id": "67629e6c-8b48-4c51-834b-37d94f0ed8f6", + "created_at": "2026-05-22T08:48:03.886-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "98e51b6f-589f-42ac-9636-ccbdb151ccf4", + "direction": "outgoing", + "index": 113113, + "result_id": "67629e6c-8b48-4c51-834b-37d94f0ed8f6", + "status": 400, + "timestamp": "2026-05-22T08:48:03.888-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026patient=355", + "verb": "get" + }, + { + "id": "402015c8-ad8c-4763-be99-338713403629", + "direction": "outgoing", + "index": 113114, + "result_id": "67629e6c-8b48-4c51-834b-37d94f0ed8f6", + "status": 400, + "timestamp": "2026-05-22T08:48:03.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026lifecycle-status=proposed\u0026patient=355", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_patient_description_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:03.886-04:00" + }, + { + "id": "9e06a4d9-f033-482e-838e-a653db87dfaf", + "created_at": "2026-05-22T08:48:04.411-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "426e2292-2a86-4ad5-9d8c-d051233e96b4", + "direction": "outgoing", + "index": 113115, + "result_id": "9e06a4d9-f033-482e-838e-a653db87dfaf", + "status": 200, + "timestamp": "2026-05-22T08:48:04.420-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:04.411-04:00" + }, + { + "id": "b501d71a-fa21-4306-990d-0bda629f7494", + "created_at": "2026-05-22T08:48:04.935-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5d93e738-548d-4741-8997-f0d9440f1cac", + "direction": "outgoing", + "index": 113116, + "result_id": "b501d71a-fa21-4306-990d-0bda629f7494", + "status": 200, + "timestamp": "2026-05-22T08:48:04.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "7dc14e4c-9835-4850-98aa-d32aae273da7", + "direction": "outgoing", + "index": 113117, + "result_id": "b501d71a-fa21-4306-990d-0bda629f7494", + "status": 200, + "timestamp": "2026-05-22T08:48:04.958-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "958da5c1-e6fc-4b5d-83ef-eb9814e22f6b", + "direction": "outgoing", + "index": 113118, + "result_id": "b501d71a-fa21-4306-990d-0bda629f7494", + "status": 200, + "timestamp": "2026-05-22T08:48:04.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:04.935-04:00" + }, + { + "id": "a67a585c-4745-4b8e-a8f8-37d3bf7af5f3", + "created_at": "2026-05-22T08:48:05.204-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:05.204-04:00" + }, + { + "id": "738e8832-f993-4c24-84bb-1e51ec88e11f", + "created_at": "2026-05-22T08:48:05.213-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:05.213-04:00" + }, + { + "id": "a9621601-22b5-4444-95c1-cc268d698c4b", + "created_at": "2026-05-22T08:48:05.220-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal-us_core_v501_goal_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:05.220-04:00" + }, + { + "id": "981abc67-98f9-4c7d-9dbb-7fb890ad33a7", + "created_at": "2026-05-22T08:48:05.223-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_goal", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:05.223-04:00" + }, + { + "id": "76c3ce70-4a09-4d98-818a-115186314791", + "created_at": "2026-05-22T08:48:08.097-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "62434a41-31bf-4871-9361-77d8965d2672", + "direction": "outgoing", + "index": 113119, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85", + "verb": "get" + }, + { + "id": "6e15e3ef-01c8-41a4-8f71-016615ed4dca", + "direction": "outgoing", + "index": 113120, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0042d428-0979-4000-b0d5-3c161fb3b80f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "34e44b09-a311-463b-8917-30401433ae9d", + "direction": "outgoing", + "index": 113121, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/_search", + "verb": "post" + }, + { + "id": "8a676bc6-80d9-429a-b440-d34c17481795", + "direction": "outgoing", + "index": 113122, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0042d428-0979-4000-b0d5-3c161fb3b80f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8dc94fc-ce10-4303-b5eb-0dd17f044a34", + "direction": "outgoing", + "index": 113123, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.157-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85", + "verb": "get" + }, + { + "id": "fbf1bcc3-8b38-4912-81a4-aa5cb09765d1", + "direction": "outgoing", + "index": 113124, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.168-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=96556522-3842-4d08-b0d1-ab28cf8b473b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fc436125-97e2-47e0-8675-dbf1fcf47c0c", + "direction": "outgoing", + "index": 113125, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.180-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355", + "verb": "get" + }, + { + "id": "f38ad9d3-b6f7-433b-8b40-808e61cef51b", + "direction": "outgoing", + "index": 113126, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9390912e-e13c-4a0a-b6da-cb400d98672e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "82efbced-eb10-4cf4-b49f-2d0027104fb2", + "direction": "outgoing", + "index": 113127, + "result_id": "76c3ce70-4a09-4d98-818a-115186314791", + "status": 200, + "timestamp": "2026-05-22T08:48:08.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:08.097-04:00" + }, + { + "id": "35dad32e-0f3d-406a-babe-d0bd7de66111", + "created_at": "2026-05-22T08:48:09.123-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "537515d9-28ef-4e3d-8f9c-a19156625cd3", + "direction": "outgoing", + "index": 113128, + "result_id": "35dad32e-0f3d-406a-babe-d0bd7de66111", + "status": 200, + "timestamp": "2026-05-22T08:48:09.125-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "69cf2e95-4d3d-4fc0-8111-2fa09433797a", + "direction": "outgoing", + "index": 113129, + "result_id": "35dad32e-0f3d-406a-babe-d0bd7de66111", + "status": 200, + "timestamp": "2026-05-22T08:48:09.140-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=55266c8a-e035-4dfb-a294-aecc9b7fc76c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a3e3b79b-7bdd-4e98-8869-3958348d6f98", + "direction": "outgoing", + "index": 113130, + "result_id": "35dad32e-0f3d-406a-babe-d0bd7de66111", + "status": 200, + "timestamp": "2026-05-22T08:48:09.154-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:09.123-04:00" + }, + { + "id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "created_at": "2026-05-22T08:48:11.239-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3d54f184-0939-4fad-a704-6b33107b222e", + "direction": "outgoing", + "index": 113131, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.244-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "76fafa40-5d01-4520-9b6a-bf2e8957b1d9", + "direction": "outgoing", + "index": 113132, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.259-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0b67bbd0-08c3-43f1-91e6-57db57f0733e", + "direction": "outgoing", + "index": 113133, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.271-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae363c87-adcf-42dc-b23a-9cf3f2ae56fc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e9ea2e6f-34da-440d-8469-ad2eeef72c49", + "direction": "outgoing", + "index": 113134, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.285-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f7f5ae3c-f5f1-4eed-a698-e384c354afba", + "direction": "outgoing", + "index": 113135, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=42928a1b-f426-4ca1-9158-8bf5e3c2a51d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2f832052-2988-4811-9d9d-d2dce879e611", + "direction": "outgoing", + "index": 113136, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.311-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5b234b18-fd8c-4ef9-9bde-4cac256083bc", + "direction": "outgoing", + "index": 113137, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9117047b-217d-45bf-8d20-fc38b021348a", + "direction": "outgoing", + "index": 113138, + "result_id": "e9863123-922c-41ad-beb0-5cb82b74d057", + "status": 200, + "timestamp": "2026-05-22T08:48:11.333-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_patient_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:11.239-04:00" + }, + { + "id": "ca5b428b-522f-4086-a65f-dd815f2ecad4", + "created_at": "2026-05-22T08:48:11.459-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6c1df72b-0ede-4739-9a9b-0f271493847f", + "direction": "outgoing", + "index": 113139, + "result_id": "ca5b428b-522f-4086-a65f-dd815f2ecad4", + "status": 200, + "timestamp": "2026-05-22T08:48:11.462-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:11.459-04:00" + }, + { + "id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "created_at": "2026-05-22T08:48:13.407-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2605d317-5633-47ca-8b34-060a3fff27a1", + "direction": "outgoing", + "index": 113140, + "result_id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "status": 200, + "timestamp": "2026-05-22T08:48:13.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "375a2923-3d39-4d77-a3d5-4b56bd86681f", + "direction": "outgoing", + "index": 113141, + "result_id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "status": 200, + "timestamp": "2026-05-22T08:48:13.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce90d942-b349-4b4e-b190-94741f453cff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b31f97f5-d318-464f-bdcd-16c668c32159", + "direction": "outgoing", + "index": 113142, + "result_id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "status": 200, + "timestamp": "2026-05-22T08:48:13.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "608be8ea-47a3-4e9e-b2fe-37e8d6c20e6f", + "direction": "outgoing", + "index": 113143, + "result_id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "status": 200, + "timestamp": "2026-05-22T08:48:13.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59af5599-0f50-44ed-b956-c45bad184546\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "622c8852-d0e0-44be-9d63-30e6648eca83", + "direction": "outgoing", + "index": 113144, + "result_id": "b04f5997-c4af-4ba6-a2f2-5a78dfacb5e8", + "status": 200, + "timestamp": "2026-05-22T08:48:13.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:13.407-04:00" + }, + { + "id": "4c18a608-aac1-4764-9708-634cd9f4e916", + "created_at": "2026-05-22T08:48:16.021-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#113)", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#113)", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization.vaccineCode.coding[0].system: A definition for CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20220412' could not be found, so the code cannot be validated. Valid versions: 20250715", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is 'Influenza, split virus, trivalent, PF' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20210630), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_code_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "fail", + "result_message": "Resource does not conform to the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-immunization|5.0.1", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:16.021-04:00" + }, + { + "id": "462be8f7-ceff-4f87-940b-611c164d6b5b", + "created_at": "2026-05-22T08:48:16.242-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:16.242-04:00" + }, + { + "id": "4673f57e-5c0a-440f-8387-2f8dbf28ca89", + "created_at": "2026-05-22T08:48:16.245-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization-us_core_v501_immunization_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:16.245-04:00" + }, + { + "id": "d1d827b0-e9bf-490e-8e68-1a2a34cf5d80", + "created_at": "2026-05-22T08:48:16.246-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_immunization", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:16.246-04:00" + }, + { + "id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "created_at": "2026-05-22T08:48:23.681-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5af4440c-be4c-4d6f-b503-90ff1703f8a0", + "direction": "outgoing", + "index": 113145, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "a8230239-3641-4929-b469-3684bc052872", + "direction": "outgoing", + "index": 113146, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.710-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "16cd7328-fec8-4044-b2d0-076b17448a9e", + "direction": "outgoing", + "index": 113147, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "7e86c3b7-a303-4491-b98c-4c450de1053e", + "direction": "outgoing", + "index": 113148, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8696184f-6bda-4768-b26f-a6b561013e6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1824fa74-de53-4a9a-a350-7dce50f8bd4e", + "direction": "outgoing", + "index": 113149, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search", + "verb": "post" + }, + { + "id": "31290a75-0bdb-4420-9162-b518aa33f33a", + "direction": "outgoing", + "index": 113150, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.765-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8696184f-6bda-4768-b26f-a6b561013e6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "215e2e00-a9e6-4686-bdfb-f6fde15edbd4", + "direction": "outgoing", + "index": 113151, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.778-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "91db2d2e-0426-4294-8650-43f83caf302e", + "direction": "outgoing", + "index": 113152, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.792-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=de6821a7-9dd5-4366-9774-50b714197bbf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69d2cb86-2511-4c8a-aa5e-f5cc4d1a62b3", + "direction": "outgoing", + "index": 113153, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "a5d25861-e315-4e9b-b0a9-2ebc6f23ac89", + "direction": "outgoing", + "index": 113154, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=68e3f833-9ebc-4840-884f-3af92fdbaaa3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8f0feb8f-d263-4fd2-9819-db1eb8c5de46", + "direction": "outgoing", + "index": 113155, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "2751dfb6-fb98-471c-b808-742bf8974751", + "direction": "outgoing", + "index": 113156, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.846-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "eccefe7a-29a5-4ffe-ba2a-8b8fc80217ae", + "direction": "outgoing", + "index": 113157, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.858-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "6ef5697a-3e06-4141-8e1a-bad6f8f4bef6", + "direction": "outgoing", + "index": 113158, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "7ac79682-ae29-4be2-b9a5-c73b8593166c", + "direction": "outgoing", + "index": 113159, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.879-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "40ebcbb7-1248-4c10-bc73-a8f35142a83d", + "direction": "outgoing", + "index": 113160, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "3241c767-b559-4212-a3ec-50420563adea", + "direction": "outgoing", + "index": 113161, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.929-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "36f959c6-8a19-42f1-a028-33c8ac11333c", + "direction": "outgoing", + "index": 113162, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "228e272a-c62f-4135-8527-08ee16dbd30a", + "direction": "outgoing", + "index": 113163, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.953-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=171fb88a-ab55-4739-87bc-f27f155489aa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7f7f6a86-c82b-4d94-9bed-a83667005562", + "direction": "outgoing", + "index": 113164, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "57efaa69-be6b-4401-b1e3-324b40db9fe5", + "direction": "outgoing", + "index": 113165, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "77ea249f-e778-4e69-a5ff-355920827bb4", + "direction": "outgoing", + "index": 113166, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.987-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "59246a7d-4352-41f5-a240-0b1131959d2c", + "direction": "outgoing", + "index": 113167, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:23.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "9e026eb6-ed1f-45d5-8846-b1e463a56c35", + "direction": "outgoing", + "index": 113168, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.010-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355", + "verb": "get" + }, + { + "id": "0c8eb9b0-167b-43c8-838a-63c72124333f", + "direction": "outgoing", + "index": 113169, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.022-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=907", + "verb": "get" + }, + { + "id": "50f78378-764f-4457-8714-2584a5f83f59", + "direction": "outgoing", + "index": 113170, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=907", + "verb": "get" + }, + { + "id": "85536c11-af3a-407f-ac77-0a31ba3a9178", + "direction": "outgoing", + "index": 113171, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=907", + "verb": "get" + }, + { + "id": "54223445-cbf3-47ea-ada6-d56873d52f96", + "direction": "outgoing", + "index": 113172, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.067-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=907", + "verb": "get" + }, + { + "id": "d9535bfb-b089-48a7-bb66-e3d7a97f0919", + "direction": "outgoing", + "index": 113173, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=907", + "verb": "get" + }, + { + "id": "9d9b5604-fb91-46db-aa1e-ca4f0f3612e5", + "direction": "outgoing", + "index": 113174, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=907", + "verb": "get" + }, + { + "id": "7a3c935a-df29-42a7-8a6f-3d2de04f54c8", + "direction": "outgoing", + "index": 113175, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.105-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=907", + "verb": "get" + }, + { + "id": "8d947eec-570c-4b09-be90-07c3753b7878", + "direction": "outgoing", + "index": 113176, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.117-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=907", + "verb": "get" + }, + { + "id": "3d72fcb9-0c5a-47f0-8638-667003675745", + "direction": "outgoing", + "index": 113177, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + }, + { + "id": "cc3000ff-a525-4dfe-8b59-825fc894cade", + "direction": "outgoing", + "index": 113178, + "result_id": "c727db0e-027d-4952-96c3-4acfe0cb3b6f", + "status": 200, + "timestamp": "2026-05-22T08:48:24.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e5cadef2-2d4c-4eaa-bf1b-4b6ed621f12d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_patient_intent_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:23.681-04:00" + }, + { + "id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "created_at": "2026-05-22T08:48:25.478-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b0c03535-dfe3-4424-a367-12b4e2c73492", + "direction": "outgoing", + "index": 113179, + "result_id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "status": 200, + "timestamp": "2026-05-22T08:48:25.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped", + "verb": "get" + }, + { + "id": "f4ed8e50-4309-448a-a1c6-38749b965256", + "direction": "outgoing", + "index": 113180, + "result_id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "status": 200, + "timestamp": "2026-05-22T08:48:25.506-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=572a4a04-e619-46b1-822c-8583b59aaf3f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ae4f8e5c-1f19-4bf4-8d99-7d4844bc159f", + "direction": "outgoing", + "index": 113181, + "result_id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "status": 200, + "timestamp": "2026-05-22T08:48:25.561-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped", + "verb": "get" + }, + { + "id": "f5754024-3fab-4d28-9388-27e13e95a181", + "direction": "outgoing", + "index": 113182, + "result_id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "status": 200, + "timestamp": "2026-05-22T08:48:25.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown", + "verb": "get" + }, + { + "id": "4abc70e4-e8d8-4a78-bd41-98786b5be584", + "direction": "outgoing", + "index": 113183, + "result_id": "8e91dd90-94d7-4e61-a048-a4a9f50ad42b", + "status": 200, + "timestamp": "2026-05-22T08:48:25.583-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=111fc79e-0445-447e-bf23-2f2bfd3e8b09\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_patient_intent_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:25.478-04:00" + }, + { + "id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "created_at": "2026-05-22T08:48:27.979-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1138cce3-3000-4b5a-83ef-f8ce35d871fb", + "direction": "outgoing", + "index": 113184, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:27.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "e3b70f2d-b9cd-42c1-9637-182294f5b589", + "direction": "outgoing", + "index": 113185, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.006-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "4593458f-e3ba-471d-b863-21a1736b7baa", + "direction": "outgoing", + "index": 113186, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.023-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=adbf9ab3-da2f-429a-847b-ca89e66ca53c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7557be1-ab4b-4ba5-89df-215a1cb0d0bf", + "direction": "outgoing", + "index": 113187, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "0cfd8ed5-7539-4bec-8f70-fc40d2b52c84", + "direction": "outgoing", + "index": 113188, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.067-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=baa71da8-b149-447e-a8d4-7ce4e4d9057a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d4416872-3185-4495-80b1-ac7799bc38cb", + "direction": "outgoing", + "index": 113189, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.078-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "edb11585-1095-42ca-a67d-9e4f09f58fa6", + "direction": "outgoing", + "index": 113190, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "fd180a6a-ca4c-4100-bdf3-be0fa4029bcb", + "direction": "outgoing", + "index": 113191, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.101-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "f7d873d5-b76b-45e0-bb75-49fb81576626", + "direction": "outgoing", + "index": 113192, + "result_id": "9d13cdff-b12b-4478-bafc-dad4e75f785a", + "status": 200, + "timestamp": "2026-05-22T08:48:28.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_patient_intent_authoredon_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:27.979-04:00" + }, + { + "id": "b1e2ab93-c4f3-49b6-928c-9ee159317a25", + "created_at": "2026-05-22T08:48:28.517-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ba770cf0-dadc-4370-a380-885d69f28636", + "direction": "outgoing", + "index": 113193, + "result_id": "b1e2ab93-c4f3-49b6-928c-9ee159317a25", + "status": 200, + "timestamp": "2026-05-22T08:48:28.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "acba3311-3ee4-4b0d-bb72-a960018da425", + "direction": "outgoing", + "index": 113194, + "result_id": "b1e2ab93-c4f3-49b6-928c-9ee159317a25", + "status": 200, + "timestamp": "2026-05-22T08:48:28.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "47d1af89-a8b9-4d1f-8965-c65a14689695", + "direction": "outgoing", + "index": 113195, + "result_id": "b1e2ab93-c4f3-49b6-928c-9ee159317a25", + "status": 200, + "timestamp": "2026-05-22T08:48:28.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_patient_intent_encounter_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:28.517-04:00" + }, + { + "id": "e8e3911e-137a-4d4e-8b24-87b33e456566", + "created_at": "2026-05-22T08:48:28.691-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0809292d-b93d-4c22-a2ed-f04dbad42dde", + "direction": "outgoing", + "index": 113196, + "result_id": "e8e3911e-137a-4d4e-8b24-87b33e456566", + "status": 200, + "timestamp": "2026-05-22T08:48:28.693-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:28.691-04:00" + }, + { + "id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "created_at": "2026-05-22T08:48:33.741-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0936069b-a361-47b9-9ca4-e0154d53d765", + "direction": "outgoing", + "index": 113197, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.746-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "a8d83f87-14e9-42d3-b724-01b46311348c", + "direction": "outgoing", + "index": 113198, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.771-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "7e3fa4bd-a975-487c-9d19-4b4bfcaf7f0b", + "direction": "outgoing", + "index": 113199, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "a15234e7-ee4b-4581-9da5-023a76693794", + "direction": "outgoing", + "index": 113200, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.802-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8efe5370-9986-43a1-aadd-adea50a030d7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "239c9b3c-7185-47d4-b8be-482e2e4c58aa", + "direction": "outgoing", + "index": 113201, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "94638d5d-f588-40d7-acce-359602aa82fb", + "direction": "outgoing", + "index": 113202, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "4f6c706c-93aa-4194-8824-717b3eae3483", + "direction": "outgoing", + "index": 113203, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.847-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "1da8932c-17b4-4a92-87b5-e74ea8a33e3a", + "direction": "outgoing", + "index": 113204, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "0261e9e8-1544-4a3e-8aa6-fbc4f253b414", + "direction": "outgoing", + "index": 113205, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "415f83d8-4a33-46cf-8d95-35c9a4b4cc8e", + "direction": "outgoing", + "index": 113206, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.885-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "e8845ac5-57c9-4b97-82d6-b9a334633303", + "direction": "outgoing", + "index": 113207, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "fa26ee66-1a46-4d23-9d1d-1c2edda841bc", + "direction": "outgoing", + "index": 113208, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "9dc7c664-1d80-4c4f-b9a2-ba2e40941923", + "direction": "outgoing", + "index": 113209, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8b158e46-7109-4911-9bfd-6e5923e9aab9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86284677-3afb-4e96-9fec-26c451c73d3e", + "direction": "outgoing", + "index": 113210, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.940-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "f7753b96-dd94-4bb1-aa1b-d0dc0a62351c", + "direction": "outgoing", + "index": 113211, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.952-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "9b747a97-9b86-4d5d-9c9a-d8a45969bbeb", + "direction": "outgoing", + "index": 113212, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "fc4452c1-7810-4980-9b7e-f09c18436661", + "direction": "outgoing", + "index": 113213, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "d44413ba-6b23-4af7-9fdd-affec6aca656", + "direction": "outgoing", + "index": 113214, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:33.987-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355", + "verb": "get" + }, + { + "id": "b36ace7b-c676-4f65-89a2-e3d09d591c76", + "direction": "outgoing", + "index": 113215, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=907", + "verb": "get" + }, + { + "id": "f35e19a0-0ae0-4536-a628-3eefea09b9bc", + "direction": "outgoing", + "index": 113216, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.013-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=907", + "verb": "get" + }, + { + "id": "c211dd9d-8178-40de-be5d-7328c3217ee6", + "direction": "outgoing", + "index": 113217, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=907", + "verb": "get" + }, + { + "id": "f3cd382d-18a6-4e52-a900-b0cde90bb671", + "direction": "outgoing", + "index": 113218, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.041-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=907", + "verb": "get" + }, + { + "id": "2c9a59ad-38b9-46bf-ad50-40caab7d0a0b", + "direction": "outgoing", + "index": 113219, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.055-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=907", + "verb": "get" + }, + { + "id": "647f19fd-8cfc-49bd-aa51-c48861790c12", + "direction": "outgoing", + "index": 113220, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.070-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=907", + "verb": "get" + }, + { + "id": "3e247dcf-e7f1-425b-bc8e-66830657f096", + "direction": "outgoing", + "index": 113221, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.082-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=907", + "verb": "get" + }, + { + "id": "779f0963-21b2-4dd4-af46-2fbdb13b5f11", + "direction": "outgoing", + "index": 113222, + "result_id": "da6403ab-8ce1-4887-9fc2-bdc84fdb09d0", + "status": 200, + "timestamp": "2026-05-22T08:48:34.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:33.741-04:00" + }, + { + "id": "8d968091-2196-4a64-8c66-cbf21c3b5d53", + "created_at": "2026-05-22T08:48:39.186-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication-adherence", + "type": "info" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:39.186-04:00" + }, + { + "id": "8ab805e2-f989-4fdb-8793-392b0e6ce720", + "created_at": "2026-05-22T08:48:39.630-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:39.630-04:00" + }, + { + "id": "5b992d8a-74fb-4d06-b6af-8076a4f98c29", + "created_at": "2026-05-22T08:48:39.650-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:39.650-04:00" + }, + { + "id": "f9dcc9b5-4963-48c5-b3a4-ee281f5144d2", + "created_at": "2026-05-22T08:48:39.788-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2850fd84-8cdb-4365-8557-f04a44db7135", + "direction": "outgoing", + "index": 113223, + "result_id": "f9dcc9b5-4963-48c5-b3a4-ee281f5144d2", + "status": 200, + "timestamp": "2026-05-22T08:48:39.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request-us_core_v501_medication_request_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:39.788-04:00" + }, + { + "id": "1c5160c3-51a3-49b5-9e18-bc63e4481c34", + "created_at": "2026-05-22T08:48:39.817-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_medication_request", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:39.817-04:00" + }, + { + "id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "created_at": "2026-05-22T08:48:40.714-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e81cd2ad-1dba-4337-bab5-cce1472e074a", + "direction": "outgoing", + "index": 113224, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.720-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "f84470aa-a44b-421d-a04a-a09900af88b7", + "direction": "outgoing", + "index": 113225, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.743-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "887e9b35-7f48-44a2-95eb-822e62729f69", + "direction": "outgoing", + "index": 113226, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "43db755e-df95-4e59-99ea-4295ab8844fd", + "direction": "outgoing", + "index": 113227, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.774-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "e3ca37df-710c-4604-8d2e-fa96e53200fb", + "direction": "outgoing", + "index": 113228, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "43a4b87e-c0e2-47a1-bc38-0eb3ef078067", + "direction": "outgoing", + "index": 113229, + "result_id": "97061fb6-e669-4225-a6a1-5939ea5e672a", + "status": 200, + "timestamp": "2026-05-22T08:48:40.799-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:40.714-04:00" + }, + { + "id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "created_at": "2026-05-22T08:48:41.783-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "278f047a-a915-4598-afe9-0ad1c977044a", + "direction": "outgoing", + "index": 113230, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c0e8839c-86ca-43f8-b7e0-1d2a87b463c8", + "direction": "outgoing", + "index": 113231, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9a3e733f-9fda-41b1-837a-b8ba4c8eee0b", + "direction": "outgoing", + "index": 113232, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "908796c0-1d10-4e3a-92ed-e73c85f0942e", + "direction": "outgoing", + "index": 113233, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.832-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "361abad3-916f-4ce9-be7a-b72b8926d8b9", + "direction": "outgoing", + "index": 113234, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0847fc07-64d7-4183-b2fa-682e0dee1eb6", + "direction": "outgoing", + "index": 113235, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.859-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a94b247d-b271-4156-bcb9-5ad803f6f467", + "direction": "outgoing", + "index": 113236, + "result_id": "8d786842-3a3a-40e4-9221-b20080bb7941", + "status": 200, + "timestamp": "2026-05-22T08:48:41.872-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:41.783-04:00" + }, + { + "id": "589ce68c-7e98-4a05-a137-50d0c501ace2", + "created_at": "2026-05-22T08:48:42.254-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "35732e2e-0225-4cc3-8bf9-bdecd2daabec", + "direction": "outgoing", + "index": 113237, + "result_id": "589ce68c-7e98-4a05-a137-50d0c501ace2", + "status": 200, + "timestamp": "2026-05-22T08:48:42.259-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "36fd9906-2d84-49fc-aec7-8d696b908505", + "direction": "outgoing", + "index": 113238, + "result_id": "589ce68c-7e98-4a05-a137-50d0c501ace2", + "status": 200, + "timestamp": "2026-05-22T08:48:42.278-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "7f750f89-7cf7-4f04-b0a2-ff2b7809c833", + "direction": "outgoing", + "index": 113239, + "result_id": "589ce68c-7e98-4a05-a137-50d0c501ace2", + "status": 200, + "timestamp": "2026-05-22T08:48:42.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:42.254-04:00" + }, + { + "id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "created_at": "2026-05-22T08:48:43.289-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "16c100d0-3f49-4836-a623-c0ff88d41e7c", + "direction": "outgoing", + "index": 113240, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "06450e44-daa2-49be-abd1-6d9798b2bbc0", + "direction": "outgoing", + "index": 113241, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "85798536-3317-492e-b12f-45708b6b57b8", + "direction": "outgoing", + "index": 113242, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.327-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "eff56a70-2b12-4230-aca1-c7c9a9eb665b", + "direction": "outgoing", + "index": 113243, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.339-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d77ce857-03b9-44e3-b2a7-c9bf564d8f2d", + "direction": "outgoing", + "index": 113244, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5d21e26e-0468-40c8-9906-9f5221570deb", + "direction": "outgoing", + "index": 113245, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.380-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0b0468f7-de6a-4ffe-ac01-54638feff268", + "direction": "outgoing", + "index": 113246, + "result_id": "2651dab7-4fa1-45ca-a999-2205386a4b16", + "status": 200, + "timestamp": "2026-05-22T08:48:43.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:43.289-04:00" + }, + { + "id": "524516dc-48f4-4679-a770-654509b510ff", + "created_at": "2026-05-22T08:48:43.960-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4d9bd377-6385-4575-a942-0486ad9e83fe", + "direction": "outgoing", + "index": 113247, + "result_id": "524516dc-48f4-4679-a770-654509b510ff", + "status": 200, + "timestamp": "2026-05-22T08:48:43.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "fded0aa9-0618-44a6-b5fc-ec17d01d3b02", + "direction": "outgoing", + "index": 113248, + "result_id": "524516dc-48f4-4679-a770-654509b510ff", + "status": 200, + "timestamp": "2026-05-22T08:48:43.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "18065490-9f4d-46d8-9d96-a3e52a75b561", + "direction": "outgoing", + "index": 113249, + "result_id": "524516dc-48f4-4679-a770-654509b510ff", + "status": 200, + "timestamp": "2026-05-22T08:48:43.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "4fe75398-1382-4d24-91b0-580904269123", + "direction": "outgoing", + "index": 113250, + "result_id": "524516dc-48f4-4679-a770-654509b510ff", + "status": 200, + "timestamp": "2026-05-22T08:48:44.009-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:43.960-04:00" + }, + { + "id": "7094d6fb-dd45-433c-a423-ada33a9e18bf", + "created_at": "2026-05-22T08:48:44.137-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4c47192a-e6a0-48a3-9954-55f2ee1a6988", + "direction": "outgoing", + "index": 113251, + "result_id": "7094d6fb-dd45-433c-a423-ada33a9e18bf", + "status": 200, + "timestamp": "2026-05-22T08:48:44.138-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:44.137-04:00" + }, + { + "id": "b5bd5dd9-1cb0-4823-b91f-cc12bdfde063", + "created_at": "2026-05-22T08:48:44.794-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d578e833-8908-4d45-b6a2-bc37d603c7d4", + "direction": "outgoing", + "index": 113252, + "result_id": "b5bd5dd9-1cb0-4823-b91f-cc12bdfde063", + "status": 200, + "timestamp": "2026-05-22T08:48:44.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "43b630b1-d7e3-4fb3-b6d2-f9d6560ecc1a", + "direction": "outgoing", + "index": 113253, + "result_id": "b5bd5dd9-1cb0-4823-b91f-cc12bdfde063", + "status": 200, + "timestamp": "2026-05-22T08:48:44.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "308baf53-0353-48bb-8e19-96ed60a5ede0", + "direction": "outgoing", + "index": 113254, + "result_id": "b5bd5dd9-1cb0-4823-b91f-cc12bdfde063", + "status": 200, + "timestamp": "2026-05-22T08:48:44.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:44.794-04:00" + }, + { + "id": "3aa811a5-d352-423b-841c-0f114ba1bbbe", + "created_at": "2026-05-22T08:48:46.992-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:46.992-04:00" + }, + { + "id": "3c981489-ab98-44d4-b71e-e1c0a4f27a6c", + "created_at": "2026-05-22T08:48:47.036-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:47.036-04:00" + }, + { + "id": "29ffa300-165d-4990-979d-c6b6183f9414", + "created_at": "2026-05-22T08:48:47.039-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab-us_core_v501_observation_lab_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:47.039-04:00" + }, + { + "id": "c20d078d-b4f3-4a3c-9023-b58448c938aa", + "created_at": "2026-05-22T08:48:47.040-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_lab", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:47.040-04:00" + }, + { + "id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "created_at": "2026-05-22T08:48:47.914-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9f170497-6156-4d61-97cb-f2fe77079149", + "direction": "outgoing", + "index": 113255, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:47.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85", + "verb": "get" + }, + { + "id": "2e11313e-27c9-479b-bec9-ee2f9602836b", + "direction": "outgoing", + "index": 113256, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:47.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "2d4bb291-17d0-467f-8519-112cdea0eb46", + "direction": "outgoing", + "index": 113257, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:47.962-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "8cd121b8-b010-48b4-b153-45c1309e716f", + "direction": "outgoing", + "index": 113258, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:47.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "736b3c25-fa22-4cc0-bfe7-1442f8c7a0a8", + "direction": "outgoing", + "index": 113259, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:47.989-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355", + "verb": "get" + }, + { + "id": "ec658129-e6c5-4309-9760-243a90101fb3", + "direction": "outgoing", + "index": 113260, + "result_id": "7a9e8f2b-5f71-4c65-8888-5e716fad5f58", + "status": 200, + "timestamp": "2026-05-22T08:48:48.003-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:47.914-04:00" + }, + { + "id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "created_at": "2026-05-22T08:48:49.066-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "54808679-5f4b-4c4f-abc3-c7bc90dd9c48", + "direction": "outgoing", + "index": 113261, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.071-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9cfb87d8-f3e6-4066-b440-403899c48998", + "direction": "outgoing", + "index": 113262, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.092-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5b84a318-bea6-4e46-908a-3241f9b6fa25", + "direction": "outgoing", + "index": 113263, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "49a6d657-8ab6-4ad0-986e-c0a13e45b531", + "direction": "outgoing", + "index": 113264, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2b3f4baf-ff8e-4235-8608-cc638e0c6128", + "direction": "outgoing", + "index": 113265, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.130-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "da4177bb-7c76-4f7c-8454-6caca30ecfb1", + "direction": "outgoing", + "index": 113266, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.142-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c9bf0ad6-fd03-48e3-ac82-e6638e73714c", + "direction": "outgoing", + "index": 113267, + "result_id": "12f47e88-a60a-43b9-9918-dd7d17e10a7d", + "status": 200, + "timestamp": "2026-05-22T08:48:49.155-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:49.066-04:00" + }, + { + "id": "fb605fba-6814-4019-bdcf-10d6e42d3da9", + "created_at": "2026-05-22T08:48:49.536-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c1b693c0-88e2-4b2e-b2a9-7ddfa06aaaf1", + "direction": "outgoing", + "index": 113268, + "result_id": "fb605fba-6814-4019-bdcf-10d6e42d3da9", + "status": 200, + "timestamp": "2026-05-22T08:48:49.540-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "e6ca2647-0955-4c00-9ad5-7b6d13cfd7e3", + "direction": "outgoing", + "index": 113269, + "result_id": "fb605fba-6814-4019-bdcf-10d6e42d3da9", + "status": 200, + "timestamp": "2026-05-22T08:48:49.556-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "19074996-ca94-4a20-8160-29b0db4d96cc", + "direction": "outgoing", + "index": 113270, + "result_id": "fb605fba-6814-4019-bdcf-10d6e42d3da9", + "status": 200, + "timestamp": "2026-05-22T08:48:49.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:49.536-04:00" + }, + { + "id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "created_at": "2026-05-22T08:48:50.541-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "56a12cd4-7ab6-40ae-a132-7898bc133b6d", + "direction": "outgoing", + "index": 113271, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6f7b3890-b051-4b67-a5a6-707d6e5ea25d", + "direction": "outgoing", + "index": 113272, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f9a247df-2d30-4df5-955f-9ce5b7ba820a", + "direction": "outgoing", + "index": 113273, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9dcce992-9274-4703-acce-877689f91ac0", + "direction": "outgoing", + "index": 113274, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b50ce52d-cb9c-429d-8563-e67032c241e5", + "direction": "outgoing", + "index": 113275, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.595-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c511edf6-5aed-45c2-bd74-1d2590c192ab", + "direction": "outgoing", + "index": 113276, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "03b0685a-104e-4ab5-a910-a96313820c41", + "direction": "outgoing", + "index": 113277, + "result_id": "fa1793a2-a9b7-4548-8aa4-8817d3066f5f", + "status": 200, + "timestamp": "2026-05-22T08:48:50.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:50.541-04:00" + }, + { + "id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "created_at": "2026-05-22T08:48:52.822-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "48d2b922-432b-429d-9720-66bd1115916c", + "direction": "outgoing", + "index": 113278, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.827-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "5661e07b-f4e0-482b-83b6-f957e40c6de8", + "direction": "outgoing", + "index": 113279, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.849-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "8be4cd70-6e37-4c9c-a542-7723425b5756", + "direction": "outgoing", + "index": 113280, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "c53ce9fd-83c7-478c-8dec-07704f1db057", + "direction": "outgoing", + "index": 113281, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.878-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e1b6c220-4b4c-489f-a992-73131672401e", + "direction": "outgoing", + "index": 113282, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.891-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "436695ad-1594-41bf-91d9-078cd52885d8", + "direction": "outgoing", + "index": 113283, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.904-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4513f4c6-204c-4c6b-8c1d-553fed75d1f8", + "direction": "outgoing", + "index": 113284, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.915-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "014b685d-50d6-499b-a90a-bb1b847d25e9", + "direction": "outgoing", + "index": 113285, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.927-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ccde3a39-5a35-4b2d-b004-341e73805610", + "direction": "outgoing", + "index": 113286, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40c0b83b-e145-46f4-9c59-cd4cf1536fe5", + "direction": "outgoing", + "index": 113287, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "173e8f26-16b4-47f8-92c3-4d4db5e4a3e9", + "direction": "outgoing", + "index": 113288, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.966-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "acf69751-3205-4d36-b8e3-29636d8752d0", + "direction": "outgoing", + "index": 113289, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01e2d404-e43b-4b73-ac19-ea5b668d8c6f\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "36d0f800-4218-49c1-a791-d6e8d37a2f5d", + "direction": "outgoing", + "index": 113290, + "result_id": "c4dea661-5d8b-48ba-aa56-d23945223ff0", + "status": 200, + "timestamp": "2026-05-22T08:48:52.990-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:52.822-04:00" + }, + { + "id": "3a424ee8-a4ac-48e4-9d30-19d5e1a36a58", + "created_at": "2026-05-22T08:48:53.122-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5e800b6f-7fe0-4631-9598-2ddca97b85b3", + "direction": "outgoing", + "index": 113291, + "result_id": "3a424ee8-a4ac-48e4-9d30-19d5e1a36a58", + "status": 200, + "timestamp": "2026-05-22T08:48:53.126-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:53.122-04:00" + }, + { + "id": "74c4c894-54fc-49b1-a878-c648ec0c837b", + "created_at": "2026-05-22T08:48:53.652-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4df4ef29-48ec-4a15-8a03-2681f7b214bd", + "direction": "outgoing", + "index": 113292, + "result_id": "74c4c894-54fc-49b1-a878-c648ec0c837b", + "status": 200, + "timestamp": "2026-05-22T08:48:53.654-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85", + "verb": "get" + }, + { + "id": "0442a252-8444-47cf-ac62-cc68508df3ff", + "direction": "outgoing", + "index": 113293, + "result_id": "74c4c894-54fc-49b1-a878-c648ec0c837b", + "status": 200, + "timestamp": "2026-05-22T08:48:53.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355", + "verb": "get" + }, + { + "id": "343fa37b-9266-4fd7-bbd7-30425fab4464", + "direction": "outgoing", + "index": 113294, + "result_id": "74c4c894-54fc-49b1-a878-c648ec0c837b", + "status": 200, + "timestamp": "2026-05-22T08:48:53.680-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:53.652-04:00" + }, + { + "id": "9f602e50-f5cb-4926-b1aa-d882d41e79fb", + "created_at": "2026-05-22T08:48:56.301-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[2]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[2]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.code: None of the codings provided are in the value set 'US Core Common SDOH Assessments' (http://hl7.org/fhir/us/core/ValueSet/us-core-common-sdoh-assessments|5.0.1), and a coding is recommended to come from this value set (codes = http://loinc.org#55758-7)", + "type": "info" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.code: None of the codings provided are in the value set 'US Core Common SDOH Assessments' (http://hl7.org/fhir/us/core/ValueSet/us-core-common-sdoh-assessments|5.0.1), and a coding is recommended to come from this value set (codes = http://loinc.org#75626-2)", + "type": "info" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.code: None of the codings provided are in the value set 'US Core Common SDOH Assessments' (http://hl7.org/fhir/us/core/ValueSet/us-core-common-sdoh-assessments|5.0.1), and a coding is recommended to come from this value set (codes = http://loinc.org#11332-4)", + "type": "info" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[2]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:56.301-04:00" + }, + { + "id": "bb30012c-bf22-429d-bd5e-ce2a0855e8c7", + "created_at": "2026-05-22T08:48:56.370-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:56.370-04:00" + }, + { + "id": "9484c675-e30b-4a4c-a6ab-8fe02293a08a", + "created_at": "2026-05-22T08:48:56.860-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c7766887-35ce-49c5-8303-8f3cd97f9502", + "direction": "outgoing", + "index": 113295, + "result_id": "9484c675-e30b-4a4c-a6ab-8fe02293a08a", + "status": 200, + "timestamp": "2026-05-22T08:48:56.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/be5b9ebc-6416-42be-abbf-c99363774f10", + "verb": "get" + }, + { + "id": "0530d30f-250b-48a2-a59b-5bc7b7769384", + "direction": "outgoing", + "index": 113296, + "result_id": "9484c675-e30b-4a4c-a6ab-8fe02293a08a", + "status": 200, + "timestamp": "2026-05-22T08:48:56.893-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment-us_core_v501_observation_sdoh_assessment_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:56.860-04:00" + }, + { + "id": "4e2a3d5f-4e41-4422-9db2-13726f30d684", + "created_at": "2026-05-22T08:48:56.910-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sdoh_assessment", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:56.910-04:00" + }, + { + "id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "created_at": "2026-05-22T08:48:57.800-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "85842d02-a0f9-47fd-ae25-fb93939ecc4a", + "direction": "outgoing", + "index": 113297, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "5bb6a72c-c72c-4b4b-9c35-3939a89a9a70", + "direction": "outgoing", + "index": 113298, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "bcff0c7f-9848-4c0d-bd48-e850c50c801b", + "direction": "outgoing", + "index": 113299, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "76b8a8eb-68c4-48c8-a558-ad980cdd57ed", + "direction": "outgoing", + "index": 113300, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "8f62a918-ff82-410a-ab62-649c436a8ee7", + "direction": "outgoing", + "index": 113301, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "dcf99f27-88cf-4340-812b-631a3178d479", + "direction": "outgoing", + "index": 113302, + "result_id": "d9ada466-e159-4d0d-96cd-de851c703ea7", + "status": 200, + "timestamp": "2026-05-22T08:48:57.887-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:48:57.800-04:00" + }, + { + "id": "3bda5005-0356-4276-ba80-51c7d2174216", + "created_at": "2026-05-22T08:49:01.617-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b1203173-73b5-4a81-b45d-bfb0710e56f1", + "direction": "outgoing", + "index": 113303, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.623-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d169e8e3-db1a-41fa-b13b-cecdfe871317", + "direction": "outgoing", + "index": 113304, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0aa5a2f1-0cdc-4926-b72a-77ffeae3a6be", + "direction": "outgoing", + "index": 113305, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.673-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9282363f-848c-4482-8555-3048f372366d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f05c9f7-2e74-43b5-9da5-a73a50e88bc2", + "direction": "outgoing", + "index": 113306, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2879c9e3-4f13-45e5-9915-4336a49de66c", + "direction": "outgoing", + "index": 113307, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b7d3cc-47d3-434b-8d63-f7c7c8ec8f62\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "01722d57-d692-43f7-ba95-cd7a06dabe7b", + "direction": "outgoing", + "index": 113308, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a0610e98-1ac7-4d88-b737-7b5b4402738b", + "direction": "outgoing", + "index": 113309, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.743-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=385add92-d66e-4a9a-a287-c30d334b6b3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cc10f4bf-4560-4d00-bc6e-b21b049586b1", + "direction": "outgoing", + "index": 113310, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "eb15aaeb-803c-497e-968c-00270b2d2609", + "direction": "outgoing", + "index": 113311, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aad71949-9bf6-4dbe-ba02-46aa8f8a3909\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3be1a17e-10c2-4973-880e-bb29e76a9062", + "direction": "outgoing", + "index": 113312, + "result_id": "3bda5005-0356-4276-ba80-51c7d2174216", + "status": 200, + "timestamp": "2026-05-22T08:49:01.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:01.617-04:00" + }, + { + "id": "5e915315-607e-4fc9-8b72-e12441073923", + "created_at": "2026-05-22T08:49:02.651-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c0a84cee-23c8-42ab-9043-0dd83e1faedd", + "direction": "outgoing", + "index": 113313, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2bae7437-540d-49e8-ae15-778d499745ec", + "direction": "outgoing", + "index": 113314, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d6473c92-b37b-434d-b4e0-caeb8fbc8d91", + "direction": "outgoing", + "index": 113315, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.690-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "057beeda-7d2f-4cfd-9a00-ad40c61a62e1", + "direction": "outgoing", + "index": 113316, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.740-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "62c3a75b-af36-4c7e-8f98-b3537ca019fb", + "direction": "outgoing", + "index": 113317, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.814-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "eb32a981-6af4-4981-beaf-966545b1191f", + "direction": "outgoing", + "index": 113318, + "result_id": "5e915315-607e-4fc9-8b72-e12441073923", + "status": 200, + "timestamp": "2026-05-22T08:49:02.824-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:02.651-04:00" + }, + { + "id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "created_at": "2026-05-22T08:49:05.164-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b9c4c54a-a768-40e1-ab64-1643d5aa7387", + "direction": "outgoing", + "index": 113319, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "cc4ef473-3fee-44a6-9a06-b9fc4fca15b4", + "direction": "outgoing", + "index": 113320, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.177-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "03ff412e-f56e-4664-9911-f86c68462cca", + "direction": "outgoing", + "index": 113321, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.188-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "520d674a-8370-4847-9336-a1605b68cf37", + "direction": "outgoing", + "index": 113322, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "1d258597-2716-4af9-af00-491d8a083994", + "direction": "outgoing", + "index": 113323, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.212-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "99876a70-5fe5-4000-8bb1-2416a3fac94d", + "direction": "outgoing", + "index": 113324, + "result_id": "8820af0b-34a8-49e3-bd13-951752fe3545", + "status": 200, + "timestamp": "2026-05-22T08:49:05.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:05.164-04:00" + }, + { + "id": "6b0dda83-097d-4619-a771-57caed754eaf", + "created_at": "2026-05-22T08:49:08.497-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "579a5a66-9bdd-411e-aede-49a2ecae930b", + "direction": "outgoing", + "index": 113325, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "2a4b2040-a709-40ba-8f66-d60554647be1", + "direction": "outgoing", + "index": 113326, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8abaf8f9-43a0-42ff-8e60-208e41c66b33", + "direction": "outgoing", + "index": 113327, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.538-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "91ea096b-1d2d-4043-8231-c97b663999ac", + "direction": "outgoing", + "index": 113328, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "0ed5d1a7-1282-495b-acd6-0040570cb7d9", + "direction": "outgoing", + "index": 113329, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.563-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4f4c3046-1597-4926-99e3-085ddd3db50b", + "direction": "outgoing", + "index": 113330, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.578-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fd85010f-3ff7-46d3-b4d3-2b9da925c6f0", + "direction": "outgoing", + "index": 113331, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "bc5bf020-b0db-41af-a8a9-a63c279882da", + "direction": "outgoing", + "index": 113332, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5966cbe-894a-4778-9bb6-9e8879cfa2f9", + "direction": "outgoing", + "index": 113333, + "result_id": "6b0dda83-097d-4619-a771-57caed754eaf", + "status": 200, + "timestamp": "2026-05-22T08:49:08.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:08.497-04:00" + }, + { + "id": "d4502aed-d668-4b2b-9c40-e3aa5fa9d408", + "created_at": "2026-05-22T08:49:08.749-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5f455d05-4c32-45df-b4a0-e99951f0869a", + "direction": "outgoing", + "index": 113334, + "result_id": "d4502aed-d668-4b2b-9c40-e3aa5fa9d408", + "status": 200, + "timestamp": "2026-05-22T08:49:08.751-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:08.749-04:00" + }, + { + "id": "a6ccfa60-2d77-42e4-9a49-ec1aa1cebb91", + "created_at": "2026-05-22T08:49:09.193-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0a07ab7b-11f7-4cdf-ac1b-b2f8a24785ce", + "direction": "outgoing", + "index": 113335, + "result_id": "a6ccfa60-2d77-42e4-9a49-ec1aa1cebb91", + "status": 200, + "timestamp": "2026-05-22T08:49:09.196-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "f65c42af-4d35-4f4c-81c0-16df8fa0ab07", + "direction": "outgoing", + "index": 113336, + "result_id": "a6ccfa60-2d77-42e4-9a49-ec1aa1cebb91", + "status": 200, + "timestamp": "2026-05-22T08:49:09.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "4f013d15-11c4-4ac8-baf2-914acb0b2ddc", + "direction": "outgoing", + "index": 113337, + "result_id": "a6ccfa60-2d77-42e4-9a49-ec1aa1cebb91", + "status": 200, + "timestamp": "2026-05-22T08:49:09.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:09.193-04:00" + }, + { + "id": "00ce7ca0-ea95-4626-8b6f-9007ce504ef3", + "created_at": "2026-05-22T08:49:09.984-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:09.984-04:00" + }, + { + "id": "a06ea81e-562b-4fe2-9cd6-21822cbc804d", + "created_at": "2026-05-22T08:49:10.009-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:10.009-04:00" + }, + { + "id": "438b48c6-7adb-4c50-95a1-d58f7bb9d7b5", + "created_at": "2026-05-22T08:49:10.014-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate-us_core_v501_respiratory_rate_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:10.014-04:00" + }, + { + "id": "8773d967-e0e6-402c-8b15-53a0e5ee0053", + "created_at": "2026-05-22T08:49:10.016-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_respiratory_rate", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:10.016-04:00" + }, + { + "id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "created_at": "2026-05-22T08:49:15.832-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "106a3b78-afa1-4e6b-8279-8378935f76a2", + "direction": "outgoing", + "index": 113338, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "2959e9a9-cf19-4d23-a972-77530d859b42", + "direction": "outgoing", + "index": 113339, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ccdaa686-4937-413a-89d9-d037c8d5c66f", + "direction": "outgoing", + "index": 113340, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95d34740-b942-42e1-a429-80cf84d79a27", + "direction": "outgoing", + "index": 113341, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.880-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "660266e1-23ac-4de2-89d4-3dea4a9ebba6", + "direction": "outgoing", + "index": 113342, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.895-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f4b5658d-0031-401e-8c64-dec2db7da5eb", + "direction": "outgoing", + "index": 113343, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "84aa7714-688b-409f-89d6-74ae3e088ac1", + "direction": "outgoing", + "index": 113344, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.919-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47537b85-651e-4d4b-bd11-4e8a5c69634e", + "direction": "outgoing", + "index": 113345, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7dff3694-2a76-44a8-a97c-cc728213a724", + "direction": "outgoing", + "index": 113346, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.947-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "31fec266-0e4e-4e72-ac10-6fcd2792f341", + "direction": "outgoing", + "index": 113347, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ff429feb-b678-4a16-a433-dd030d8a95a7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8f5b11a6-028e-4285-82a9-410fb7676146", + "direction": "outgoing", + "index": 113348, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "14620d42-b730-4da9-b1d9-5f8ae13dd917", + "direction": "outgoing", + "index": 113349, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:15.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5ae602cc-b392-461c-8994-b30947b3bad4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "13eac69f-cd02-486d-876e-1f1944acb9ce", + "direction": "outgoing", + "index": 113350, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5ae602cc-b392-461c-8994-b30947b3bad4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "809f2db6-2f2c-4a37-b5cd-ba11a4e1a79e", + "direction": "outgoing", + "index": 113351, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.012-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5ae602cc-b392-461c-8994-b30947b3bad4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c017c392-36ce-4e1e-a160-b05d6d4a0887", + "direction": "outgoing", + "index": 113352, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.025-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5ae602cc-b392-461c-8994-b30947b3bad4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "515fc0f9-f27d-41c3-8213-28efc25c2422", + "direction": "outgoing", + "index": 113353, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.037-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "dc5c35c1-2fd7-409d-8c2b-eec743a65225", + "direction": "outgoing", + "index": 113354, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59241c20-469c-4f2f-b670-842577f2ecae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2bf497ad-ff78-441b-9ae4-be42b31c8a80", + "direction": "outgoing", + "index": 113355, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.061-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59241c20-469c-4f2f-b670-842577f2ecae\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a404d073-1e10-4533-ac3f-fa39a45fd07d", + "direction": "outgoing", + "index": 113356, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59241c20-469c-4f2f-b670-842577f2ecae\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db82c44c-f9ea-45ff-8fff-23e1a8ac1632", + "direction": "outgoing", + "index": 113357, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59241c20-469c-4f2f-b670-842577f2ecae\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5d01aae-d8da-4977-ad0d-4d3dfdac46a7", + "direction": "outgoing", + "index": 113358, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "a20c48d1-595f-4422-b3f3-26af74fef641", + "direction": "outgoing", + "index": 113359, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.107-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1035881-c2ae-4366-8756-86fcb8d234b6", + "direction": "outgoing", + "index": 113360, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ffe47288-3922-482b-8131-f6bce68b8156", + "direction": "outgoing", + "index": 113361, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7000c6c8-9fc3-436e-9c87-f96a76be831c", + "direction": "outgoing", + "index": 113362, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.142-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b04b1570-883c-4760-91a1-6c9cf30cc4da", + "direction": "outgoing", + "index": 113363, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c6fa1706-fa1d-4c36-ae60-98f0cd97b770", + "direction": "outgoing", + "index": 113364, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e5ae82b-4518-41eb-9d64-2b20ead45546", + "direction": "outgoing", + "index": 113365, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "61917ae5-674b-43f5-a4d7-4aa5edc106bb", + "direction": "outgoing", + "index": 113366, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8ac72f04-0d0c-4d04-892d-23df390078ba", + "direction": "outgoing", + "index": 113367, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=14d8cee7-2af2-4bf6-988e-debc194bb69c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ee4d5dff-74c3-4fc6-a0aa-866b6b936bd2", + "direction": "outgoing", + "index": 113368, + "result_id": "7469cca5-acca-4e18-9e36-2d4a553aed23", + "status": 200, + "timestamp": "2026-05-22T08:49:16.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:15.832-04:00" + }, + { + "id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "created_at": "2026-05-22T08:49:19.611-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1bbbea0b-4c78-4897-8b86-c3c2e922cb85", + "direction": "outgoing", + "index": 113369, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4fc7fd2a-a5db-4ac1-9bf9-d7dd7260fdd0", + "direction": "outgoing", + "index": 113370, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.636-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "95148eda-a210-4d65-a9e8-53a6048ba1e7", + "direction": "outgoing", + "index": 113371, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c3ba57a-86a7-49d0-b4fa-ad6ecbbaf316\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cc33c573-d26d-4f17-b867-829fd637529e", + "direction": "outgoing", + "index": 113372, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c3ba57a-86a7-49d0-b4fa-ad6ecbbaf316\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d70e13f-3743-4a8d-ae2d-b16aafaade63", + "direction": "outgoing", + "index": 113373, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.676-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c3ba57a-86a7-49d0-b4fa-ad6ecbbaf316\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7c2383e2-cf47-4d67-bb6c-9497169e2d41", + "direction": "outgoing", + "index": 113374, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c3ba57a-86a7-49d0-b4fa-ad6ecbbaf316\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "58e66a6e-6014-4159-b9b3-2ceac300b2f4", + "direction": "outgoing", + "index": 113375, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "85ec22bc-4c1f-4bac-b507-ea5ab5dc0b6e", + "direction": "outgoing", + "index": 113376, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6d6120f-6da6-4715-9220-88d0fbae6840\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0510d977-a3cc-41af-95bc-9738dead9b3e", + "direction": "outgoing", + "index": 113377, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6d6120f-6da6-4715-9220-88d0fbae6840\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f3cbe4ef-63bc-4ae2-9329-b62d5cc82b08", + "direction": "outgoing", + "index": 113378, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6d6120f-6da6-4715-9220-88d0fbae6840\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a3cf8a4c-2264-48c0-bfde-2fb058d2474d", + "direction": "outgoing", + "index": 113379, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.743-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6d6120f-6da6-4715-9220-88d0fbae6840\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9663377a-07b2-410e-a6a6-d45452ed2392", + "direction": "outgoing", + "index": 113380, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.756-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3e27c2af-410e-432a-98d3-e2b556f2af6f", + "direction": "outgoing", + "index": 113381, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.766-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "48c31e66-739a-44bf-a03b-498139aee03a", + "direction": "outgoing", + "index": 113382, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e6ac2e65-e9d3-45cc-8f65-0b27248b747a", + "direction": "outgoing", + "index": 113383, + "result_id": "518e810c-1f29-4bc9-a545-65b6397e4844", + "status": 200, + "timestamp": "2026-05-22T08:49:19.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:19.611-04:00" + }, + { + "id": "55b009db-371c-4542-aae8-49607f67b6e3", + "created_at": "2026-05-22T08:49:22.217-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7f9397fa-f35c-48b8-a511-7b4103d49a89", + "direction": "outgoing", + "index": 113384, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=85", + "verb": "get" + }, + { + "id": "e41820bf-08a9-41b6-bf31-5f986f9a4cbe", + "direction": "outgoing", + "index": 113385, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.243-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026patient=85", + "verb": "get" + }, + { + "id": "ecdac7f4-b229-4659-877f-0dbf17dd485f", + "direction": "outgoing", + "index": 113386, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "0ce4b12e-82c4-46c6-acf6-ff97532bfb8b", + "direction": "outgoing", + "index": 113387, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.268-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a68f6a3-6d3c-4f87-be70-062caa6983a6", + "direction": "outgoing", + "index": 113388, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6f013448-601b-4394-82ef-cf6b86e633bf", + "direction": "outgoing", + "index": 113389, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cc0fbc62-afc4-4cdf-b5cb-e07221a291fc", + "direction": "outgoing", + "index": 113390, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "09a6a62c-ac37-46ea-91cc-cd5d7c5d21b5", + "direction": "outgoing", + "index": 113391, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "57d33e2a-a314-42e4-bd69-4db6086e0f47", + "direction": "outgoing", + "index": 113392, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea540f4d-86a8-42ff-886e-6542a835d5ad", + "direction": "outgoing", + "index": 113393, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "483fec1f-f93f-4b48-a5c1-a73d8d4b2b02", + "direction": "outgoing", + "index": 113394, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "84cf37f4-2f8b-47ce-9f73-47105625327e", + "direction": "outgoing", + "index": 113395, + "result_id": "55b009db-371c-4542-aae8-49607f67b6e3", + "status": 200, + "timestamp": "2026-05-22T08:49:22.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=043d5c64-2406-4d38-a8da-57e2571a84f8\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:22.217-04:00" + }, + { + "id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "created_at": "2026-05-22T08:49:23.364-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "31030633-2f0e-4688-a9a5-e24867212f45", + "direction": "outgoing", + "index": 113396, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8872272f-218b-4efd-a020-93f19bc6e86b", + "direction": "outgoing", + "index": 113397, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1e597e29-575b-4898-a9eb-1f145219b3d1", + "direction": "outgoing", + "index": 113398, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3a5c7d11-5cb8-48f2-9d98-92a1ce9182c0", + "direction": "outgoing", + "index": 113399, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c668dcfc-c188-497f-9fdc-7f2a39e2b967", + "direction": "outgoing", + "index": 113400, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c0a1ca1e-c021-420d-9d49-e06fd2531493", + "direction": "outgoing", + "index": 113401, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "55b7dd1f-a9ac-48e8-93f3-72dc4c26f596", + "direction": "outgoing", + "index": 113402, + "result_id": "6a57268f-ae33-46f3-871f-4bc319971d7f", + "status": 200, + "timestamp": "2026-05-22T08:49:23.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:23.364-04:00" + }, + { + "id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "created_at": "2026-05-22T08:49:29.697-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "48c30e41-d6ac-4331-916b-b507461402fc", + "direction": "outgoing", + "index": 113403, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.705-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "656337dd-e653-4c1e-a892-c288251a7ff5", + "direction": "outgoing", + "index": 113404, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.723-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8499c702-2a56-490b-87af-8dc3cffeed01\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c3ac7ca9-1b94-4452-89b5-e6a0ecf7d4f0", + "direction": "outgoing", + "index": 113405, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8499c702-2a56-490b-87af-8dc3cffeed01\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e48c65bc-f97f-407b-bf2e-01be544f05c5", + "direction": "outgoing", + "index": 113406, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8499c702-2a56-490b-87af-8dc3cffeed01\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "af35dec5-969f-48d1-8016-260957f78065", + "direction": "outgoing", + "index": 113407, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8499c702-2a56-490b-87af-8dc3cffeed01\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f918894e-3530-4282-b795-0dd538c3926c", + "direction": "outgoing", + "index": 113408, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "0719006c-0f91-4405-88bf-c9b9ed5128bf", + "direction": "outgoing", + "index": 113409, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.783-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ac5e3f9-2983-4043-8fe6-d5fb9b5d83f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78003761-7595-4af3-a9ba-9989cfdda269", + "direction": "outgoing", + "index": 113410, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.795-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ac5e3f9-2983-4043-8fe6-d5fb9b5d83f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7329182b-2c55-4492-9928-6f3b0284ec0c", + "direction": "outgoing", + "index": 113411, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ac5e3f9-2983-4043-8fe6-d5fb9b5d83f3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78617465-d851-4fe0-96d2-64974de6d4fc", + "direction": "outgoing", + "index": 113412, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ac5e3f9-2983-4043-8fe6-d5fb9b5d83f3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93da37e1-82b8-4c1f-9ba6-7c5680c82578", + "direction": "outgoing", + "index": 113413, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "8a39e502-8950-4154-9e17-1a7f190cea1e", + "direction": "outgoing", + "index": 113414, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3f4604da-4388-4d6b-88f4-3c065c22f671", + "direction": "outgoing", + "index": 113415, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bb927224-2004-4878-a178-13455c6467a7", + "direction": "outgoing", + "index": 113416, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.869-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86f49bc0-b235-4781-9ce6-735f8b9acd50", + "direction": "outgoing", + "index": 113417, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b3fd4303-4bec-4103-9f8d-e1713cf08db6", + "direction": "outgoing", + "index": 113418, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5df41584-f493-4487-98a8-9b676a7e0a86", + "direction": "outgoing", + "index": 113419, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7bc7b212-824f-44ae-bb35-38aa755bb4af", + "direction": "outgoing", + "index": 113420, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8bc2a067-bd41-4a48-906e-dd01afc874a1", + "direction": "outgoing", + "index": 113421, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1044f2c5-7f68-491d-86fd-93b5cd6e54b4", + "direction": "outgoing", + "index": 113422, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.943-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c41aed6-32bc-4216-a1e0-8a126e5e4b08\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "972f15e8-eb75-4737-9144-f6e5a95e25dc", + "direction": "outgoing", + "index": 113423, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.953-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "6ebce4c3-d931-4f87-9097-558897e920fc", + "direction": "outgoing", + "index": 113424, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.963-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=13432a1e-f8eb-478f-989d-52da81137448\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f5b5456d-2edf-4033-bb17-d8ea4cb45aab", + "direction": "outgoing", + "index": 113425, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=13432a1e-f8eb-478f-989d-52da81137448\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0935cd0e-b063-4908-82c4-62b4b6c69307", + "direction": "outgoing", + "index": 113426, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=13432a1e-f8eb-478f-989d-52da81137448\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "57d25e65-b805-4468-9785-c332294235d7", + "direction": "outgoing", + "index": 113427, + "result_id": "e5d02d10-9174-4de4-ac5a-1b285d38cc03", + "status": 200, + "timestamp": "2026-05-22T08:49:29.999-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=13432a1e-f8eb-478f-989d-52da81137448\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:29.697-04:00" + }, + { + "id": "f8b7811a-5396-40ca-9642-6402dd39fbd7", + "created_at": "2026-05-22T08:49:30.131-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "862e53e3-49d2-4237-9432-30de588623ae", + "direction": "outgoing", + "index": 113428, + "result_id": "f8b7811a-5396-40ca-9642-6402dd39fbd7", + "status": 200, + "timestamp": "2026-05-22T08:49:30.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0ce3e522-1798-4581-8c7d-c913de0149b6", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:30.131-04:00" + }, + { + "id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "created_at": "2026-05-22T08:49:34.405-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "98976f37-08f9-4bd5-89fb-cd772e67c3eb", + "direction": "outgoing", + "index": 113429, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "b67d7c57-929b-4b61-8187-012de0e68aee", + "direction": "outgoing", + "index": 113430, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=48ff8d38-b5fc-43b6-8328-04284a305dd7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "37a5c948-1fd7-4a51-8d6b-9112f0d5ec13", + "direction": "outgoing", + "index": 113431, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=48ff8d38-b5fc-43b6-8328-04284a305dd7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "64f322f7-022a-42bf-b6f3-e44e839ca140", + "direction": "outgoing", + "index": 113432, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=48ff8d38-b5fc-43b6-8328-04284a305dd7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c153d3fc-41c1-40f8-b951-166eeeea9285", + "direction": "outgoing", + "index": 113433, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=48ff8d38-b5fc-43b6-8328-04284a305dd7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "49a7a9f7-3982-45e2-8fb2-62886b05fd42", + "direction": "outgoing", + "index": 113434, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "eff876ab-61fe-41e2-81b0-0eb4502ed527", + "direction": "outgoing", + "index": 113435, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.495-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "43ac034b-e422-4ee8-8ad1-8ee2599e170c", + "direction": "outgoing", + "index": 113436, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "67bf055e-0624-4777-96cc-c05005ee8896", + "direction": "outgoing", + "index": 113437, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26d100cc-ad3a-442f-9696-e999393761ab", + "direction": "outgoing", + "index": 113438, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.534-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f9c344b6-4159-4e22-8560-21f2db567ca8", + "direction": "outgoing", + "index": 113439, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.548-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "701dffcf-9d19-4e28-bfb8-9f9abea6efe7", + "direction": "outgoing", + "index": 113440, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.562-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dce71fa2-676d-4d86-99a2-d633e4ecb63b", + "direction": "outgoing", + "index": 113441, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "02a79d8d-afba-43e9-8427-87b4f8244528", + "direction": "outgoing", + "index": 113442, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e2848af-4a1a-4b71-95b3-aaafee16a2cf", + "direction": "outgoing", + "index": 113443, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad048cd2-24f5-4770-b440-a5e8ca181be3\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ccd65515-de3c-4526-856c-1a06e71b3546", + "direction": "outgoing", + "index": 113444, + "result_id": "901cff27-4bf6-47a0-82bc-f0cd2229eed5", + "status": 200, + "timestamp": "2026-05-22T08:49:34.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:34.405-04:00" + }, + { + "id": "5d7bbf37-4e32-4f14-9892-7501ebc051d7", + "created_at": "2026-05-22T08:49:43.107-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#401201003)", + "type": "info" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#449868002)", + "type": "info" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancyintent'", + "type": "info" + }, + { + "message": "Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancyintent' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-occupation'", + "type": "info" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-occupation' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancystatus'", + "type": "info" + }, + { + "message": "Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-pregnancystatus' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "info" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#741062008)", + "type": "info" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[2]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[2]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-simple-observation' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.performer[0]: A Reference without an actual reference or identifier should have a display", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:43.107-04:00" + }, + { + "id": "c2eb7a66-9b06-49b3-9b1e-c025ee96dbae", + "created_at": "2026-05-22T08:49:43.826-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:43.826-04:00" + }, + { + "id": "48fb5484-efda-452a-954b-10e7f713a493", + "created_at": "2026-05-22T08:49:43.830-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history-us_core_v501_observation_social_history_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:43.830-04:00" + }, + { + "id": "fce4ffa3-a27e-49d7-95c8-f11510bde9a1", + "created_at": "2026-05-22T08:49:43.831-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_social_history", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:43.831-04:00" + }, + { + "id": "60d771a8-667e-49a1-a053-d04d7546e981", + "created_at": "2026-05-22T08:49:44.679-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "46f72f6a-d63f-4ec0-9448-de7eaab7d609", + "direction": "outgoing", + "index": 113445, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "655c37bb-cb53-419b-82b5-fb067b299f3e", + "direction": "outgoing", + "index": 113446, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "63599dc5-c7d1-4392-8a57-b8c72950348f", + "direction": "outgoing", + "index": 113447, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "805b0d3c-354e-46f2-9af8-c7883925821a", + "direction": "outgoing", + "index": 113448, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "a394d301-8292-408b-9381-018d252d2a70", + "direction": "outgoing", + "index": 113449, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "504c2e33-c169-4133-b9ac-2c14e481122a", + "direction": "outgoing", + "index": 113450, + "result_id": "60d771a8-667e-49a1-a053-d04d7546e981", + "status": 200, + "timestamp": "2026-05-22T08:49:44.763-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:44.679-04:00" + }, + { + "id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "created_at": "2026-05-22T08:49:47.501-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "39a58851-45d9-4be1-b33c-1aec4134453e", + "direction": "outgoing", + "index": 113451, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.507-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f78eafbf-c454-4cac-bec7-9e96e46bd5e8", + "direction": "outgoing", + "index": 113452, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.527-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "73bea25f-3e44-4b95-90c0-cbd7ce981cf5", + "direction": "outgoing", + "index": 113453, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cd82542c-33ef-4bd3-8811-c71babb57cee", + "direction": "outgoing", + "index": 113454, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4c190918-a684-4c6e-beb5-460888f199d7", + "direction": "outgoing", + "index": 113455, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8220581c-c0b3-442d-8d4d-afeee8a3fdc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f6b10fe-9237-4074-83dc-1867a1d82f68", + "direction": "outgoing", + "index": 113456, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8220581c-c0b3-442d-8d4d-afeee8a3fdc2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d3a9d01-9021-47a5-a0aa-eb783774d2c9", + "direction": "outgoing", + "index": 113457, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e3815f90-e4fb-4e42-90ac-df12fa10f979", + "direction": "outgoing", + "index": 113458, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=519a2ae1-8e1b-4482-8f74-767b0d671c98\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b4d9fef-c94b-48ed-a40f-83f3b6d988fb", + "direction": "outgoing", + "index": 113459, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.614-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=519a2ae1-8e1b-4482-8f74-767b0d671c98\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c8c8e8b8-62df-4c0d-bc70-741b1b20e76c", + "direction": "outgoing", + "index": 113460, + "result_id": "b9a7f7ca-34a7-45f6-a5ae-50bfb3c2bfab", + "status": 200, + "timestamp": "2026-05-22T08:49:47.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:47.501-04:00" + }, + { + "id": "cf39739f-fdca-4846-8ccf-54d677373448", + "created_at": "2026-05-22T08:49:48.468-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7da84d8a-2619-41ab-ada7-2bd5f6c043ac", + "direction": "outgoing", + "index": 113461, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "814859dd-f601-4c84-b947-83516bb4a908", + "direction": "outgoing", + "index": 113462, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "90c6458f-7fce-4110-9550-aa96089bd154", + "direction": "outgoing", + "index": 113463, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "68f2b174-f01f-4bba-b41e-e8dfa7580d9e", + "direction": "outgoing", + "index": 113464, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.521-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "dc25d5e0-d7ca-4e10-b444-f5072d621411", + "direction": "outgoing", + "index": 113465, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.532-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "382a943c-493b-431b-9df8-fabfa73c4f81", + "direction": "outgoing", + "index": 113466, + "result_id": "cf39739f-fdca-4846-8ccf-54d677373448", + "status": 200, + "timestamp": "2026-05-22T08:49:48.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:48.468-04:00" + }, + { + "id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "created_at": "2026-05-22T08:49:49.558-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5961eca8-ee6c-4b6b-82db-966f7260f2f2", + "direction": "outgoing", + "index": 113467, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.563-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a2441565-69ac-453f-8b87-f5fb1012f2da", + "direction": "outgoing", + "index": 113468, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "621c6c7f-ed96-4a37-9e3b-5a9536f9af24", + "direction": "outgoing", + "index": 113469, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.655-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3791809-ca31-4f41-8f54-eeb0a30d3772", + "direction": "outgoing", + "index": 113470, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ecfd62fb-22e7-458c-ba89-b00a45af6141", + "direction": "outgoing", + "index": 113471, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fdb0af40-cf75-4849-8b95-d526dc643a84", + "direction": "outgoing", + "index": 113472, + "result_id": "2bc0eb15-0d33-4b08-b3b7-674174f3e965", + "status": 200, + "timestamp": "2026-05-22T08:49:49.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:49.558-04:00" + }, + { + "id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "created_at": "2026-05-22T08:49:51.268-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "12214d4c-67d6-47f3-96f1-cdc09fa2abfa", + "direction": "outgoing", + "index": 113473, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "ec93625e-c6d7-4556-97db-6da0a63ab6e1", + "direction": "outgoing", + "index": 113474, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.297-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63dffc45-3be8-4cdb-bb87-6a59c3a5e069", + "direction": "outgoing", + "index": 113475, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "81aaf131-cac4-4fe9-aa59-29342e9a8d71", + "direction": "outgoing", + "index": 113476, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "40477729-d8ef-4759-9fb8-65fec6062371", + "direction": "outgoing", + "index": 113477, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.340-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a32a2abe-9e37-49eb-8fff-4c7b38ae6628", + "direction": "outgoing", + "index": 113478, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a99fec59-8f86-47d9-a3f8-c8b5e998f42e", + "direction": "outgoing", + "index": 113479, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "b26d4f0e-c5fe-470a-9875-46b13097e8f0", + "direction": "outgoing", + "index": 113480, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.375-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4530ab40-3bd7-40ed-96bd-673d268ca81a", + "direction": "outgoing", + "index": 113481, + "result_id": "9294ce65-9b93-43bd-a119-f5f41a2c7e4b", + "status": 200, + "timestamp": "2026-05-22T08:49:51.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:51.268-04:00" + }, + { + "id": "47135564-bd66-43ff-8024-b6491d136cdf", + "created_at": "2026-05-22T08:49:51.524-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2f151512-483f-4989-b6c7-d52cdd2bd69f", + "direction": "outgoing", + "index": 113482, + "result_id": "47135564-bd66-43ff-8024-b6491d136cdf", + "status": 200, + "timestamp": "2026-05-22T08:49:51.527-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:51.524-04:00" + }, + { + "id": "bd38e559-1733-418b-a061-0412c1809d7c", + "created_at": "2026-05-22T08:49:51.997-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4a3d7e7a-8844-45cc-a265-6f0edf9795eb", + "direction": "outgoing", + "index": 113483, + "result_id": "bd38e559-1733-418b-a061-0412c1809d7c", + "status": 200, + "timestamp": "2026-05-22T08:49:52.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "f473db41-b954-4d14-a1df-1e12d57db2d2", + "direction": "outgoing", + "index": 113484, + "result_id": "bd38e559-1733-418b-a061-0412c1809d7c", + "status": 200, + "timestamp": "2026-05-22T08:49:52.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "6f35a0d2-8ea5-433b-990e-1c3f36974574", + "direction": "outgoing", + "index": 113485, + "result_id": "bd38e559-1733-418b-a061-0412c1809d7c", + "status": 200, + "timestamp": "2026-05-22T08:49:52.032-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:51.997-04:00" + }, + { + "id": "e20d25da-5c10-437b-ad83-8404894ad5c2", + "created_at": "2026-05-22T08:49:52.474-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:52.474-04:00" + }, + { + "id": "32928a98-8f45-44ad-86a8-a803dd14d809", + "created_at": "2026-05-22T08:49:52.500-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:52.500-04:00" + }, + { + "id": "238b9ff3-11d2-468a-9a77-a235456a8602", + "created_at": "2026-05-22T08:49:52.504-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate-us_core_v501_heart_rate_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:52.504-04:00" + }, + { + "id": "b40583c3-84bf-478f-ae47-166907f77dca", + "created_at": "2026-05-22T08:49:52.506-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_heart_rate", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:52.506-04:00" + }, + { + "id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "created_at": "2026-05-22T08:49:53.299-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1b6a0574-30c8-4350-beb7-bf59990c0e6c", + "direction": "outgoing", + "index": 113486, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.306-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "8020f0e8-92ac-4824-93a0-8e5f38824f33", + "direction": "outgoing", + "index": 113487, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "a3ad938a-a6cb-4d3a-b0f9-42392f7de280", + "direction": "outgoing", + "index": 113488, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "898c7013-c38b-4403-a8ee-893ab3e20258", + "direction": "outgoing", + "index": 113489, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "578f377c-84d6-483e-bdff-33109c69b3b0", + "direction": "outgoing", + "index": 113490, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "8b0ccdaf-69b9-4a16-8a64-f5f78d8e62a7", + "direction": "outgoing", + "index": 113491, + "result_id": "951d1dd5-d11f-4375-b98b-d8b8ba5ded6f", + "status": 200, + "timestamp": "2026-05-22T08:49:53.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:53.299-04:00" + }, + { + "id": "3f310029-410c-43de-92a1-2bacc52a8779", + "created_at": "2026-05-22T08:49:56.128-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1ea8711f-6529-42e6-8a0f-871f0a4aba5c", + "direction": "outgoing", + "index": 113492, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d7da0d3e-ef82-45f7-8e85-402e949b6b40", + "direction": "outgoing", + "index": 113493, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.143-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9fb6accf-7172-4f23-8a99-3751722f6580", + "direction": "outgoing", + "index": 113494, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1e3b856d-4e56-4303-ba3a-d6842344c948", + "direction": "outgoing", + "index": 113495, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c26aeade-4519-460f-a6d3-8f08b8d37d10", + "direction": "outgoing", + "index": 113496, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.173-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=261b04e1-19bc-44e4-b322-bba66ffb83e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "07122df1-0cab-4370-9882-e0c4d69c2f37", + "direction": "outgoing", + "index": 113497, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=261b04e1-19bc-44e4-b322-bba66ffb83e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7071dc1f-cb9d-43a7-809d-bcff300d86d7", + "direction": "outgoing", + "index": 113498, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.196-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cedc7d0e-b711-4689-bd42-3254d01a5499", + "direction": "outgoing", + "index": 113499, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d97b8170-e48e-4f96-8b43-412813a1a5fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "17b3325b-2803-4a41-9c0d-4b124f1e7cce", + "direction": "outgoing", + "index": 113500, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d97b8170-e48e-4f96-8b43-412813a1a5fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "698b88e3-94dd-48cc-b67e-7688e6f94061", + "direction": "outgoing", + "index": 113501, + "result_id": "3f310029-410c-43de-92a1-2bacc52a8779", + "status": 200, + "timestamp": "2026-05-22T08:49:56.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:56.128-04:00" + }, + { + "id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "created_at": "2026-05-22T08:49:57.507-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ad852b87-54fd-4c71-8e95-18a20bbd06f3", + "direction": "outgoing", + "index": 113502, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e95c3fcc-c399-4a20-8351-39dee50aaf59", + "direction": "outgoing", + "index": 113503, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1b941a32-655d-4fab-a502-4851f8db40af", + "direction": "outgoing", + "index": 113504, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.547-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a0b90ce2-6ac1-435c-981d-788d23f3e6d6", + "direction": "outgoing", + "index": 113505, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.561-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d729f35a-5cfa-4f66-8675-18d69a0a0007", + "direction": "outgoing", + "index": 113506, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.571-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "59314d8a-0116-48c8-a4b3-7db8afe85a34", + "direction": "outgoing", + "index": 113507, + "result_id": "466087e9-9c6b-40fc-9695-862daa30c2ba", + "status": 200, + "timestamp": "2026-05-22T08:49:57.583-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:57.507-04:00" + }, + { + "id": "4996502f-4275-4a5e-aece-90024e458f21", + "created_at": "2026-05-22T08:49:58.645-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7875da7e-f81a-40b0-9d71-5d8cd51b66a4", + "direction": "outgoing", + "index": 113508, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.650-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "d165b471-07b8-42d4-89d2-19c209e8b318", + "direction": "outgoing", + "index": 113509, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eee375f0-1762-4b9d-a569-c9a5cc6e75ba", + "direction": "outgoing", + "index": 113510, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.702-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c3e24ca6-66f9-4bc6-b18c-e2bdec84d5fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfb3aec5-1e29-40e0-8167-b18e73c226e3", + "direction": "outgoing", + "index": 113511, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.717-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ce4a2756-f7ee-421a-b9a4-371f6e60bf68", + "direction": "outgoing", + "index": 113512, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c22a1a1f-97f5-43eb-a38f-b6acbdf60738", + "direction": "outgoing", + "index": 113513, + "result_id": "4996502f-4275-4a5e-aece-90024e458f21", + "status": 200, + "timestamp": "2026-05-22T08:49:58.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01aff936-8cec-45bd-a34c-9a3cea0415d5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:49:58.645-04:00" + }, + { + "id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "created_at": "2026-05-22T08:50:00.258-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "273c3c5e-5a15-425f-86de-6be50e598a8d", + "direction": "outgoing", + "index": 113514, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "e043451e-0aab-4ac4-920d-db91e7c43cbe", + "direction": "outgoing", + "index": 113515, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3dd631cf-96b0-4389-88a4-9b03286f6011", + "direction": "outgoing", + "index": 113516, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=54e1ab68-12e9-4d08-a4e7-b09d47b6389a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d23149c9-3159-4455-86e7-0d689077ff16", + "direction": "outgoing", + "index": 113517, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "d0da7f64-bf91-4abe-9ba0-9c09071f469f", + "direction": "outgoing", + "index": 113518, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.320-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "36e1eb50-0b90-4668-89ea-8eb0d7bb2a52", + "direction": "outgoing", + "index": 113519, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.331-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1a111e05-8dcc-4512-acb6-d624a12d6954\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8cfdd5b-c352-4c77-aa8d-d42d9d41cfe3", + "direction": "outgoing", + "index": 113520, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.345-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "bbe50f68-3690-44eb-b7f4-147bf2054f1c", + "direction": "outgoing", + "index": 113521, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.355-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfabb87f-bed9-4ff0-8e19-7828288fa7d1", + "direction": "outgoing", + "index": 113522, + "result_id": "223d4821-0471-47ff-aaf3-43cfd41502ea", + "status": 200, + "timestamp": "2026-05-22T08:50:00.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cec74524-3d2f-4aed-9e38-76afbd4201bf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:00.258-04:00" + }, + { + "id": "5d3bce4a-625a-4421-9b30-24876924fa3a", + "created_at": "2026-05-22T08:50:00.519-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0fc13c0c-68ca-45af-ad8d-3e63a4d2265e", + "direction": "outgoing", + "index": 113523, + "result_id": "5d3bce4a-625a-4421-9b30-24876924fa3a", + "status": 200, + "timestamp": "2026-05-22T08:50:00.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:00.519-04:00" + }, + { + "id": "63f0fabd-b533-4be0-a0f9-33df11a62f8b", + "created_at": "2026-05-22T08:50:01.052-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "698b6ee2-8c63-4ad7-9064-dd46d68a917e", + "direction": "outgoing", + "index": 113524, + "result_id": "63f0fabd-b533-4be0-a0f9-33df11a62f8b", + "status": 200, + "timestamp": "2026-05-22T08:50:01.056-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "5dab64be-12ec-4406-8561-1bd8b4266373", + "direction": "outgoing", + "index": 113525, + "result_id": "63f0fabd-b533-4be0-a0f9-33df11a62f8b", + "status": 200, + "timestamp": "2026-05-22T08:50:01.072-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "93b77c2a-a077-45b4-a54d-6d9ecf0d1cc1", + "direction": "outgoing", + "index": 113526, + "result_id": "63f0fabd-b533-4be0-a0f9-33df11a62f8b", + "status": 200, + "timestamp": "2026-05-22T08:50:01.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:01.052-04:00" + }, + { + "id": "34c9f6c7-e638-47f9-92d8-15727465ed7f", + "created_at": "2026-05-22T08:50:02.067-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:02.067-04:00" + }, + { + "id": "d4f029e4-9704-4c2e-aff8-f16e7a41d9d8", + "created_at": "2026-05-22T08:50:02.095-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:02.095-04:00" + }, + { + "id": "f2474fc5-beaf-448f-8dd7-d9ba9f9d419f", + "created_at": "2026-05-22T08:50:02.099-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature-us_core_v501_body_temperature_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:02.099-04:00" + }, + { + "id": "efd30e12-4462-4df6-8e78-1e2cc67254be", + "created_at": "2026-05-22T08:50:02.102-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_temperature", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:02.102-04:00" + }, + { + "id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "created_at": "2026-05-22T08:50:02.892-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0346cb04-b55a-4464-8b4f-c12861c99d45", + "direction": "outgoing", + "index": 113527, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "c136f67c-9a81-4449-973e-f738149bcac8", + "direction": "outgoing", + "index": 113528, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "97c98864-db1a-497a-9263-5d199691ce09", + "direction": "outgoing", + "index": 113529, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.937-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "f23ad485-47c7-4956-b95d-73576daffa8d", + "direction": "outgoing", + "index": 113530, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "e5893c85-7a9c-4006-81bc-7e9e30b61faa", + "direction": "outgoing", + "index": 113531, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "6ab9382d-c354-480b-8622-5fd48a0206a4", + "direction": "outgoing", + "index": 113532, + "result_id": "40167140-6b84-4412-bc64-6e230c17d4ec", + "status": 200, + "timestamp": "2026-05-22T08:50:02.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:02.892-04:00" + }, + { + "id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "created_at": "2026-05-22T08:50:05.577-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b00e4294-0e99-4561-8dda-61cad85f4c30", + "direction": "outgoing", + "index": 113533, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2254f9cf-2c9e-4332-9812-e9761c6c8b65", + "direction": "outgoing", + "index": 113534, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.594-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "92ef659c-664e-4931-92a6-51f982624d11", + "direction": "outgoing", + "index": 113535, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d7f9470-c6dd-4621-a4ef-4c21a37613d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b2df5b5-5a00-4197-af03-b498fdc53fb2", + "direction": "outgoing", + "index": 113536, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d7f9470-c6dd-4621-a4ef-4c21a37613d6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "70b0186a-954e-46b3-8f80-521271b736c1", + "direction": "outgoing", + "index": 113537, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.629-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1cb59afc-6e86-4320-8748-3d014739f0b8", + "direction": "outgoing", + "index": 113538, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f032e8e2-560b-48fe-b8e1-948a00b8d0ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "658a89e0-d331-4677-ae96-3328ce198f54", + "direction": "outgoing", + "index": 113539, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f032e8e2-560b-48fe-b8e1-948a00b8d0ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63e5449f-7eec-4b3d-a8f2-b887014b75f1", + "direction": "outgoing", + "index": 113540, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c0d9191a-933e-4008-94ca-5aaaf66729ec", + "direction": "outgoing", + "index": 113541, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.675-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3e70c218-687a-4290-86df-1ac587d1ad24", + "direction": "outgoing", + "index": 113542, + "result_id": "e1bbfad7-bd19-4ec4-b95c-9cac19742d76", + "status": 200, + "timestamp": "2026-05-22T08:50:05.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:05.577-04:00" + }, + { + "id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "created_at": "2026-05-22T08:50:06.615-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fa1749ee-6c1f-494b-b567-937cb36184bf", + "direction": "outgoing", + "index": 113543, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.622-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b8032b11-01d0-49f4-9fd8-ba5cbf65739d", + "direction": "outgoing", + "index": 113544, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.644-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d1f25f27-a181-4049-8da4-9eb7d01e12c7", + "direction": "outgoing", + "index": 113545, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.657-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4bd80307-da2e-4300-9a43-1baaefab2d2f", + "direction": "outgoing", + "index": 113546, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a4a7e171-81fb-4936-8333-ef6d0e827a47", + "direction": "outgoing", + "index": 113547, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f1efad84-1c5d-4de7-80a4-dcf162fa99a9", + "direction": "outgoing", + "index": 113548, + "result_id": "1464a5a0-32fb-4780-ad15-0356faa76573", + "status": 200, + "timestamp": "2026-05-22T08:50:06.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:06.615-04:00" + }, + { + "id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "created_at": "2026-05-22T08:50:08.898-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "37a86db8-d4db-48f3-b675-5a73f83ca5c6", + "direction": "outgoing", + "index": 113549, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.901-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e1e4f492-aa3e-475e-bb4f-f3e4c410d4b3", + "direction": "outgoing", + "index": 113550, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ee0affc-121e-41af-a9dc-9aa6d8f3121a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "532b94bc-d264-40a3-bb4a-29318a92c7bf", + "direction": "outgoing", + "index": 113551, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.933-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ee0affc-121e-41af-a9dc-9aa6d8f3121a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4b99a548-0421-44fb-bf98-8f39cca7ca28", + "direction": "outgoing", + "index": 113552, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.945-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "453c34be-4175-4467-8870-6ba13104b581", + "direction": "outgoing", + "index": 113553, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.955-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1187c6e6-4e7c-4459-aea1-939553972cce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff1ed941-bf2e-4017-8fae-2d87eabab995", + "direction": "outgoing", + "index": 113554, + "result_id": "d7337153-c9b3-45d9-9f6d-ccd6805f5b35", + "status": 200, + "timestamp": "2026-05-22T08:50:08.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1187c6e6-4e7c-4459-aea1-939553972cce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:08.898-04:00" + }, + { + "id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "created_at": "2026-05-22T08:50:12.141-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4f70ed2a-7dd1-413e-a62c-80675e541fbe", + "direction": "outgoing", + "index": 113555, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "07935146-c766-4c93-b3ab-90af91aac015", + "direction": "outgoing", + "index": 113556, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fe40a58a-65b5-43b5-a678-30422bf0cf7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "85822f2f-7803-46b5-91f2-9a85e9063797", + "direction": "outgoing", + "index": 113557, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fe40a58a-65b5-43b5-a678-30422bf0cf7c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3819960f-aeb7-462f-946f-9134fa35471d", + "direction": "outgoing", + "index": 113558, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "d5bae7a9-194c-4b74-a9c3-b81de87eb435", + "direction": "outgoing", + "index": 113559, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8975565d-9622-4ccb-a6e2-d854cbc67746\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "83ff10da-cb4e-498f-bd30-988855bd65ae", + "direction": "outgoing", + "index": 113560, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.217-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8975565d-9622-4ccb-a6e2-d854cbc67746\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9f4cc0a-952a-47d7-a48d-fd3bea375829", + "direction": "outgoing", + "index": 113561, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "dc4cdd27-e332-465f-b225-e67373616e41", + "direction": "outgoing", + "index": 113562, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fb297d60-4bdb-4a46-af2c-347c4b7974c0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47e1fd0c-1bf7-4d82-8eb6-6efb817667b3", + "direction": "outgoing", + "index": 113563, + "result_id": "ca5751fb-c519-4326-9230-b47d34fe6117", + "status": 200, + "timestamp": "2026-05-22T08:50:12.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fb297d60-4bdb-4a46-af2c-347c4b7974c0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:12.141-04:00" + }, + { + "id": "20bbe839-4436-4602-903d-640e357bd84c", + "created_at": "2026-05-22T08:50:12.381-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7b4c3489-636b-42b6-9abe-f6de20e35496", + "direction": "outgoing", + "index": 113564, + "result_id": "20bbe839-4436-4602-903d-640e357bd84c", + "status": 200, + "timestamp": "2026-05-22T08:50:12.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:12.381-04:00" + }, + { + "id": "0d043df3-2fd7-4924-9092-a869e6a87910", + "created_at": "2026-05-22T08:50:12.856-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4cfb09e3-bc7d-4b7d-b5b5-e28efa58409d", + "direction": "outgoing", + "index": 113565, + "result_id": "0d043df3-2fd7-4924-9092-a869e6a87910", + "status": 200, + "timestamp": "2026-05-22T08:50:12.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "16d4d796-53e5-4551-9b9a-37b366e1860b", + "direction": "outgoing", + "index": 113566, + "result_id": "0d043df3-2fd7-4924-9092-a869e6a87910", + "status": 200, + "timestamp": "2026-05-22T08:50:12.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "b69933b7-c11c-4384-b146-490c256b1596", + "direction": "outgoing", + "index": 113567, + "result_id": "0d043df3-2fd7-4924-9092-a869e6a87910", + "status": 200, + "timestamp": "2026-05-22T08:50:12.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:12.856-04:00" + }, + { + "id": "d6973850-771f-4812-97ba-9d53f61ec0d6", + "created_at": "2026-05-22T08:50:13.315-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:13.315-04:00" + }, + { + "id": "024de286-b00a-4758-9c90-7b180c9508ef", + "created_at": "2026-05-22T08:50:13.334-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:13.334-04:00" + }, + { + "id": "14f4cff7-54ed-4fe1-8652-4caa645be94e", + "created_at": "2026-05-22T08:50:13.340-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height-us_core_v501_pediatric_weight_for_height_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:13.340-04:00" + }, + { + "id": "f412c7ca-57a6-4194-9418-d91018e8ca5d", + "created_at": "2026-05-22T08:50:13.344-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_weight_for_height", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:13.344-04:00" + }, + { + "id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "created_at": "2026-05-22T08:50:14.689-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3a1d0472-1e50-49e5-af36-c896e9d5912b", + "direction": "outgoing", + "index": 113568, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "5d27dbf2-cd20-48bb-ba30-f934eda0b48a", + "direction": "outgoing", + "index": 113569, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "6a7451b0-5ba6-46ab-ad81-bab0578a1b8d", + "direction": "outgoing", + "index": 113570, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "2f0791a5-4d75-4891-8a52-73e75acfc222", + "direction": "outgoing", + "index": 113571, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "734970b5-9ce1-4032-8a7a-239021e23f28", + "direction": "outgoing", + "index": 113572, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "151b4085-ed9d-40ab-8e23-6289129c134f", + "direction": "outgoing", + "index": 113573, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355", + "verb": "get" + }, + { + "id": "2f6323f0-96db-49dc-a3b6-b597bc3e62d2", + "direction": "outgoing", + "index": 113574, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "aedabbb1-8602-49f0-b578-873adad1b414", + "direction": "outgoing", + "index": 113575, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907", + "verb": "get" + }, + { + "id": "182cf1ea-33ae-45ae-bccd-b66d3e26a88f", + "direction": "outgoing", + "index": 113576, + "result_id": "85c4e26a-ac93-43cb-aa87-b61ab524f215", + "status": 200, + "timestamp": "2026-05-22T08:50:14.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:14.689-04:00" + }, + { + "id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "created_at": "2026-05-22T08:50:15.717-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "95abc2b6-8666-465a-a0dd-7a93ecea023f", + "direction": "outgoing", + "index": 113577, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "08fd8113-625e-4348-b1d3-8a2f260a7fb7", + "direction": "outgoing", + "index": 113578, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4bc0ce3b-2d54-4eaf-9d53-828433cdf414", + "direction": "outgoing", + "index": 113579, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "376dc375-3014-4f2f-9351-c991fb674586", + "direction": "outgoing", + "index": 113580, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.766-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5a2f60ce-19be-4f93-ab39-b723ad09cf42", + "direction": "outgoing", + "index": 113581, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9dcacc70-775b-43d0-8aca-0d55cd97cec8", + "direction": "outgoing", + "index": 113582, + "result_id": "674f1da1-9f55-48f1-975b-71ecf66437f9", + "status": 200, + "timestamp": "2026-05-22T08:50:15.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:15.717-04:00" + }, + { + "id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "created_at": "2026-05-22T08:50:16.765-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4373e233-61c7-474e-8fae-74fbbaf92907", + "direction": "outgoing", + "index": 113583, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.770-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ca661800-43e3-45ee-bfdd-027ca937c1fc", + "direction": "outgoing", + "index": 113584, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e29d2652-3277-4f7e-aca1-980412996c43", + "direction": "outgoing", + "index": 113585, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6a53dad4-ab52-497a-90a9-f3876f68c24d", + "direction": "outgoing", + "index": 113586, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.814-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4e28834e-3f91-4e18-a56e-6936547bf187", + "direction": "outgoing", + "index": 113587, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.825-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7aa36b43-87aa-47c2-82ff-5a0489a461f0", + "direction": "outgoing", + "index": 113588, + "result_id": "06940458-c1ce-4f4b-a569-e2fd34157fbd", + "status": 200, + "timestamp": "2026-05-22T08:50:16.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:16.765-04:00" + }, + { + "id": "2be3f39d-88ca-4add-9818-350af05b256f", + "created_at": "2026-05-22T08:50:17.115-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d886a651-11ae-4ad3-b5b3-17f488044240", + "direction": "outgoing", + "index": 113589, + "result_id": "2be3f39d-88ca-4add-9818-350af05b256f", + "status": 200, + "timestamp": "2026-05-22T08:50:17.117-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "b3af80e0-8286-4fe7-ba76-ee01ce5e5b42", + "direction": "outgoing", + "index": 113590, + "result_id": "2be3f39d-88ca-4add-9818-350af05b256f", + "status": 200, + "timestamp": "2026-05-22T08:50:17.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:17.115-04:00" + }, + { + "id": "15b96708-6483-498f-b198-ce0b52361adc", + "created_at": "2026-05-22T08:50:17.598-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "12625b1e-df9d-4917-93bf-c11ecbfcc0ce", + "direction": "outgoing", + "index": 113591, + "result_id": "15b96708-6483-498f-b198-ce0b52361adc", + "status": 200, + "timestamp": "2026-05-22T08:50:17.603-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "0aec1aa3-ba98-43ce-ade3-efcf08621b33", + "direction": "outgoing", + "index": 113592, + "result_id": "15b96708-6483-498f-b198-ce0b52361adc", + "status": 200, + "timestamp": "2026-05-22T08:50:17.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "3a50b0f9-994c-4343-b6d9-f6799c0b3e0e", + "direction": "outgoing", + "index": 113593, + "result_id": "15b96708-6483-498f-b198-ce0b52361adc", + "status": 200, + "timestamp": "2026-05-22T08:50:17.632-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:17.598-04:00" + }, + { + "id": "464728fe-d451-4f84-92a6-ac8cc8e611e2", + "created_at": "2026-05-22T08:50:17.764-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f00b2de7-bc04-4070-b3d4-46967327d3e7", + "direction": "outgoing", + "index": 113594, + "result_id": "464728fe-d451-4f84-92a6-ac8cc8e611e2", + "status": 200, + "timestamp": "2026-05-22T08:50:17.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:17.764-04:00" + }, + { + "id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "created_at": "2026-05-22T08:50:18.636-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9c72f330-5dca-4aa0-b64d-6100ed2795f7", + "direction": "outgoing", + "index": 113595, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.642-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "03d6f7f5-654a-4c72-bf0f-6fb4ff77808a", + "direction": "outgoing", + "index": 113596, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "2583bb86-7444-4a46-adaf-05ccbf8b03fe", + "direction": "outgoing", + "index": 113597, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355", + "verb": "get" + }, + { + "id": "466411ac-2d60-4e24-9b93-70cc842587f2", + "direction": "outgoing", + "index": 113598, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "7ad21446-aa95-45a6-ba5f-2adaf262b6db", + "direction": "outgoing", + "index": 113599, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=907", + "verb": "get" + }, + { + "id": "ac874ad4-eae9-4a45-bc60-b2b808a085df", + "direction": "outgoing", + "index": 113600, + "result_id": "37f5c4fb-0b1b-4980-ad74-4bf8e63c525b", + "status": 200, + "timestamp": "2026-05-22T08:50:18.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:18.636-04:00" + }, + { + "id": "78350ec5-66e1-48ae-94b9-2bb68ae9dab3", + "created_at": "2026-05-22T08:50:20.147-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:20.147-04:00" + }, + { + "id": "b1155f5b-3a5f-4cd1-a3b2-740d89f8ee52", + "created_at": "2026-05-22T08:50:20.179-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:20.179-04:00" + }, + { + "id": "c2d813e2-efc8-444e-b350-2308e6353542", + "created_at": "2026-05-22T08:50:20.182-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry-us_core_v501_pulse_oximetry_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:20.182-04:00" + }, + { + "id": "252e4426-d1da-4da4-9734-9be9eb3908da", + "created_at": "2026-05-22T08:50:20.184-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pulse_oximetry", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:20.184-04:00" + }, + { + "id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "created_at": "2026-05-22T08:50:26.746-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d20fb6cd-4c26-4c8e-952d-4c13044a611b", + "direction": "outgoing", + "index": 113601, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "245b0850-7ca5-4840-8300-e7890146efdb", + "direction": "outgoing", + "index": 113602, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "218a47d8-432e-4f88-bd56-cb5b60f29dd7", + "direction": "outgoing", + "index": 113603, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.774-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "30005574-f26a-44c6-8eb7-df7d3ae80753", + "direction": "outgoing", + "index": 113604, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3a1a689e-395b-4f8e-a31d-b3e5378ea97e", + "direction": "outgoing", + "index": 113605, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "27b2c4b4-4fa7-4f11-8b48-b6dcc6511de4", + "direction": "outgoing", + "index": 113606, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.815-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b76a5c3-fb96-479c-9fb9-a6d9a4f088c9", + "direction": "outgoing", + "index": 113607, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.826-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad72b95d-388d-45b8-9078-2404112a32c6", + "direction": "outgoing", + "index": 113608, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.837-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ba10f15e-99e6-4360-be56-ff294295a806\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a54f6ee0-628a-4da9-b7b4-cc52045c1150", + "direction": "outgoing", + "index": 113609, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.851-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "cc7cc75f-7b47-4833-a05c-3bebcbc9e3d2", + "direction": "outgoing", + "index": 113610, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.864-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=43160450-983d-45e6-8e22-7105eba6f260\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "43dd9785-bea2-4dff-85b1-67566f775683", + "direction": "outgoing", + "index": 113611, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=43160450-983d-45e6-8e22-7105eba6f260\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "701a11bb-c9c2-4be1-a61e-43a3967118a3", + "direction": "outgoing", + "index": 113612, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=43160450-983d-45e6-8e22-7105eba6f260\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "796a51c4-b44d-4310-a0da-44410ce15f9e", + "direction": "outgoing", + "index": 113613, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "5c3ac081-31ef-420f-a48c-185e20a7d244", + "direction": "outgoing", + "index": 113614, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.914-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9b182a05-dc1f-4ee4-bce5-c152abc9b213\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ed3eafec-16b0-4114-be62-ad4bdce7b81e", + "direction": "outgoing", + "index": 113615, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9b182a05-dc1f-4ee4-bce5-c152abc9b213\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6f6dda8-70dd-40c9-9bcd-36ac993a6305", + "direction": "outgoing", + "index": 113616, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9b182a05-dc1f-4ee4-bce5-c152abc9b213\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5fca4015-71c4-4531-a691-79a024bf6018", + "direction": "outgoing", + "index": 113617, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.950-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "e61e80e4-2394-4b61-874c-7564446dbd0b", + "direction": "outgoing", + "index": 113618, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.961-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bac7be61-7342-4306-9232-c14cc4b5e9b5", + "direction": "outgoing", + "index": 113619, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.971-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e75278bd-7c57-4f8d-8c83-b0b86ad52ee4", + "direction": "outgoing", + "index": 113620, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.982-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a42b7f3c-f539-4e51-84c9-336000f73731", + "direction": "outgoing", + "index": 113621, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:26.992-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "534b2e3e-8931-476a-af2e-501a20e4d082", + "direction": "outgoing", + "index": 113622, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4d4aed72-d45b-485a-a010-77460e54c96d", + "direction": "outgoing", + "index": 113623, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.014-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2db3ab84-5cea-47a8-91a3-80ffa22c10f4", + "direction": "outgoing", + "index": 113624, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.025-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b335a38d-b451-4997-b139-c74487b4ffa4", + "direction": "outgoing", + "index": 113625, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.037-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78899eea-74bf-4413-bfb7-7e7115f7187b", + "direction": "outgoing", + "index": 113626, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.049-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=aff49a64-85df-45b2-8823-59c92a020068\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7d4e7229-66cd-42e5-9efc-02293c8714a9", + "direction": "outgoing", + "index": 113627, + "result_id": "3e53b8f9-e84c-4eeb-9b73-8e67bc5e3db5", + "status": 200, + "timestamp": "2026-05-22T08:50:27.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:26.746-04:00" + }, + { + "id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "created_at": "2026-05-22T08:50:30.550-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "54eabc70-95b4-4c22-b730-c1bae6f79733", + "direction": "outgoing", + "index": 113628, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fbbd4850-b252-425d-851b-b9cff882692f", + "direction": "outgoing", + "index": 113629, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "36bf5035-5224-48c2-8f7d-beffc38b5366", + "direction": "outgoing", + "index": 113630, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.575-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=42b881ad-989e-4997-830e-bff3262f5fef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "87ae20ba-be1f-4c06-bede-33bf9d05036b", + "direction": "outgoing", + "index": 113631, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=42b881ad-989e-4997-830e-bff3262f5fef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78d573c5-44f4-4d8d-a211-83f38ae12b5a", + "direction": "outgoing", + "index": 113632, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=42b881ad-989e-4997-830e-bff3262f5fef\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8ecd3e4-ec9d-4ceb-9670-cc09542db591", + "direction": "outgoing", + "index": 113633, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=42b881ad-989e-4997-830e-bff3262f5fef\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "71fc0129-76d2-48f3-90fa-b5fc6d9ddb7c", + "direction": "outgoing", + "index": 113634, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.628-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "753534e8-aeb5-4abd-b823-aaa8d27c7dfa", + "direction": "outgoing", + "index": 113635, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=449292c5-bfd6-4f3f-9238-6a29f10c45f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8aa0ac57-0c52-4b61-bac2-b1585d108e78", + "direction": "outgoing", + "index": 113636, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=449292c5-bfd6-4f3f-9238-6a29f10c45f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "764fdc6d-7b19-43e0-b41a-fd36c89cc09e", + "direction": "outgoing", + "index": 113637, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=449292c5-bfd6-4f3f-9238-6a29f10c45f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a1f5f839-5067-46a1-97ef-0994bbf3867d", + "direction": "outgoing", + "index": 113638, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=449292c5-bfd6-4f3f-9238-6a29f10c45f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f17a827a-3a17-4721-aac3-e031d502ed2c", + "direction": "outgoing", + "index": 113639, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f34f05bb-ba4b-45af-99de-65e1b82511b3", + "direction": "outgoing", + "index": 113640, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e6c16827-3e58-42a9-b64d-e74cad14e44c", + "direction": "outgoing", + "index": 113641, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "600f6e21-0b40-40d6-acbb-195ac157969f", + "direction": "outgoing", + "index": 113642, + "result_id": "a03f3b2d-cc5b-4a30-ab6c-02cd40ce02ee", + "status": 200, + "timestamp": "2026-05-22T08:50:30.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:30.550-04:00" + }, + { + "id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "created_at": "2026-05-22T08:50:33.755-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "149e49e3-8e5d-4724-9876-f15a7e6a4d42", + "direction": "outgoing", + "index": 113643, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "42f736d3-6267-4f4e-95d9-167d1e5d93b5", + "direction": "outgoing", + "index": 113644, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e6682501-39e1-4fdc-bdb7-a66a0edf7942", + "direction": "outgoing", + "index": 113645, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=400d5c6f-8097-4c88-848e-e1b5350e2cbf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "64ce1b53-656f-445c-a49c-5336be4906fe", + "direction": "outgoing", + "index": 113646, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.794-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=400d5c6f-8097-4c88-848e-e1b5350e2cbf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d22c64f1-05e8-482d-8fbe-5e9e403f2258", + "direction": "outgoing", + "index": 113647, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=400d5c6f-8097-4c88-848e-e1b5350e2cbf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bfeb47d5-060d-4e79-8de2-d39935c9fc46", + "direction": "outgoing", + "index": 113648, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "244b7c77-dd21-449f-ae4c-d1f69206c17f", + "direction": "outgoing", + "index": 113649, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c45f5922-d986-4491-8b4f-c9ee99cb7ee6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b6d03742-0013-4fe0-99a2-83a25e3ce860", + "direction": "outgoing", + "index": 113650, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c45f5922-d986-4491-8b4f-c9ee99cb7ee6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0fa6d9f7-b35a-4eed-94cf-0ea572c42a74", + "direction": "outgoing", + "index": 113651, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c45f5922-d986-4491-8b4f-c9ee99cb7ee6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00851eac-60db-43ef-9654-1543772148e1", + "direction": "outgoing", + "index": 113652, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.869-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d406361f-348d-4f28-ae16-e18c3d79a499", + "direction": "outgoing", + "index": 113653, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.880-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "32b3a56d-d738-4849-9f6f-41738d0e3d58", + "direction": "outgoing", + "index": 113654, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.891-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c0dc9d97-67cb-4117-aacf-03a7b250ef2b", + "direction": "outgoing", + "index": 113655, + "result_id": "a42f5f8c-03f4-4d08-a970-a661f5aab2d4", + "status": 200, + "timestamp": "2026-05-22T08:50:33.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:33.755-04:00" + }, + { + "id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "created_at": "2026-05-22T08:50:38.939-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d0b18a12-5286-49b7-ab63-acd279d72201", + "direction": "outgoing", + "index": 113656, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "01f95e95-a0c7-457d-8875-08ad261209f0", + "direction": "outgoing", + "index": 113657, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b747d20-5ac2-42b6-81c1-83a48399af84", + "direction": "outgoing", + "index": 113658, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92945a3d-f62b-44f5-898a-d4e1b9911aaa", + "direction": "outgoing", + "index": 113659, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d0adeec-9014-4266-92c4-b2c4bba741d3", + "direction": "outgoing", + "index": 113660, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.988-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a074bce2-2810-4d1c-a172-6c9233b5eb03", + "direction": "outgoing", + "index": 113661, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:38.998-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "4d42179e-5ef2-41a8-be43-4bae77e591b0", + "direction": "outgoing", + "index": 113662, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.007-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "67a4af90-c730-4ced-a1f5-b8bef1c596b5", + "direction": "outgoing", + "index": 113663, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b04ca18-8fc2-4247-b568-640555510397", + "direction": "outgoing", + "index": 113664, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8a25b56d-dff3-4ee8-946f-cfdf2fb91ee5", + "direction": "outgoing", + "index": 113665, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "88170c6a-93a4-401c-90cf-485aeb4711d3", + "direction": "outgoing", + "index": 113666, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "2bb1f22a-6475-4bdb-ab71-eb6ef81c5903", + "direction": "outgoing", + "index": 113667, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7ea6ef4e-5384-466b-9d8d-ab60fb6bdb78", + "direction": "outgoing", + "index": 113668, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "743b076b-7691-4345-a7cb-986b90703673", + "direction": "outgoing", + "index": 113669, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.083-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b426d0d0-26d0-4ad3-949c-a9c5f54a2143", + "direction": "outgoing", + "index": 113670, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78686568-85c0-4bb0-b206-d172063b1d6d", + "direction": "outgoing", + "index": 113671, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "858dafa6-a5b0-4c1d-8448-d737a66376f5", + "direction": "outgoing", + "index": 113672, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f7e09f05-22ba-4f21-bbc1-e33a3d025e4b", + "direction": "outgoing", + "index": 113673, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.130-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c5dac0cc-9b66-4750-893c-d8af2f4899bc", + "direction": "outgoing", + "index": 113674, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3ebda61a-58b0-4cad-955d-826b62f90359", + "direction": "outgoing", + "index": 113675, + "result_id": "f8d5e6ff-b67a-4d2b-9ba4-c225ee56a102", + "status": 200, + "timestamp": "2026-05-22T08:50:39.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b0e62c1c-4a57-453b-8baf-513be4ec3cff\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:38.939-04:00" + }, + { + "id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "created_at": "2026-05-22T08:50:45.289-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6f60255f-fbd7-4b73-9672-fa47bd18975d", + "direction": "outgoing", + "index": 113676, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.295-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "43294e4b-fb80-4a14-8815-fc88cb8cc27b", + "direction": "outgoing", + "index": 113677, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.315-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63c0b8aa-a715-4b85-a20c-d1cb928b3aff", + "direction": "outgoing", + "index": 113678, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "abbfc667-c610-47bd-bba1-feef67505fd3", + "direction": "outgoing", + "index": 113679, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c5604acd-343c-49e7-9169-fd902121cb2d", + "direction": "outgoing", + "index": 113680, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.355-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a091c553-cff6-4223-be16-7f8515c9ba11", + "direction": "outgoing", + "index": 113681, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.372-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "9acab541-364d-4167-bfb7-eae10dd5af5d", + "direction": "outgoing", + "index": 113682, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b225f7d3-1ba9-4003-8dc9-bf701238752a", + "direction": "outgoing", + "index": 113683, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f02df9b-a5f1-4ef8-b02e-eba5699de9f3", + "direction": "outgoing", + "index": 113684, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86b3ac7b-5ed0-4e78-9bee-b6114fba067d", + "direction": "outgoing", + "index": 113685, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.420-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "97047448-432e-4772-af6d-e486ebdc13ca", + "direction": "outgoing", + "index": 113686, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "a1c2622b-ca99-497c-b759-227fe99457fc", + "direction": "outgoing", + "index": 113687, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b468cad9-adfb-4772-a50a-ba6b3f48be38", + "direction": "outgoing", + "index": 113688, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7f85671e-3557-49f5-a7d5-86fbd3f84b65", + "direction": "outgoing", + "index": 113689, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2d49b2ad-aa0e-42d7-8b3f-e445f9b81f5b", + "direction": "outgoing", + "index": 113690, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.476-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e90fcc04-4272-4c9e-bc59-71c9e066db0c", + "direction": "outgoing", + "index": 113691, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.490-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7598b288-a6c6-4b50-ad01-1e04e877ca56", + "direction": "outgoing", + "index": 113692, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f1f7c04d-e35a-487e-898a-3a0306f09603", + "direction": "outgoing", + "index": 113693, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.517-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7f79b97d-3af7-4fad-835a-7ffc972dd963", + "direction": "outgoing", + "index": 113694, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.529-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e232d2b-8dc5-4d2a-8887-3206cce24bf6", + "direction": "outgoing", + "index": 113695, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.540-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d3b57435-933a-4391-b166-5034f60ea470\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7fdf9d13-a2f3-46ff-8317-16011cf2c1c6", + "direction": "outgoing", + "index": 113696, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.556-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error", + "verb": "get" + }, + { + "id": "f0490474-0ede-40a3-8820-e09f5ae815c3", + "direction": "outgoing", + "index": 113697, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce717115-3429-45b6-9b6b-40c53e8e2969\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3f8cfc5b-024b-4bb9-9da4-23a2f4ad4d29", + "direction": "outgoing", + "index": 113698, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.582-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce717115-3429-45b6-9b6b-40c53e8e2969\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40c0b547-be7e-40e1-bc92-4fdabc3e1a62", + "direction": "outgoing", + "index": 113699, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce717115-3429-45b6-9b6b-40c53e8e2969\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5c6ef173-f390-4f2a-ba62-5a1e441085bd", + "direction": "outgoing", + "index": 113700, + "result_id": "b04f7719-b01d-48c7-b7ac-d83f8bd06bac", + "status": 200, + "timestamp": "2026-05-22T08:50:45.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce717115-3429-45b6-9b6b-40c53e8e2969\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:45.289-04:00" + }, + { + "id": "33a5d928-f9a2-43ae-aeff-5926e69f828b", + "created_at": "2026-05-22T08:50:45.740-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "533c2f9e-d18f-404c-9401-1d2abf888d22", + "direction": "outgoing", + "index": 113701, + "result_id": "33a5d928-f9a2-43ae-aeff-5926e69f828b", + "status": 200, + "timestamp": "2026-05-22T08:50:45.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/a230c57b-b261-471c-88ed-9871547378df", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:45.740-04:00" + }, + { + "id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "created_at": "2026-05-22T08:50:49.996-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "91984557-7478-40f7-92c5-e61a6ca36af8", + "direction": "outgoing", + "index": 113702, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "309a8cd8-9dd3-4b20-bf39-1e2e1f781e30", + "direction": "outgoing", + "index": 113703, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f2494cc-5216-498a-b891-e07d832b97f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9c0eb30-4c58-459d-b48d-c2c117a39907", + "direction": "outgoing", + "index": 113704, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.039-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f2494cc-5216-498a-b891-e07d832b97f6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "894998f7-feb9-42b7-8a16-42992fb6a0b4", + "direction": "outgoing", + "index": 113705, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.053-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f2494cc-5216-498a-b891-e07d832b97f6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e9f1785c-5ae2-4ef9-80ba-946d025a7973", + "direction": "outgoing", + "index": 113706, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.068-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "934a6d2b-8353-464f-88c3-669ed0cfc238", + "direction": "outgoing", + "index": 113707, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.081-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aaecaf5a-3e72-4ad1-8bf8-7ac82a185952", + "direction": "outgoing", + "index": 113708, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.091-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "170142d4-7839-4c9a-83f1-f6a010a3b258", + "direction": "outgoing", + "index": 113709, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.104-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4b3e054f-3283-43aa-953c-e5a38f715160", + "direction": "outgoing", + "index": 113710, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6fced848-02f6-42a4-a34e-e432d38506f9", + "direction": "outgoing", + "index": 113711, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "daaea4db-a07b-4972-8eff-e4cc06c3e1ca", + "direction": "outgoing", + "index": 113712, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40af9045-d928-4709-86c9-f7c95c3fd0fe", + "direction": "outgoing", + "index": 113713, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.156-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9dc53f7-f819-4f80-b143-436c97c3e50c", + "direction": "outgoing", + "index": 113714, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ccd5c1e0-c99e-4701-ae32-131e62522d55", + "direction": "outgoing", + "index": 113715, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.181-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1310d0dc-c23e-4cd6-a98c-4f75e604a2e1\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d30824f6-df4a-4008-b93b-12f6892070b0", + "direction": "outgoing", + "index": 113716, + "result_id": "6d4fba96-ef16-427a-9119-c6d7cbe8a461", + "status": 200, + "timestamp": "2026-05-22T08:50:50.192-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:49.996-04:00" + }, + { + "id": "2a0adcdb-4a01-4f5c-9444-2652d5896092", + "created_at": "2026-05-22T08:50:53.053-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#449868002)", + "type": "info" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20220301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#266919005)", + "type": "info" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "info" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:53.053-04:00" + }, + { + "id": "15596d7f-d9f4-481f-9432-e9b65c3054cb", + "created_at": "2026-05-22T08:50:53.521-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:53.521-04:00" + }, + { + "id": "fec54b0c-6ff4-4d4f-8fed-19b765f56865", + "created_at": "2026-05-22T08:50:53.523-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus-us_core_v501_smokingstatus_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:53.523-04:00" + }, + { + "id": "1c0738e9-f7cb-4451-ba4a-570c3459ad4f", + "created_at": "2026-05-22T08:50:53.525-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_smokingstatus", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:53.525-04:00" + }, + { + "id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "created_at": "2026-05-22T08:50:54.363-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "912556a5-189f-4995-98eb-78ba02c53e18", + "direction": "outgoing", + "index": 113717, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.370-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "779ffd2b-cd2d-48e2-94b1-5966ee451437", + "direction": "outgoing", + "index": 113718, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.394-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "da934292-914f-4ec1-b1ca-ca2471c9777d", + "direction": "outgoing", + "index": 113719, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "44d5060e-9202-4807-91c1-de762e1d1229", + "direction": "outgoing", + "index": 113720, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "c3819c50-2c29-4b3d-8961-ddcc939bd6ac", + "direction": "outgoing", + "index": 113721, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355", + "verb": "get" + }, + { + "id": "8e2aa8e9-4ef4-4536-ae77-d1dbb3116bcb", + "direction": "outgoing", + "index": 113722, + "result_id": "c1276b02-f640-45c3-9d7f-9993860cb141", + "status": 200, + "timestamp": "2026-05-22T08:50:54.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:54.363-04:00" + }, + { + "id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "created_at": "2026-05-22T08:50:57.511-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d7d8266e-39fd-48da-848f-2d0e57dd85f2", + "direction": "outgoing", + "index": 113723, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.519-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2a60c1bf-88a4-4b7c-8a67-69fa7affa3d5", + "direction": "outgoing", + "index": 113724, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.539-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3b3ee775-95e9-4dd9-8513-34d2b5f0945f", + "direction": "outgoing", + "index": 113725, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.555-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8ce5d218-e857-4ceb-b833-dcd1d0ea4943", + "direction": "outgoing", + "index": 113726, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.569-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bf493280-c0d1-4cf6-aeb3-97e4b46371c4", + "direction": "outgoing", + "index": 113727, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f0207a9-e4de-4b59-acbc-d1c24b227a33\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "23060da7-6f0c-4287-a4f8-c99b3c4cbcb9", + "direction": "outgoing", + "index": 113728, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f0207a9-e4de-4b59-acbc-d1c24b227a33\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a620138e-c67f-46fa-a1f5-bccbff835519", + "direction": "outgoing", + "index": 113729, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3f0207a9-e4de-4b59-acbc-d1c24b227a33\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8c606f89-7885-4c46-a613-7c2cfedb910f", + "direction": "outgoing", + "index": 113730, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "53ac5546-58eb-4c56-985e-5782ce86042e", + "direction": "outgoing", + "index": 113731, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed6eed70-6f9c-4b47-90c1-1208fd6ff8c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8560c657-b058-49df-8fda-630e101b5265", + "direction": "outgoing", + "index": 113732, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.637-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed6eed70-6f9c-4b47-90c1-1208fd6ff8c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "88a315a7-7e45-416d-b13c-11deaf8ff636", + "direction": "outgoing", + "index": 113733, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed6eed70-6f9c-4b47-90c1-1208fd6ff8c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "51ce102f-5385-4d84-9175-e5a42bfdb3cd", + "direction": "outgoing", + "index": 113734, + "result_id": "9f5750be-bb1e-434d-9603-5ee74eb8e7a4", + "status": 200, + "timestamp": "2026-05-22T08:50:57.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:57.511-04:00" + }, + { + "id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "created_at": "2026-05-22T08:50:58.497-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d07fad13-6614-4fd1-8aff-0fbecaa80d6c", + "direction": "outgoing", + "index": 113735, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "64490c66-4bae-4745-9dfd-74967a2a240c", + "direction": "outgoing", + "index": 113736, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "723d019f-5905-475c-ad7c-5811b6521e35", + "direction": "outgoing", + "index": 113737, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4c83397f-8145-4db0-9811-f306a6271d36", + "direction": "outgoing", + "index": 113738, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.549-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8ca5601f-ff5c-459b-ab87-5d6138b45433", + "direction": "outgoing", + "index": 113739, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.562-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "dd077a47-2ed4-4163-b266-2dc0bc598937", + "direction": "outgoing", + "index": 113740, + "result_id": "be1617f7-a6d1-4347-b529-741b328d71ea", + "status": 200, + "timestamp": "2026-05-22T08:50:58.572-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:50:58.497-04:00" + }, + { + "id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "created_at": "2026-05-22T08:51:00.184-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "5715d54a-43f4-4784-9ec1-ccc8661ca0a1", + "direction": "outgoing", + "index": 113741, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "9afcf784-1450-47cd-9c0d-7b3aba02a2b7", + "direction": "outgoing", + "index": 113742, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.213-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40584683-5c18-4eda-912f-5ce1a1e42c9f", + "direction": "outgoing", + "index": 113743, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "64b5200c-6a3a-4a11-b014-adfaf07d25fe", + "direction": "outgoing", + "index": 113744, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad9f1ccc-0471-46ac-97e9-a32b1b33ec56", + "direction": "outgoing", + "index": 113745, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.259-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6909a036-8497-4895-ae25-058e489b0865\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5653234f-b56c-41e8-8904-bf542b20d4eb", + "direction": "outgoing", + "index": 113746, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "66acf210-64b2-48b8-94d7-ff67e4ef1d24", + "direction": "outgoing", + "index": 113747, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f6bfef05-cbdb-4dae-b94b-2242e5be0c1a", + "direction": "outgoing", + "index": 113748, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.298-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6a892cdd-478c-4eef-ab2e-e261950c8389", + "direction": "outgoing", + "index": 113749, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f981b79a-0177-48e3-9c4d-5a9d5cda1e77", + "direction": "outgoing", + "index": 113750, + "result_id": "f1d8336d-e13f-472f-801d-e59ad8681236", + "status": 200, + "timestamp": "2026-05-22T08:51:00.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8e828788-2f5d-41ca-a184-6ba9413e9b54\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:00.184-04:00" + }, + { + "id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "created_at": "2026-05-22T08:51:03.348-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ae24ed00-84a2-4b94-9d82-4fc27270240d", + "direction": "outgoing", + "index": 113751, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.354-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "26ae9b27-a53c-4f4e-8e04-58418ad424a0", + "direction": "outgoing", + "index": 113752, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "370ab008-1f26-4805-b1dd-ddc64b9c25a8", + "direction": "outgoing", + "index": 113753, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00d6aa24-77b5-4430-9388-76fa9cad3a7a", + "direction": "outgoing", + "index": 113754, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7078bc2c-466e-4140-9440-b29517ffcc9f", + "direction": "outgoing", + "index": 113755, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d8930fc-fef8-41c0-bad2-9b7646e0f7e9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "81563c67-a027-4802-99ff-afea8c20b4f2", + "direction": "outgoing", + "index": 113756, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "04c8d25e-c716-4645-8f05-606609e62c29", + "direction": "outgoing", + "index": 113757, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa3f8714-7beb-46ca-b8a6-0cd6f806e81e", + "direction": "outgoing", + "index": 113758, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a6db99ad-92f4-4443-afae-aa20435c2823", + "direction": "outgoing", + "index": 113759, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.465-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8eb324f-633c-4d21-a3de-ddbad770dcee", + "direction": "outgoing", + "index": 113760, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3e65d51c-0375-4d10-b955-1ad4e91bb981\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5c51426c-d13f-4c03-931d-9a5fca83bac6", + "direction": "outgoing", + "index": 113761, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "7afae704-7e82-4206-bb28-f06b061073a7", + "direction": "outgoing", + "index": 113762, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78a8d3d2-1ee3-4c30-a916-e02f47cb908e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47fdfaad-382c-444e-9a23-3ffc1e0208ef", + "direction": "outgoing", + "index": 113763, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78a8d3d2-1ee3-4c30-a916-e02f47cb908e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f103d604-78ca-48e5-8abc-45c82d0f8b7e", + "direction": "outgoing", + "index": 113764, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.528-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78a8d3d2-1ee3-4c30-a916-e02f47cb908e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2ff74a6c-6d22-4dd4-9caf-e2cbf141b379", + "direction": "outgoing", + "index": 113765, + "result_id": "0b82715a-5e94-4b7e-bebd-2f3556b7b083", + "status": 200, + "timestamp": "2026-05-22T08:51:03.539-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=78a8d3d2-1ee3-4c30-a916-e02f47cb908e\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:03.348-04:00" + }, + { + "id": "2d2a6bc6-7484-4f9b-9687-8fdee7fa4deb", + "created_at": "2026-05-22T08:51:03.674-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8c4a2207-09f7-4fe2-8ce0-3a45aebec322", + "direction": "outgoing", + "index": 113766, + "result_id": "2d2a6bc6-7484-4f9b-9687-8fdee7fa4deb", + "status": 200, + "timestamp": "2026-05-22T08:51:03.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:03.674-04:00" + }, + { + "id": "57d3eefb-36be-48a3-941c-df616340e16e", + "created_at": "2026-05-22T08:51:04.172-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fc8cf8b9-1c8f-47cf-87d3-5788aa2c2959", + "direction": "outgoing", + "index": 113767, + "result_id": "57d3eefb-36be-48a3-941c-df616340e16e", + "status": 200, + "timestamp": "2026-05-22T08:51:04.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "fe2d7f3c-11a1-40c3-b3a6-91b6e999e6d6", + "direction": "outgoing", + "index": 113768, + "result_id": "57d3eefb-36be-48a3-941c-df616340e16e", + "status": 200, + "timestamp": "2026-05-22T08:51:04.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=355", + "verb": "get" + }, + { + "id": "ef0bfec4-6c14-4dcb-af35-bdd7821b1df5", + "direction": "outgoing", + "index": 113769, + "result_id": "57d3eefb-36be-48a3-941c-df616340e16e", + "status": 200, + "timestamp": "2026-05-22T08:51:04.208-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:04.172-04:00" + }, + { + "id": "057818cf-ab2b-45ae-90b6-171102bbee86", + "created_at": "2026-05-22T08:51:04.285-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:04.285-04:00" + }, + { + "id": "7b700524-f3ca-4596-968a-a50b92214566", + "created_at": "2026-05-22T08:51:04.293-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:04.293-04:00" + }, + { + "id": "e80e9dd6-5ffb-41b1-ad64-8ea1af2c2055", + "created_at": "2026-05-22T08:51:04.297-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation-us_core_v501_observation_sexual_orientation_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:04.297-04:00" + }, + { + "id": "4d743205-74f8-4782-b5bb-7a410d1ebdac", + "created_at": "2026-05-22T08:51:04.299-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_sexual_orientation", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:04.299-04:00" + }, + { + "id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "created_at": "2026-05-22T08:51:05.163-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d5c054c4-a977-47df-bc26-515e75b8150d", + "direction": "outgoing", + "index": 113770, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "c538e4f5-68bb-484d-9c31-befe5ffd7777", + "direction": "outgoing", + "index": 113771, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "f54cdfd5-0dc4-4312-be68-446909acdd5a", + "direction": "outgoing", + "index": 113772, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "1fb1cdef-6560-45b8-8173-50dfba6880c2", + "direction": "outgoing", + "index": 113773, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "77ada99d-c10a-4dd7-9070-a7c0a26d6c83", + "direction": "outgoing", + "index": 113774, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.215-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355", + "verb": "get" + }, + { + "id": "af6a12d7-97f4-4eaf-b2d1-023a42d27e84", + "direction": "outgoing", + "index": 113775, + "result_id": "b449bae1-0ee3-4f5a-b394-f85f0e1f7d6a", + "status": 200, + "timestamp": "2026-05-22T08:51:05.227-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:05.163-04:00" + }, + { + "id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "created_at": "2026-05-22T08:51:06.022-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "21a94727-7d3e-4e5f-b211-633f89d21886", + "direction": "outgoing", + "index": 113776, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "42ef8d43-5b5d-47d6-8ecb-12198a374e26", + "direction": "outgoing", + "index": 113777, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "40f7f07f-8dcc-456b-942e-456e4b0ee685", + "direction": "outgoing", + "index": 113778, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.055-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8b4a7b95-9cdd-4ec5-8525-b2348f887653", + "direction": "outgoing", + "index": 113779, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fb70a98d-16c4-484e-b760-7aa5dd317876", + "direction": "outgoing", + "index": 113780, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e2958cb3-ad8c-4c2b-a526-94e7bd9b780b", + "direction": "outgoing", + "index": 113781, + "result_id": "d48f1dff-e23d-4968-bb13-421ff23ec895", + "status": 200, + "timestamp": "2026-05-22T08:51:06.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:06.022-04:00" + }, + { + "id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "created_at": "2026-05-22T08:51:06.865-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d679d6d1-af68-4b16-b1fb-3836731b4a67", + "direction": "outgoing", + "index": 113782, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.869-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a937c5da-44d5-4107-9271-f2c1c18173ea", + "direction": "outgoing", + "index": 113783, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.886-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2f8942ff-01d6-47d5-91ce-dbdcfeaf3e70", + "direction": "outgoing", + "index": 113784, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "579edcd2-bfbd-4c52-9b59-6aa115ade451", + "direction": "outgoing", + "index": 113785, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.907-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fc233b1c-b073-4175-86ad-c7be903b1a68", + "direction": "outgoing", + "index": 113786, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d09c4b7b-6ed6-4e3a-833a-6535334408cf", + "direction": "outgoing", + "index": 113787, + "result_id": "1000c8ac-d85a-41f6-b61e-d65a0690ea01", + "status": 200, + "timestamp": "2026-05-22T08:51:06.929-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:06.865-04:00" + }, + { + "id": "e5ec77b4-9025-47ed-a947-ed1dacd787d2", + "created_at": "2026-05-22T08:51:07.311-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "eafc43c9-ab2c-43d9-9f78-fe91b0dcd45f", + "direction": "outgoing", + "index": 113788, + "result_id": "e5ec77b4-9025-47ed-a947-ed1dacd787d2", + "status": 200, + "timestamp": "2026-05-22T08:51:07.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "c2a7c34c-69d2-4db9-94f5-28dd35f39df3", + "direction": "outgoing", + "index": 113789, + "result_id": "e5ec77b4-9025-47ed-a947-ed1dacd787d2", + "status": 200, + "timestamp": "2026-05-22T08:51:07.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:07.311-04:00" + }, + { + "id": "3152e3ad-1d6d-4c46-a9a9-3b4576509075", + "created_at": "2026-05-22T08:51:07.803-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2131e4fc-13a8-4599-b7d1-3838db4a598a", + "direction": "outgoing", + "index": 113790, + "result_id": "3152e3ad-1d6d-4c46-a9a9-3b4576509075", + "status": 200, + "timestamp": "2026-05-22T08:51:07.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "9d1f6275-6195-4d85-8f56-7634083b44d7", + "direction": "outgoing", + "index": 113791, + "result_id": "3152e3ad-1d6d-4c46-a9a9-3b4576509075", + "status": 200, + "timestamp": "2026-05-22T08:51:07.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "6a48b880-fbb6-4e04-9dfd-bda09fd3c9c0", + "direction": "outgoing", + "index": 113792, + "result_id": "3152e3ad-1d6d-4c46-a9a9-3b4576509075", + "status": 200, + "timestamp": "2026-05-22T08:51:07.843-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:07.803-04:00" + }, + { + "id": "63c21d11-cac4-4bde-9720-e5cb5bc4a173", + "created_at": "2026-05-22T08:51:07.972-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d61df932-3793-4c71-96b2-c9466c53942a", + "direction": "outgoing", + "index": 113793, + "result_id": "63c21d11-cac4-4bde-9720-e5cb5bc4a173", + "status": 200, + "timestamp": "2026-05-22T08:51:07.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:07.972-04:00" + }, + { + "id": "51a9be5c-2ea0-4216-b605-85071b03085f", + "created_at": "2026-05-22T08:51:08.406-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "008be1f9-a733-49b5-8d08-c2060ec2c55c", + "direction": "outgoing", + "index": 113794, + "result_id": "51a9be5c-2ea0-4216-b605-85071b03085f", + "status": 200, + "timestamp": "2026-05-22T08:51:08.408-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "21088db0-7f6d-482f-bf76-2f0c6a9fcf41", + "direction": "outgoing", + "index": 113795, + "result_id": "51a9be5c-2ea0-4216-b605-85071b03085f", + "status": 200, + "timestamp": "2026-05-22T08:51:08.424-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355", + "verb": "get" + }, + { + "id": "e21a1097-1c38-4a69-9cba-bb60e6853ca7", + "direction": "outgoing", + "index": 113796, + "result_id": "51a9be5c-2ea0-4216-b605-85071b03085f", + "status": 200, + "timestamp": "2026-05-22T08:51:08.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:08.406-04:00" + }, + { + "id": "594b0154-d81b-4c81-b92b-480c28c8c7b9", + "created_at": "2026-05-22T08:51:09.208-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:09.208-04:00" + }, + { + "id": "ad5e58e5-8d0e-4f79-9e2e-f92559437c4a", + "created_at": "2026-05-22T08:51:09.230-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:09.230-04:00" + }, + { + "id": "4f939e47-96e4-4937-ae6d-b0fe5dd4740d", + "created_at": "2026-05-22T08:51:09.234-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference-us_core_v501_head_circumference_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:09.234-04:00" + }, + { + "id": "a860a1c7-d702-4d91-a0ad-ec38b00e944f", + "created_at": "2026-05-22T08:51:09.241-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:09.241-04:00" + }, + { + "id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "created_at": "2026-05-22T08:51:10.120-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a09bac02-ed34-498a-b82b-cf987d784b55", + "direction": "outgoing", + "index": 113797, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "8e4e24da-2d05-404c-bc15-d17745a9f56e", + "direction": "outgoing", + "index": 113798, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "6623ae01-4e80-4045-9ba6-e789f69aedcd", + "direction": "outgoing", + "index": 113799, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "31020d5f-059b-4bb5-8f74-4ebfe0fdb5b4", + "direction": "outgoing", + "index": 113800, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "8e7fb361-34f1-46cb-b56d-2d46409d5a27", + "direction": "outgoing", + "index": 113801, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "33cf9199-f890-46b7-8a51-e1d6a1840747", + "direction": "outgoing", + "index": 113802, + "result_id": "aa4aed7c-e0d5-46b6-b7db-24120ea8bdee", + "status": 200, + "timestamp": "2026-05-22T08:51:10.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:10.120-04:00" + }, + { + "id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "created_at": "2026-05-22T08:51:12.665-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9f5b66ce-79a7-4714-8c91-715c694523e6", + "direction": "outgoing", + "index": 113803, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f6cfc013-20e2-417f-890a-0a7444d12d28", + "direction": "outgoing", + "index": 113804, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.696-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a724a5c4-3807-43d6-b1ec-c334e7960742", + "direction": "outgoing", + "index": 113805, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.735-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=afc2e9ff-7953-4dad-9396-e514efec6393\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0a8c5ce-bd74-45a0-b299-eeab42829ff5", + "direction": "outgoing", + "index": 113806, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.764-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "11a3274c-3da8-4edd-aa3b-dc456e263631", + "direction": "outgoing", + "index": 113807, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.796-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d80cf2d-31ad-4952-9a97-6d11fcde3dce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f04200f-88b3-443e-92ee-35e9aee363ca", + "direction": "outgoing", + "index": 113808, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a59dbfc6-af2f-4926-b1bb-de30ab9004c9", + "direction": "outgoing", + "index": 113809, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c758915e-c3fa-4615-bc8b-24f2545786eb", + "direction": "outgoing", + "index": 113810, + "result_id": "629985f2-bf95-4f9c-ae67-93d8734a5df0", + "status": 200, + "timestamp": "2026-05-22T08:51:12.892-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:12.665-04:00" + }, + { + "id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "created_at": "2026-05-22T08:51:13.798-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "bdc21a3a-cd88-4aae-8c42-598f7ae9b8ee", + "direction": "outgoing", + "index": 113811, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.803-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a36b523c-de84-4cf0-912f-df229a2ed451", + "direction": "outgoing", + "index": 113812, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.832-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b6c76596-a6f9-4997-891f-c9bc6f48b53c", + "direction": "outgoing", + "index": 113813, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.854-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e51fd1a3-7d10-4bdc-a58f-c83cf85364f7", + "direction": "outgoing", + "index": 113814, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.874-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ac05c9b8-d6d8-4e1c-8252-3ba99e84d4fc", + "direction": "outgoing", + "index": 113815, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.889-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0be51339-271e-472a-85de-f315db6d4342", + "direction": "outgoing", + "index": 113816, + "result_id": "6e77bd3c-9c06-46ab-b41c-e2d138b00ea8", + "status": 200, + "timestamp": "2026-05-22T08:51:13.917-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:13.798-04:00" + }, + { + "id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "created_at": "2026-05-22T08:51:15.979-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f4be6609-551f-4262-91f0-07852521096a", + "direction": "outgoing", + "index": 113817, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:15.985-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "3bc63190-3c3c-4c62-b9b2-f02305f344ca", + "direction": "outgoing", + "index": 113818, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:16.007-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8b7a2b4e-1855-41a6-bc4a-fa11ca5393a4", + "direction": "outgoing", + "index": 113819, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:16.023-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "818660c3-a600-4a8a-8e04-f22d69ebf2ac", + "direction": "outgoing", + "index": 113820, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:16.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e8088e31-5ea8-4c03-84ac-aea0e6722ace", + "direction": "outgoing", + "index": 113821, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:16.052-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b96b3562-f73c-443b-b99b-6425a07e3fb2", + "direction": "outgoing", + "index": 113822, + "result_id": "ebe5d373-8c63-4c2e-bd03-2c3cd964eab1", + "status": 200, + "timestamp": "2026-05-22T08:51:16.067-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:15.979-04:00" + }, + { + "id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "created_at": "2026-05-22T08:51:19.552-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6f3b9b78-fd93-43b3-a109-f4a0952aca87", + "direction": "outgoing", + "index": 113823, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "b11a2499-6bf3-4c66-a864-5104f1908e1d", + "direction": "outgoing", + "index": 113824, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.582-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9c7f4e99-f833-4cd8-9f1e-afd3b5c33425", + "direction": "outgoing", + "index": 113825, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.596-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "12d502bd-c25e-4948-af7d-9c5254186bdc", + "direction": "outgoing", + "index": 113826, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.613-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "b213baa4-f6d3-4618-aed2-05cb3eb1967a", + "direction": "outgoing", + "index": 113827, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5041c812-fb71-4cf8-88a0-07aff397c3b7", + "direction": "outgoing", + "index": 113828, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c55a24dc-b068-40b1-bdb3-a9e0d57e627d", + "direction": "outgoing", + "index": 113829, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.654-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "320e6ab5-25bb-4d20-af7e-5b35cde4c5dd", + "direction": "outgoing", + "index": 113830, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.666-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "48e3de42-1766-4fb7-8f89-80f5e24721f5", + "direction": "outgoing", + "index": 113831, + "result_id": "ff33ba48-5f97-4a73-9851-b09a92a6e4ff", + "status": 200, + "timestamp": "2026-05-22T08:51:19.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:19.552-04:00" + }, + { + "id": "37032f4b-afe5-418d-a7da-f4386846368d", + "created_at": "2026-05-22T08:51:19.838-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "53e40ca6-5633-4e62-8743-8d1a0be71652", + "direction": "outgoing", + "index": 113832, + "result_id": "37032f4b-afe5-418d-a7da-f4386846368d", + "status": 200, + "timestamp": "2026-05-22T08:51:19.840-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:19.838-04:00" + }, + { + "id": "bad89f9a-4dcf-4221-b7f8-ba1672dc5ef1", + "created_at": "2026-05-22T08:51:20.319-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0ce92d86-51ab-41b0-8e75-d9addd4499a0", + "direction": "outgoing", + "index": 113833, + "result_id": "bad89f9a-4dcf-4221-b7f8-ba1672dc5ef1", + "status": 200, + "timestamp": "2026-05-22T08:51:20.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "3f01cb27-b7ec-46fb-80ee-8ad59bbe9836", + "direction": "outgoing", + "index": 113834, + "result_id": "bad89f9a-4dcf-4221-b7f8-ba1672dc5ef1", + "status": 200, + "timestamp": "2026-05-22T08:51:20.370-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "78dab9d0-8472-4e4a-ab09-afef14599a82", + "direction": "outgoing", + "index": 113835, + "result_id": "bad89f9a-4dcf-4221-b7f8-ba1672dc5ef1", + "status": 200, + "timestamp": "2026-05-22T08:51:20.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:20.319-04:00" + }, + { + "id": "f20f334a-9e23-4b62-9c30-ae98d9a409f5", + "created_at": "2026-05-22T08:51:20.849-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:20.849-04:00" + }, + { + "id": "dd45aaad-807f-4a22-903d-d8727b176b82", + "created_at": "2026-05-22T08:51:21.048-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:21.048-04:00" + }, + { + "id": "9fc61660-8eff-4254-9174-6ceffbc34c1d", + "created_at": "2026-05-22T08:51:21.051-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height-us_core_v501_body_height_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:21.051-04:00" + }, + { + "id": "a62e1894-6013-4a57-ac76-e1a5855cf2c6", + "created_at": "2026-05-22T08:51:21.052-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_height", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:21.052-04:00" + }, + { + "id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "created_at": "2026-05-22T08:51:21.855-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5f50d096-2243-41af-b905-8eab51214496", + "direction": "outgoing", + "index": 113836, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85", + "verb": "get" + }, + { + "id": "783c899d-ab7e-4e06-9bba-165f5205d3d4", + "direction": "outgoing", + "index": 113837, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "2c4be31f-931b-4990-86c4-3040b620579d", + "direction": "outgoing", + "index": 113838, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "82a23c05-8b24-410b-a22a-7a9895139aae", + "direction": "outgoing", + "index": 113839, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.913-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "ef1110ce-9c42-43e7-887d-eea5c263f626", + "direction": "outgoing", + "index": 113840, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "cf621926-3230-42a9-a943-1dcb13ac66aa", + "direction": "outgoing", + "index": 113841, + "result_id": "d7a2bbcf-c18d-4dc4-94b1-cf4fc9de142f", + "status": 200, + "timestamp": "2026-05-22T08:51:21.934-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:21.855-04:00" + }, + { + "id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "created_at": "2026-05-22T08:51:24.527-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2ad46eb6-f12e-47c7-8ce0-53476b88e452", + "direction": "outgoing", + "index": 113842, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.529-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1c305586-bca7-43ee-960d-3bb55f5eae4d", + "direction": "outgoing", + "index": 113843, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7da9cc4a-d1f8-4ad4-ad15-4978ae67a793", + "direction": "outgoing", + "index": 113844, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "eff3fee7-5a61-41ed-8fe7-4dc03e9e784c", + "direction": "outgoing", + "index": 113845, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.564-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "fd799d35-9efe-4cf1-9198-d1847f404af5", + "direction": "outgoing", + "index": 113846, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.577-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=119baf53-b167-4ab1-bf20-bdee3a390557\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9dd9caa6-98dc-4d8f-9c9d-f4f3dca9c607", + "direction": "outgoing", + "index": 113847, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=119baf53-b167-4ab1-bf20-bdee3a390557\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "554a06b1-08c8-4af2-bdb0-e030e44f7100", + "direction": "outgoing", + "index": 113848, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.600-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "481c64a6-1efc-4252-ba21-5dae01d98eb9", + "direction": "outgoing", + "index": 113849, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f42c7ee-5281-4c11-8307-ee1a052d7779\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aac06d50-854c-4a49-bab1-76aeb7d051bd", + "direction": "outgoing", + "index": 113850, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.621-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f42c7ee-5281-4c11-8307-ee1a052d7779\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0fa740db-6ffd-4b00-967a-230fbe1be51d", + "direction": "outgoing", + "index": 113851, + "result_id": "4f017f85-8d5b-4448-8b30-466bd5474720", + "status": 200, + "timestamp": "2026-05-22T08:51:24.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:24.527-04:00" + }, + { + "id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "created_at": "2026-05-22T08:51:25.519-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4e457d0d-7d08-4773-a415-f504061ef8e3", + "direction": "outgoing", + "index": 113852, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.521-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7b694ef0-4833-4719-bd6e-3159dcdc8356", + "direction": "outgoing", + "index": 113853, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9822225f-31ed-4aad-94b0-b8a3c53e91f4", + "direction": "outgoing", + "index": 113854, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.583-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c3252a3c-3492-4746-ab3c-30431ce86e2a", + "direction": "outgoing", + "index": 113855, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0d226e1c-affb-4f43-96e0-dd1ea4d65fad", + "direction": "outgoing", + "index": 113856, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1555e485-d76e-445e-b228-1930db18549f", + "direction": "outgoing", + "index": 113857, + "result_id": "79b8daf7-3f1f-4902-b384-90dfcc6f7e38", + "status": 200, + "timestamp": "2026-05-22T08:51:25.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:25.519-04:00" + }, + { + "id": "bf9b5437-5512-4e3d-9248-11808744664f", + "created_at": "2026-05-22T08:51:26.678-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "323b1cdb-1f02-41ad-974a-f6c16b6a511a", + "direction": "outgoing", + "index": 113858, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.683-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "7b76c097-e830-4129-95a0-0ed5e1e9cec0", + "direction": "outgoing", + "index": 113859, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.700-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "65e7d2ce-b7d0-4be8-bbdf-a379a567c9fb", + "direction": "outgoing", + "index": 113860, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f48e2a06-1a47-4818-98c5-efa2fc353bc5", + "direction": "outgoing", + "index": 113861, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.726-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "4584a0a4-b308-4c0e-9a4c-7cd9326d0ed1", + "direction": "outgoing", + "index": 113862, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "293b05cc-8799-4735-a040-bba0a198aa85", + "direction": "outgoing", + "index": 113863, + "result_id": "bf9b5437-5512-4e3d-9248-11808744664f", + "status": 200, + "timestamp": "2026-05-22T08:51:26.747-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:26.678-04:00" + }, + { + "id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "created_at": "2026-05-22T08:51:28.351-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "bd20654e-cdb7-4576-b831-46912d8294d2", + "direction": "outgoing", + "index": 113864, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.355-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "e52bc629-61f0-499d-996b-8a65c58af49d", + "direction": "outgoing", + "index": 113865, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "18dff001-67b9-4fcb-8ca0-149f41f897c1", + "direction": "outgoing", + "index": 113866, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "321ceca4-552b-499d-953e-0b496b802831", + "direction": "outgoing", + "index": 113867, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "4a3511ee-9bbf-40fa-bd90-962bf51d2e7a", + "direction": "outgoing", + "index": 113868, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b31e434-b618-4480-8f07-a920e873c4b5", + "direction": "outgoing", + "index": 113869, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.430-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2d0ef38f-e310-4c6c-8dcb-0ba187e5b45e", + "direction": "outgoing", + "index": 113870, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.443-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "5872eee3-be02-4991-84ad-584e3f37c4aa", + "direction": "outgoing", + "index": 113871, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b474280d-be80-43b0-8eb9-36502cfbcd30", + "direction": "outgoing", + "index": 113872, + "result_id": "98e0b802-f347-4f2f-9248-486ffc7c4294", + "status": 200, + "timestamp": "2026-05-22T08:51:28.473-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:28.351-04:00" + }, + { + "id": "6992f1df-d184-499f-b040-b2f175e70fa9", + "created_at": "2026-05-22T08:51:28.612-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "49313f83-20cd-43ed-af7f-ccf6f0092749", + "direction": "outgoing", + "index": 113873, + "result_id": "6992f1df-d184-499f-b040-b2f175e70fa9", + "status": 200, + "timestamp": "2026-05-22T08:51:28.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:28.612-04:00" + }, + { + "id": "febf6790-fa7a-466a-b19b-d44fc12cc9e5", + "created_at": "2026-05-22T08:51:29.099-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "846d04da-812b-43c0-a42e-93be012240c6", + "direction": "outgoing", + "index": 113874, + "result_id": "febf6790-fa7a-466a-b19b-d44fc12cc9e5", + "status": 200, + "timestamp": "2026-05-22T08:51:29.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85", + "verb": "get" + }, + { + "id": "42b53b44-c567-4cc6-9bcf-31b6754214b5", + "direction": "outgoing", + "index": 113875, + "result_id": "febf6790-fa7a-466a-b19b-d44fc12cc9e5", + "status": 200, + "timestamp": "2026-05-22T08:51:29.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "4128127c-16c0-467d-9f34-32ca7a5bd9da", + "direction": "outgoing", + "index": 113876, + "result_id": "febf6790-fa7a-466a-b19b-d44fc12cc9e5", + "status": 200, + "timestamp": "2026-05-22T08:51:29.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:29.099-04:00" + }, + { + "id": "f26abd1f-cbbf-4bb1-88ef-58dcc4d23b22", + "created_at": "2026-05-22T08:51:29.832-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:29.832-04:00" + }, + { + "id": "90cf65c9-1f8c-42c7-9185-822416675989", + "created_at": "2026-05-22T08:51:29.851-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:29.851-04:00" + }, + { + "id": "62e89e26-bce8-46eb-b06e-9bcfb35260fd", + "created_at": "2026-05-22T08:51:29.856-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi-us_core_v501_bmi_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:29.856-04:00" + }, + { + "id": "2e4f546c-589f-4779-8a8e-0199a5f8d611", + "created_at": "2026-05-22T08:51:29.859-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_bmi", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:29.859-04:00" + }, + { + "id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "created_at": "2026-05-22T08:51:30.852-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "468a54fa-0fae-4602-b1ab-013de369a495", + "direction": "outgoing", + "index": 113877, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.855-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "68f2169e-0580-4ed1-b1e8-5be1ad51eaf0", + "direction": "outgoing", + "index": 113878, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "9d904553-0252-4563-b05e-579100ccc814", + "direction": "outgoing", + "index": 113879, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "5c6711ee-6a4e-40c4-b761-0e91b6d81365", + "direction": "outgoing", + "index": 113880, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "28a2722b-160d-45f4-a505-c0a723aa1e69", + "direction": "outgoing", + "index": 113881, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "7e44d32e-be19-414e-8a3e-ac760d43e9d2", + "direction": "outgoing", + "index": 113882, + "result_id": "a1a55b82-39c4-4831-b1cc-728494f6ee1d", + "status": 200, + "timestamp": "2026-05-22T08:51:30.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:30.852-04:00" + }, + { + "id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "created_at": "2026-05-22T08:51:33.816-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bdecefbd-2d6d-433f-9323-a43d3f9a197c", + "direction": "outgoing", + "index": 113883, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b678e871-94e3-4278-81bb-e2d16b8369b4", + "direction": "outgoing", + "index": 113884, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e6a8bf6c-9711-4466-9f76-ef7b4b9c1ae4", + "direction": "outgoing", + "index": 113885, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b81da82-d3c4-497a-901b-f4587122cd3f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "01e72913-7156-4485-bb37-d61777b25de1", + "direction": "outgoing", + "index": 113886, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5770f6e7-659d-4fe5-a3f2-c57c0fbb9707", + "direction": "outgoing", + "index": 113887, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ee21343b-e8e8-4b48-8159-6634ea7e1d4b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c934a2b0-f787-4032-a72d-beee9563c782", + "direction": "outgoing", + "index": 113888, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.885-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "986ec8ef-a7f9-4af9-84ff-d835b3885a1d", + "direction": "outgoing", + "index": 113889, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b25cb2ee-94dd-4b02-b869-6ebe8154149f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b2d757c-c223-4105-99dd-43c725ac94a1", + "direction": "outgoing", + "index": 113890, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6a7551e1-c5a2-4f2e-bcb8-07bb49a443fd", + "direction": "outgoing", + "index": 113891, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.927-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b6888e5c-3d5b-4755-8ed6-9eb7214151e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "148c4f53-8dc9-4a93-95f8-67d322dfbd39", + "direction": "outgoing", + "index": 113892, + "result_id": "a86fc15f-1340-400e-b8eb-5af3842a2b62", + "status": 200, + "timestamp": "2026-05-22T08:51:33.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:33.816-04:00" + }, + { + "id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "created_at": "2026-05-22T08:51:34.915-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4178d384-e46d-4ccc-9913-355651e50b26", + "direction": "outgoing", + "index": 113893, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4c47794d-c16c-42aa-a0c8-390a26eb11a4", + "direction": "outgoing", + "index": 113894, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ea381ecc-8317-406c-bc18-3bdc78d0add4", + "direction": "outgoing", + "index": 113895, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.951-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "799ab0f8-f136-4810-8c4d-2bd14873c920", + "direction": "outgoing", + "index": 113896, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.963-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "63fbe1c3-fc3b-4f3a-b6cc-fcb494fbb500", + "direction": "outgoing", + "index": 113897, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "787febfa-b01b-453c-a79f-92dc21db501f", + "direction": "outgoing", + "index": 113898, + "result_id": "52f7818c-9364-4fb8-b6ac-63e8c962096b", + "status": 200, + "timestamp": "2026-05-22T08:51:34.987-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:34.915-04:00" + }, + { + "id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "created_at": "2026-05-22T08:51:36.052-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a4ee4cf4-fb29-4c2e-8e23-ee43ce8bd951", + "direction": "outgoing", + "index": 113899, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "7a4dc025-83e8-4a61-9e30-fc6db5bd9743", + "direction": "outgoing", + "index": 113900, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fcb5dec5-4f79-4f17-afec-d9bbbe49d4ff", + "direction": "outgoing", + "index": 113901, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "44f37aaf-9f62-4833-8bf8-468e91fb86d0", + "direction": "outgoing", + "index": 113902, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "54d7f1af-2694-4f14-abdf-aaf811aae353", + "direction": "outgoing", + "index": 113903, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.120-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea9f51ea-1fc9-4569-af9b-42af91c4716e", + "direction": "outgoing", + "index": 113904, + "result_id": "64b2b941-45c8-42ca-9441-fe14b1ae1211", + "status": 200, + "timestamp": "2026-05-22T08:51:36.133-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:36.052-04:00" + }, + { + "id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "created_at": "2026-05-22T08:51:37.784-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a6ccdebe-b7e2-4349-a14c-05bab5688c61", + "direction": "outgoing", + "index": 113905, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "699a31dd-2626-4467-9ac8-b9f0ae588d5f", + "direction": "outgoing", + "index": 113906, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.800-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8a10dbf-3f7b-48d7-a03f-4278170c4bde", + "direction": "outgoing", + "index": 113907, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.810-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fa5cba12-06da-4fc8-8b12-418045141f03", + "direction": "outgoing", + "index": 113908, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "f7d182b0-5ce3-41bb-a8ee-78fb1eab76f4", + "direction": "outgoing", + "index": 113909, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.832-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec74030f-be94-44ad-9e95-f17d340f0cbe", + "direction": "outgoing", + "index": 113910, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f6a01227-a2d4-46f1-82a5-fae9f66e7b5e", + "direction": "outgoing", + "index": 113911, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.855-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "a0fd8d85-b227-43e9-afc9-477829c10f91", + "direction": "outgoing", + "index": 113912, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.866-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7bc9437a-e469-40cc-a856-e23157f348b5", + "direction": "outgoing", + "index": 113913, + "result_id": "130fe1d8-5dcc-4a0f-b3eb-7bebfb451e92", + "status": 200, + "timestamp": "2026-05-22T08:51:37.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:37.784-04:00" + }, + { + "id": "c0d0c864-bbcd-439f-8858-e08396003a6a", + "created_at": "2026-05-22T08:51:38.015-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3d462761-37b9-407c-aeb4-f561317751da", + "direction": "outgoing", + "index": 113914, + "result_id": "c0d0c864-bbcd-439f-8858-e08396003a6a", + "status": 200, + "timestamp": "2026-05-22T08:51:38.018-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:38.015-04:00" + }, + { + "id": "8c1d99b2-8655-41e5-a0b5-fb273c1eb2cb", + "created_at": "2026-05-22T08:51:38.499-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7aa285da-9671-4666-a911-530bf824b940", + "direction": "outgoing", + "index": 113915, + "result_id": "8c1d99b2-8655-41e5-a0b5-fb273c1eb2cb", + "status": 200, + "timestamp": "2026-05-22T08:51:38.505-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "ff90db43-ec86-4bcd-8a49-d5de8affda10", + "direction": "outgoing", + "index": 113916, + "result_id": "8c1d99b2-8655-41e5-a0b5-fb273c1eb2cb", + "status": 200, + "timestamp": "2026-05-22T08:51:38.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "2699dc42-0d70-4ce4-90c4-3eaa0b9cee7e", + "direction": "outgoing", + "index": 113917, + "result_id": "8c1d99b2-8655-41e5-a0b5-fb273c1eb2cb", + "status": 200, + "timestamp": "2026-05-22T08:51:38.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:38.499-04:00" + }, + { + "id": "4212a477-9b5f-4ee7-ab53-c02d11dbb3ff", + "created_at": "2026-05-22T08:51:40.979-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:40.979-04:00" + }, + { + "id": "3de471f6-8117-4885-b1d7-2eea7279b15f", + "created_at": "2026-05-22T08:51:41.014-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:41.014-04:00" + }, + { + "id": "7cca2d62-a26c-47a1-866b-8b852f1fce7a", + "created_at": "2026-05-22T08:51:41.019-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure-us_core_v501_blood_pressure_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:41.019-04:00" + }, + { + "id": "0b51cb66-a0b8-468c-a099-0dccb456bd7c", + "created_at": "2026-05-22T08:51:41.021-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_blood_pressure", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:41.021-04:00" + }, + { + "id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "created_at": "2026-05-22T08:51:41.853-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cce20055-b236-47c8-8989-62b0bc25b242", + "direction": "outgoing", + "index": 113918, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.859-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85", + "verb": "get" + }, + { + "id": "773c3c0b-fa08-40c5-bafc-7e3ca32effc1", + "direction": "outgoing", + "index": 113919, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.881-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "8df42df3-8cad-4b0b-96d4-5bc43eca8c32", + "direction": "outgoing", + "index": 113920, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "0015a1e8-ca91-4623-8726-caec417a4005", + "direction": "outgoing", + "index": 113921, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cimaging\u0026patient=85", + "verb": "get" + }, + { + "id": "5a173ee6-025b-42bd-a443-42cee6b7cf6f", + "direction": "outgoing", + "index": 113922, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.919-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355", + "verb": "get" + }, + { + "id": "1f013001-9b94-414f-82cc-35b8575db93e", + "direction": "outgoing", + "index": 113923, + "result_id": "7ef81a81-c715-4810-8923-7e67e42e5b01", + "status": 200, + "timestamp": "2026-05-22T08:51:41.930-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:41.853-04:00" + }, + { + "id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "created_at": "2026-05-22T08:51:42.930-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9e0f5bc6-2feb-467c-99ab-415ad47749ea", + "direction": "outgoing", + "index": 113924, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:42.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=2018-08-17T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "faed6e7b-0b90-4879-934b-281a1a8070de", + "direction": "outgoing", + "index": 113925, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:42.957-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=gt2018-08-16T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d26e895f-07f8-4d82-b7ea-8f57d9c32b40", + "direction": "outgoing", + "index": 113926, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:42.971-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=ge2018-08-16T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9d994627-457c-4f7c-ad60-c70ed8717964", + "direction": "outgoing", + "index": 113927, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:42.985-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=lt2018-08-18T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d9dc81f5-8484-4e53-8cbc-5b5d444d9a73", + "direction": "outgoing", + "index": 113928, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:43.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=le2018-08-18T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "77decd6a-807f-4011-84d3-03dbf305baab", + "direction": "outgoing", + "index": 113929, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:43.012-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cimaging\u0026date=2018-08-17T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2254ab12-b92e-47dc-90e2-3e92c40cca85", + "direction": "outgoing", + "index": 113930, + "result_id": "9f259191-02bf-4a39-aba6-6976c74b87ac", + "status": 200, + "timestamp": "2026-05-22T08:51:43.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026date=2019-02-03T19:43:30.000Z\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:42.930-04:00" + }, + { + "id": "8f347b30-16c6-4bde-a76a-aedff6025862", + "created_at": "2026-05-22T08:51:43.394-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a049d4e7-6741-4d3a-b07b-91b5c98aeaf8", + "direction": "outgoing", + "index": 113931, + "result_id": "8f347b30-16c6-4bde-a76a-aedff6025862", + "status": 200, + "timestamp": "2026-05-22T08:51:43.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026patient=85", + "verb": "get" + }, + { + "id": "e08436b6-104e-4eae-be94-77c9a9210d1c", + "direction": "outgoing", + "index": 113932, + "result_id": "8f347b30-16c6-4bde-a76a-aedff6025862", + "status": 200, + "timestamp": "2026-05-22T08:51:43.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C33728-7\u0026patient=85", + "verb": "get" + }, + { + "id": "ae8c1df7-0aed-430a-84c3-98e89154f9d2", + "direction": "outgoing", + "index": 113933, + "result_id": "8f347b30-16c6-4bde-a76a-aedff6025862", + "status": 200, + "timestamp": "2026-05-22T08:51:43.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=19005-8\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:43.394-04:00" + }, + { + "id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "created_at": "2026-05-22T08:51:44.387-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "19b99df4-650b-4ced-8853-4b3d8fd3c816", + "direction": "outgoing", + "index": 113934, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026date=2018-08-17T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "12bd2b92-00d9-4e94-9000-bc8ccdf45c73", + "direction": "outgoing", + "index": 113935, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026date=gt2018-08-16T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "677a2527-f7e0-4d53-9222-6a30b340481f", + "direction": "outgoing", + "index": 113936, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026date=ge2018-08-16T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "277eac56-56f7-49f3-bf04-e0e443c3baee", + "direction": "outgoing", + "index": 113937, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026date=lt2018-08-18T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fecbef99-5582-44ee-8229-2dde2b165f79", + "direction": "outgoing", + "index": 113938, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.454-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=33728-7\u0026date=le2018-08-18T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bb330dc9-1b4f-4d5c-9d19-699fc3b07404", + "direction": "outgoing", + "index": 113939, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.465-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C33728-7\u0026date=2018-08-17T17:44:25-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6c793a95-9a3b-441e-a8b1-70fb25b5023b", + "direction": "outgoing", + "index": 113940, + "result_id": "c6da6c0d-f953-4e49-9da8-d28b6a3ac744", + "status": 200, + "timestamp": "2026-05-22T08:51:44.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=19005-8\u0026date=2019-02-03T19:43:30.000Z\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:44.387-04:00" + }, + { + "id": "5093e435-c3c4-4ec8-958c-494a44ef4374", + "created_at": "2026-05-22T08:51:45.027-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "07ae1ec1-5bae-4dc4-bbbc-ab84b643093a", + "direction": "outgoing", + "index": 113941, + "result_id": "5093e435-c3c4-4ec8-958c-494a44ef4374", + "status": 200, + "timestamp": "2026-05-22T08:51:45.032-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "6289f063-f0ca-4429-8405-e80d63906df6", + "direction": "outgoing", + "index": 113942, + "result_id": "5093e435-c3c4-4ec8-958c-494a44ef4374", + "status": 200, + "timestamp": "2026-05-22T08:51:45.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cimaging\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "4236c265-4138-4491-a0f7-7897b8203de8", + "direction": "outgoing", + "index": 113943, + "result_id": "5093e435-c3c4-4ec8-958c-494a44ef4374", + "status": 200, + "timestamp": "2026-05-22T08:51:45.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "ec3beb9d-6f7f-435a-aa6d-fab3c800f998", + "direction": "outgoing", + "index": 113944, + "result_id": "5093e435-c3c4-4ec8-958c-494a44ef4374", + "status": 200, + "timestamp": "2026-05-22T08:51:45.079-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:45.027-04:00" + }, + { + "id": "c313a9aa-af96-4c8a-a3dd-d0ebcdfc2466", + "created_at": "2026-05-22T08:51:45.204-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2aa3c935-6d8f-4632-a8be-257808a1e4b9", + "direction": "outgoing", + "index": 113945, + "result_id": "c313a9aa-af96-4c8a-a3dd-d0ebcdfc2466", + "status": 200, + "timestamp": "2026-05-22T08:51:45.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:45.204-04:00" + }, + { + "id": "4a8cb409-5399-4f93-841a-0f239a10abca", + "created_at": "2026-05-22T08:51:45.727-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b2225826-1f7d-471e-9cf5-494cf2ecc34c", + "direction": "outgoing", + "index": 113946, + "result_id": "4a8cb409-5399-4f93-841a-0f239a10abca", + "status": 200, + "timestamp": "2026-05-22T08:51:45.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85", + "verb": "get" + }, + { + "id": "f298123a-9877-4ad4-a628-0f5415c2642b", + "direction": "outgoing", + "index": 113947, + "result_id": "4a8cb409-5399-4f93-841a-0f239a10abca", + "status": 200, + "timestamp": "2026-05-22T08:51:45.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355", + "verb": "get" + }, + { + "id": "6ce5e071-c714-42be-af3e-960ceae76833", + "direction": "outgoing", + "index": 113948, + "result_id": "4a8cb409-5399-4f93-841a-0f239a10abca", + "status": 200, + "timestamp": "2026-05-22T08:51:45.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:45.727-04:00" + }, + { + "id": "0e9802a5-bfaf-4ee0-80fd-5600926ccf7b", + "created_at": "2026-05-22T08:51:46.711-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.code: None of the codings provided are in the value set 'US Core Non Laboratory Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-diagnosticreport-report-and-note-codes|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#33728-7)", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.code: None of the codings provided are in the value set 'US Core Non Laboratory Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-diagnosticreport-report-and-note-codes|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#44667-4)", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.code: None of the codings provided are in the value set 'US Core Non Laboratory Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-diagnosticreport-report-and-note-codes|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#19005-8)", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result'", + "type": "info" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.code: None of the codings provided are in the value set 'US Core Non Laboratory Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-diagnosticreport-report-and-note-codes|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#18782-3)", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:46.711-04:00" + }, + { + "id": "1142b59b-bcd9-4ac4-984b-f86a6e964657", + "created_at": "2026-05-22T08:51:46.744-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:46.744-04:00" + }, + { + "id": "d6ef9848-d721-4031-9f28-60739eda14c8", + "created_at": "2026-05-22T08:51:46.747-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging-us_core_v501_observation_imaging_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:46.747-04:00" + }, + { + "id": "dd95a85c-9928-42fb-b21a-1f337b1a499d", + "created_at": "2026-05-22T08:51:46.748-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_imaging", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:46.748-04:00" + }, + { + "id": "18fa188a-4418-4adf-8d3f-74663808c211", + "created_at": "2026-05-22T08:51:47.598-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "980661b0-cc89-448d-900c-d4f1178d0ebd", + "direction": "outgoing", + "index": 113949, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.604-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=85", + "verb": "get" + }, + { + "id": "47d8ce91-1bdf-4b10-8cdd-886f173bc8a8", + "direction": "outgoing", + "index": 113950, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.627-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "0bd87d65-5fe5-4966-bcd7-ff64eac06686", + "direction": "outgoing", + "index": 113951, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.644-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "c8bf1852-8e2e-400e-8642-4c29e338039f", + "direction": "outgoing", + "index": 113952, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.657-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-observation-category%7Cclinical-test\u0026patient=85", + "verb": "get" + }, + { + "id": "3d4659fe-228d-4ea7-9e10-2a3426fe6707", + "direction": "outgoing", + "index": 113953, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=355", + "verb": "get" + }, + { + "id": "715d4e0f-de42-40c6-af64-731483f82b35", + "direction": "outgoing", + "index": 113954, + "result_id": "18fa188a-4418-4adf-8d3f-74663808c211", + "status": 200, + "timestamp": "2026-05-22T08:51:47.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:47.598-04:00" + }, + { + "id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "created_at": "2026-05-22T08:51:48.787-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2447d87a-0591-401c-85ab-ec1f2432625a", + "direction": "outgoing", + "index": 113955, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.792-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3a641587-6291-4c4e-a2af-45eb1f32c4a3", + "direction": "outgoing", + "index": 113956, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8ac8d325-bea2-45dc-a79f-d52a5e3991bf", + "direction": "outgoing", + "index": 113957, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=ge2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "72415064-aeaa-497a-9989-4e329c011acc", + "direction": "outgoing", + "index": 113958, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=lt2022-07-15T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f184b483-ee96-492f-b711-b2a3412dc556", + "direction": "outgoing", + "index": 113959, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=le2022-07-15T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f5b6dd1f-eb61-4ee6-91d7-c87d5496fb10", + "direction": "outgoing", + "index": 113960, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.867-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-observation-category%7Cclinical-test\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a5d511eb-24e5-40db-b7bb-73e9d593bccc", + "direction": "outgoing", + "index": 113961, + "result_id": "13b57149-5426-4eda-8d29-62a3f02506a3", + "status": 200, + "timestamp": "2026-05-22T08:51:48.879-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026date=2021-11-10T16:48:57.246958-08:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:48.787-04:00" + }, + { + "id": "4012058d-9805-456b-97be-682096738350", + "created_at": "2026-05-22T08:51:49.278-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f9bd0ae4-db9d-40d1-9b78-720f35b2a193", + "direction": "outgoing", + "index": 113962, + "result_id": "4012058d-9805-456b-97be-682096738350", + "status": 200, + "timestamp": "2026-05-22T08:51:49.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026patient=85", + "verb": "get" + }, + { + "id": "e6e4bf3e-fa26-4c83-b84b-20fe28265534", + "direction": "outgoing", + "index": 113963, + "result_id": "4012058d-9805-456b-97be-682096738350", + "status": 200, + "timestamp": "2026-05-22T08:51:49.309-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C64098-7\u0026patient=85", + "verb": "get" + }, + { + "id": "446baf7d-bf34-47d9-8688-b41ff84fffec", + "direction": "outgoing", + "index": 113964, + "result_id": "4012058d-9805-456b-97be-682096738350", + "status": 200, + "timestamp": "2026-05-22T08:51:49.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8601-7\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:49.278-04:00" + }, + { + "id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "created_at": "2026-05-22T08:51:50.224-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4ec95d7c-4238-4f53-9db7-e5907066e949", + "direction": "outgoing", + "index": 113965, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c886afa7-6d4e-4a13-8ba1-eb3f8f742aa6", + "direction": "outgoing", + "index": 113966, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f733dcba-d5fb-48aa-ab13-6f6fe3f53cce", + "direction": "outgoing", + "index": 113967, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.270-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026date=ge2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1b43f27e-d23b-4577-a0c0-12712162e979", + "direction": "outgoing", + "index": 113968, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026date=lt2022-07-15T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2c3e823f-4576-4924-9c68-3f1e44ec15a9", + "direction": "outgoing", + "index": 113969, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=64098-7\u0026date=le2022-07-15T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "06f520cf-c732-4a9b-b111-e134914a3786", + "direction": "outgoing", + "index": 113970, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C64098-7\u0026date=gt2022-07-13T21:09:46-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "501f26e8-80c5-4876-9dd2-ab15b241975e", + "direction": "outgoing", + "index": 113971, + "result_id": "d54931c7-515e-456b-bae1-eee9119f08c3", + "status": 200, + "timestamp": "2026-05-22T08:51:50.316-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8601-7\u0026date=2021-11-10T16:48:57.246958-08:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:50.224-04:00" + }, + { + "id": "ec09d4f6-9a8a-46a3-92eb-ef0f70a38486", + "created_at": "2026-05-22T08:51:50.861-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3c271efb-8b2a-43ae-a8be-d833885a0d11", + "direction": "outgoing", + "index": 113972, + "result_id": "ec09d4f6-9a8a-46a3-92eb-ef0f70a38486", + "status": 200, + "timestamp": "2026-05-22T08:51:50.864-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "23e4a7cc-1e7a-4c95-935a-7f16401ad04b", + "direction": "outgoing", + "index": 113973, + "result_id": "ec09d4f6-9a8a-46a3-92eb-ef0f70a38486", + "status": 200, + "timestamp": "2026-05-22T08:51:50.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-observation-category%7Cclinical-test\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "0a05d15b-9437-40aa-a2df-bffb2c576f24", + "direction": "outgoing", + "index": 113974, + "result_id": "ec09d4f6-9a8a-46a3-92eb-ef0f70a38486", + "status": 200, + "timestamp": "2026-05-22T08:51:50.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "ab4c5a40-a9a6-4550-9982-c8dc57ad2afe", + "direction": "outgoing", + "index": 113975, + "result_id": "ec09d4f6-9a8a-46a3-92eb-ef0f70a38486", + "status": 200, + "timestamp": "2026-05-22T08:51:50.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=clinical-test\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:50.861-04:00" + }, + { + "id": "49d5d7db-eaab-47f9-9e14-a25c328ec246", + "created_at": "2026-05-22T08:51:51.054-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "77478e44-00d5-4edd-9db1-661095e98a97", + "direction": "outgoing", + "index": 113976, + "result_id": "49d5d7db-eaab-47f9-9e14-a25c328ec246", + "status": 200, + "timestamp": "2026-05-22T08:51:51.056-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/1a49dc54-1728-4a24-a8dc-d00c7b2a74cc", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:51.054-04:00" + }, + { + "id": "d5d84320-6100-4e3e-b0e4-8b9fe92bd8eb", + "created_at": "2026-05-22T08:51:51.616-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9d133610-dc02-4f2c-aa85-944e71d58bed", + "direction": "outgoing", + "index": 113977, + "result_id": "d5d84320-6100-4e3e-b0e4-8b9fe92bd8eb", + "status": 200, + "timestamp": "2026-05-22T08:51:51.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=clinical-test\u0026patient=85", + "verb": "get" + }, + { + "id": "59a2a448-f132-4069-8e80-62f9bcc1fc2d", + "direction": "outgoing", + "index": 113978, + "result_id": "d5d84320-6100-4e3e-b0e4-8b9fe92bd8eb", + "status": 200, + "timestamp": "2026-05-22T08:51:51.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=clinical-test\u0026patient=355", + "verb": "get" + }, + { + "id": "666ced31-790a-41cf-97a4-2ec783a91e0c", + "direction": "outgoing", + "index": 113979, + "result_id": "d5d84320-6100-4e3e-b0e4-8b9fe92bd8eb", + "status": 200, + "timestamp": "2026-05-22T08:51:51.650-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=clinical-test\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:51.616-04:00" + }, + { + "id": "1e5b3e21-9133-4cad-99cb-30ce6bbc6e42", + "created_at": "2026-05-22T08:51:52.508-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/1a49dc54-1728-4a24-a8dc-d00c7b2a74cc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1a49dc54-1728-4a24-a8dc-d00c7b2a74cc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/059d780e-494e-4db2-b389-7196cb272f80: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/059d780e-494e-4db2-b389-7196cb272f80: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/27d686ce-c332-443f-a4b5-0a33386fa931: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/27d686ce-c332-443f-a4b5-0a33386fa931: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6bbaef3-fe6a-4228-96de-a0f9eb805765: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6bbaef3-fe6a-4228-96de-a0f9eb805765: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6bbaef3-fe6a-4228-96de-a0f9eb805765: Observation: Best Practice Recommendation: In general, all observations should have an effective[x] ()", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:52.508-04:00" + }, + { + "id": "e4b84c02-38e1-452e-9308-979b82dfefc8", + "created_at": "2026-05-22T08:51:52.540-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:52.540-04:00" + }, + { + "id": "e847bdcb-3a67-4bb5-b12c-51cd5250bc17", + "created_at": "2026-05-22T08:51:52.547-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test-us_core_v501_observation_clinical_test_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:52.547-04:00" + }, + { + "id": "d20cb53d-01c9-4cbf-ba03-addb90afc28b", + "created_at": "2026-05-22T08:51:52.548-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_observation_clinical_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:52.548-04:00" + }, + { + "id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "created_at": "2026-05-22T08:51:53.326-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ab401ae8-c9f3-46dc-8a71-a1993167cb83", + "direction": "outgoing", + "index": 113980, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "26b0fd15-81d4-4dee-9e9d-4f20422efe1c", + "direction": "outgoing", + "index": 113981, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "6d3b325c-2615-4f25-8969-82b80c1107ad", + "direction": "outgoing", + "index": 113982, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.372-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "4547db67-9409-40f3-ab7b-dde6facdc799", + "direction": "outgoing", + "index": 113983, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.388-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "0acdaf52-0383-49e7-b6fa-4cffa6f1dbd3", + "direction": "outgoing", + "index": 113984, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "b2c58d6d-ce8d-4d9a-8fda-3091d7de8621", + "direction": "outgoing", + "index": 113985, + "result_id": "3e8f6af0-c881-4a20-bff0-c30878d7b4cc", + "status": 200, + "timestamp": "2026-05-22T08:51:53.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:53.326-04:00" + }, + { + "id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "created_at": "2026-05-22T08:51:56.074-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "374686a9-9a56-4ebe-ab7a-aaf35a28764d", + "direction": "outgoing", + "index": 113986, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e2be0ab2-8bd1-4553-9ed4-f0f5101353d5", + "direction": "outgoing", + "index": 113987, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "36ce718f-d4ad-4be8-9a9a-ce3573e46e95", + "direction": "outgoing", + "index": 113988, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f1a6ee58-57fa-46f3-a330-dddf06eaf2d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0ca078f-2da4-4818-9006-76a3fd775296", + "direction": "outgoing", + "index": 113989, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f1a6ee58-57fa-46f3-a330-dddf06eaf2d6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff01101b-3200-4bed-a6b4-ec04f077666b", + "direction": "outgoing", + "index": 113990, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1acad245-33e4-4db9-a6fe-7e16bd03e375", + "direction": "outgoing", + "index": 113991, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.138-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=04549405-ea45-4f7a-8fd4-d7a04506ecf1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de89c50f-bf62-404a-9f7e-69cf54a3421d", + "direction": "outgoing", + "index": 113992, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.150-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=04549405-ea45-4f7a-8fd4-d7a04506ecf1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad632b78-d86d-4635-87eb-d92afa57cddc", + "direction": "outgoing", + "index": 113993, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "922a0697-e6c7-4f47-9f69-21760cbedd52", + "direction": "outgoing", + "index": 113994, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "46bc0706-2a97-44de-a12c-002131090482", + "direction": "outgoing", + "index": 113995, + "result_id": "d5e1627b-a080-49bf-821d-44456210d4b5", + "status": 200, + "timestamp": "2026-05-22T08:51:56.181-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:56.074-04:00" + }, + { + "id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "created_at": "2026-05-22T08:51:58.126-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "223a9dc1-e1f0-4c8b-9aa1-f0611fbf9904", + "direction": "outgoing", + "index": 113996, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f70a4edd-f6dc-4163-950b-55e39ea6584a", + "direction": "outgoing", + "index": 113997, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "becb05dc-6746-4c1a-bc3a-716960384ed7", + "direction": "outgoing", + "index": 113998, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3a46b635-99d5-496f-a1ca-2960714a5b3d", + "direction": "outgoing", + "index": 113999, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "176cc022-4d33-431a-bc62-7a424ba45e1c", + "direction": "outgoing", + "index": 114000, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "821a136d-c974-416b-bfa6-3ab57594731f", + "direction": "outgoing", + "index": 114001, + "result_id": "d4dec544-c77b-4d64-8e49-702b8e6dbe2e", + "status": 200, + "timestamp": "2026-05-22T08:51:58.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:58.126-04:00" + }, + { + "id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "created_at": "2026-05-22T08:51:59.231-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4cfe1583-36b5-4175-be8b-aff4dc764b0f", + "direction": "outgoing", + "index": 114002, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "5863bef1-be44-41ec-a79a-df0bdde7ec57", + "direction": "outgoing", + "index": 114003, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "75133da6-8f02-4466-b4ef-5d4b64ab14d7", + "direction": "outgoing", + "index": 114004, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de9ae26f-e10d-408e-a50b-127c9d7cd46b", + "direction": "outgoing", + "index": 114005, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.269-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "32cf3eba-0dfa-4453-8172-01eee4d90530", + "direction": "outgoing", + "index": 114006, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5235a014-66db-4a59-b3b4-6c0bc42503d3", + "direction": "outgoing", + "index": 114007, + "result_id": "6949bd8a-88c7-417d-a76d-7711f30b3d6c", + "status": 200, + "timestamp": "2026-05-22T08:51:59.297-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:51:59.231-04:00" + }, + { + "id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "created_at": "2026-05-22T08:52:00.919-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "512ea307-c274-47c9-bb2f-d60b67ba1ece", + "direction": "outgoing", + "index": 114008, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:00.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "0e079945-3ef5-40f4-8bb4-4ad7f72885fd", + "direction": "outgoing", + "index": 114009, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:00.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5570c58a-3fba-420c-9f41-025f519bbd3a", + "direction": "outgoing", + "index": 114010, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:00.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "99774a83-01e7-421f-a2c0-1f751075bb06", + "direction": "outgoing", + "index": 114011, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:00.978-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "c08edb6e-04d1-414e-87f1-2a578fff8f76", + "direction": "outgoing", + "index": 114012, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:00.989-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8155aec6-38d3-4571-8825-7fb93fefbd67", + "direction": "outgoing", + "index": 114013, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:01.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6d561eb-0e3b-4dc5-83ac-6592abb9ede4", + "direction": "outgoing", + "index": 114014, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:01.012-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "df8a9942-ed68-435a-8953-32c3a24c6345", + "direction": "outgoing", + "index": 114015, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:01.023-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "949273df-7aba-42f6-bf96-fcbecfdf7bab", + "direction": "outgoing", + "index": 114016, + "result_id": "af797790-4dd4-4b6f-ad44-ecddb80f67bc", + "status": 200, + "timestamp": "2026-05-22T08:52:01.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:00.919-04:00" + }, + { + "id": "a7205e0c-1308-4a06-bcc6-dd06ec7a739e", + "created_at": "2026-05-22T08:52:01.164-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c8257a1b-c676-4b01-9048-7f96186ff031", + "direction": "outgoing", + "index": 114017, + "result_id": "a7205e0c-1308-4a06-bcc6-dd06ec7a739e", + "status": 200, + "timestamp": "2026-05-22T08:52:01.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.164-04:00" + }, + { + "id": "75613a90-9cd9-438d-8686-8e094e467581", + "created_at": "2026-05-22T08:52:01.636-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3367233e-9570-4dc0-b14c-eef9da516704", + "direction": "outgoing", + "index": 114018, + "result_id": "75613a90-9cd9-438d-8686-8e094e467581", + "status": 200, + "timestamp": "2026-05-22T08:52:01.639-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "174de37c-4f41-4edb-8a80-738af4e66b94", + "direction": "outgoing", + "index": 114019, + "result_id": "75613a90-9cd9-438d-8686-8e094e467581", + "status": 200, + "timestamp": "2026-05-22T08:52:01.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "a488f48c-38c3-4615-953e-c7f6e83858b9", + "direction": "outgoing", + "index": 114020, + "result_id": "75613a90-9cd9-438d-8686-8e094e467581", + "status": 200, + "timestamp": "2026-05-22T08:52:01.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.636-04:00" + }, + { + "id": "1f6f5f56-5323-4104-b9bb-8424fce632d2", + "created_at": "2026-05-22T08:52:01.939-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.939-04:00" + }, + { + "id": "0f9a7a43-ca96-4598-a0b0-0f186ebf4950", + "created_at": "2026-05-22T08:52:01.954-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.954-04:00" + }, + { + "id": "fa6161c2-8a14-4048-b6cc-878932f73dd9", + "created_at": "2026-05-22T08:52:01.961-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age-us_core_v501_pediatric_bmi_for_age_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.961-04:00" + }, + { + "id": "d14d28ce-e5a0-4436-a62a-2c4c90250b92", + "created_at": "2026-05-22T08:52:01.966-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_pediatric_bmi_for_age", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:01.966-04:00" + }, + { + "id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "created_at": "2026-05-22T08:52:02.732-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cc115c31-8da6-43a0-9478-19408a3a5088", + "direction": "outgoing", + "index": 114021, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "28abd9de-cf33-4c3e-8554-6339d417e357", + "direction": "outgoing", + "index": 114022, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.752-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "cf084cf7-517b-47e7-b149-d70e5a52382b", + "direction": "outgoing", + "index": 114023, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "46cd9304-3ea3-4462-90c1-c8153fb4b378", + "direction": "outgoing", + "index": 114024, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "5f86780b-ec67-44dd-93c2-510563fb3eea", + "direction": "outgoing", + "index": 114025, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "bf679042-4bc6-41c8-80bc-1472885e4200", + "direction": "outgoing", + "index": 114026, + "result_id": "76667e3a-188a-4b54-87fe-e31810970ba8", + "status": 200, + "timestamp": "2026-05-22T08:52:02.802-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:02.732-04:00" + }, + { + "id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "created_at": "2026-05-22T08:52:05.409-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "58aaeec6-396e-4258-8f8b-12b9d856e605", + "direction": "outgoing", + "index": 114027, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b6622777-9259-4cc0-ba22-d293e8926587", + "direction": "outgoing", + "index": 114028, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.644-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3df1f87a-b806-416d-9b26-7d6463827b8b", + "direction": "outgoing", + "index": 114029, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.747-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2978e966-70c9-4a5e-925b-a36e73b4e6a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b6709e9c-9d8f-4e26-b370-2df6b0eb49f1", + "direction": "outgoing", + "index": 114030, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.759-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2978e966-70c9-4a5e-925b-a36e73b4e6a7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1015d391-9b0f-447f-a7f3-58f2964cce56", + "direction": "outgoing", + "index": 114031, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.774-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5a39204e-7787-4ca9-961d-bc829a8a11e8", + "direction": "outgoing", + "index": 114032, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ba9db32-6e0e-47c1-9126-ec4ebf16edf6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "013050f0-1a87-4cea-837a-25518abf0446", + "direction": "outgoing", + "index": 114033, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ba9db32-6e0e-47c1-9126-ec4ebf16edf6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e9613b70-0122-4645-8a91-05e4a49e3ea8", + "direction": "outgoing", + "index": 114034, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "297d129b-46b2-4d13-978f-297e9f2c9333", + "direction": "outgoing", + "index": 114035, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ff3d27a4-e94a-45be-bd7c-a0bbbb352c41", + "direction": "outgoing", + "index": 114036, + "result_id": "a4fdc02a-741b-4f18-b03c-c49abcdae6c2", + "status": 200, + "timestamp": "2026-05-22T08:52:05.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:05.409-04:00" + }, + { + "id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "created_at": "2026-05-22T08:52:06.649-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d4ad8413-2619-4196-af42-09696b294502", + "direction": "outgoing", + "index": 114037, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.653-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c3f9521f-1663-497b-bf83-d1b8ccf9da5b", + "direction": "outgoing", + "index": 114038, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "200615ec-212e-4258-a242-aef0d57d999a", + "direction": "outgoing", + "index": 114039, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2277800b-4668-49d5-9474-561bb719f572", + "direction": "outgoing", + "index": 114040, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "840b1f11-6bca-471d-bb59-15c7b747f5bb", + "direction": "outgoing", + "index": 114041, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.710-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "28f8f4aa-398f-4f2d-94a8-f0f32cfa348d", + "direction": "outgoing", + "index": 114042, + "result_id": "a00b7cd3-ba60-4c11-a6a3-c3b645ebc312", + "status": 200, + "timestamp": "2026-05-22T08:52:06.722-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:06.649-04:00" + }, + { + "id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "created_at": "2026-05-22T08:52:07.666-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "acbb4762-35c8-488a-b6c6-e8ee0946af29", + "direction": "outgoing", + "index": 114043, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.669-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "acb58e3e-1243-4f6f-bb95-f3fdd60cfbcd", + "direction": "outgoing", + "index": 114044, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f60928b-69cd-42a7-b94e-258824d36e37", + "direction": "outgoing", + "index": 114045, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f7272a5-3570-4e83-a031-d5507552f35a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "892d4380-e6f4-42c5-8eb9-afcd59e3a06e", + "direction": "outgoing", + "index": 114046, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "9d60e124-914b-4349-a9a2-d49d07d18653", + "direction": "outgoing", + "index": 114047, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "31844b99-4a0c-4647-9a05-3890f2e52c08", + "direction": "outgoing", + "index": 114048, + "result_id": "d25e8498-b4b5-4ced-b329-20c1826e9c59", + "status": 200, + "timestamp": "2026-05-22T08:52:07.740-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0767c587-6b2c-4cde-b0c6-3903912a6de0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:07.666-04:00" + }, + { + "id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "created_at": "2026-05-22T08:52:09.288-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "747a459e-fbde-4c8f-a4c8-4d5fd73ffa1c", + "direction": "outgoing", + "index": 114049, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "61a36816-c2dd-4da1-a9e8-d05f2c1fa95c", + "direction": "outgoing", + "index": 114050, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a99c19de-9c99-4d34-aaec-393ea2e3102b", + "direction": "outgoing", + "index": 114051, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e7c82f5d-8f87-4acf-bc9e-919ae3df0866\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b7afb5f7-e099-4a30-8f01-19a7a10f2d18", + "direction": "outgoing", + "index": 114052, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.335-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "08f71db0-381f-47df-a625-aedef33a9795", + "direction": "outgoing", + "index": 114053, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7cfdafe-696d-4609-afd7-f94674a763a1", + "direction": "outgoing", + "index": 114054, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.358-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=73d042b4-fb7c-4a12-baa7-7ce7612c1013\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f169aa3-36cd-4def-b675-7c44b8d39aeb", + "direction": "outgoing", + "index": 114055, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "9003b6f6-6454-43d0-a0f0-ab4fd4b9c877", + "direction": "outgoing", + "index": 114056, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6091b50f-c448-4eae-8d0b-6cbffe09f43a", + "direction": "outgoing", + "index": 114057, + "result_id": "0b5b0613-e46d-4f91-9e4f-53abfe8249dd", + "status": 200, + "timestamp": "2026-05-22T08:52:09.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6bf50a17-2617-4542-b825-a74e81649fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:09.288-04:00" + }, + { + "id": "11d73a45-9c3c-48f0-860e-681090ba4d8b", + "created_at": "2026-05-22T08:52:09.529-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5d47f273-5488-41a7-9611-2ca10bf33f6c", + "direction": "outgoing", + "index": 114058, + "result_id": "11d73a45-9c3c-48f0-860e-681090ba4d8b", + "status": 200, + "timestamp": "2026-05-22T08:52:09.531-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:09.529-04:00" + }, + { + "id": "44b35cd3-2463-4f98-a059-82e6851fc2fa", + "created_at": "2026-05-22T08:52:09.968-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4554e830-ca07-4bd6-b7a9-c5706fe9d2d4", + "direction": "outgoing", + "index": 114059, + "result_id": "44b35cd3-2463-4f98-a059-82e6851fc2fa", + "status": 200, + "timestamp": "2026-05-22T08:52:09.970-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "ba89b876-5ccb-475a-b51b-282538d03346", + "direction": "outgoing", + "index": 114060, + "result_id": "44b35cd3-2463-4f98-a059-82e6851fc2fa", + "status": 200, + "timestamp": "2026-05-22T08:52:09.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "76a545a3-79dd-4ab7-8fa2-231b98ba4d90", + "direction": "outgoing", + "index": 114061, + "result_id": "44b35cd3-2463-4f98-a059-82e6851fc2fa", + "status": 200, + "timestamp": "2026-05-22T08:52:09.999-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:09.968-04:00" + }, + { + "id": "3c024d9f-1046-4129-88d6-7cb9260f2abd", + "created_at": "2026-05-22T08:52:10.496-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:10.496-04:00" + }, + { + "id": "a50e9528-9d93-4acb-bfe1-3021a3590c4a", + "created_at": "2026-05-22T08:52:10.520-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:10.520-04:00" + }, + { + "id": "58e9c52d-f925-4984-ab00-963654563af6", + "created_at": "2026-05-22T08:52:10.524-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile-us_core_v501_head_circumference_percentile_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:10.524-04:00" + }, + { + "id": "07ad6f71-512a-428c-a195-67abefcbb97c", + "created_at": "2026-05-22T08:52:10.527-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_head_circumference_percentile", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:10.527-04:00" + }, + { + "id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "created_at": "2026-05-22T08:52:11.373-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4e2b89df-fb48-4089-9979-665dc525cc76", + "direction": "outgoing", + "index": 114062, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "d3cb71b2-2c40-41ff-a0ab-354b52d91ac4", + "direction": "outgoing", + "index": 114063, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.399-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "cc1f0ba2-2a51-4ef3-97df-b04e78b3e76f", + "direction": "outgoing", + "index": 114064, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "0d606412-cf28-4473-bba8-d43b6e88fb3c", + "direction": "outgoing", + "index": 114065, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "c3a4fe01-01a5-48c7-8fbb-42e3e063d9cb", + "direction": "outgoing", + "index": 114066, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "f55ffb1e-01f0-4dae-a712-552067ff3055", + "direction": "outgoing", + "index": 114067, + "result_id": "9a9fc98e-44d8-45be-b77c-13da18c2eae6", + "status": 200, + "timestamp": "2026-05-22T08:52:11.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:11.373-04:00" + }, + { + "id": "36ec6caa-0914-4412-b615-c69c4326df10", + "created_at": "2026-05-22T08:52:15.113-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "292d85a5-383f-46af-85ca-dba1710586d4", + "direction": "outgoing", + "index": 114068, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3c3c3dae-1844-4703-838a-27f297c7adf4", + "direction": "outgoing", + "index": 114069, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "203acaca-2a64-4701-917e-a0c2b7740ff3", + "direction": "outgoing", + "index": 114070, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e069d351-4f5a-4cfa-8139-4feb0ac0adde\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f91dfef-fca5-47ff-8888-dec8350dc6fd", + "direction": "outgoing", + "index": 114071, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "54c79eb0-fcd2-4ea9-b31b-fa3de11b0826", + "direction": "outgoing", + "index": 114072, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f7e02599-aa7a-433c-99f3-5f2dbaa1dc84\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f4d293d-2230-4920-a73b-49558329bb36", + "direction": "outgoing", + "index": 114073, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c79ede43-1cec-4c4d-b812-cdd89c919444", + "direction": "outgoing", + "index": 114074, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.248-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=908f5d0e-ef98-46bb-a2dd-1aa865d5c011\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b95301d-b181-4cb5-b89e-d0c474223259", + "direction": "outgoing", + "index": 114075, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.257-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e70ac89e-d598-4174-927f-36347eff55f5", + "direction": "outgoing", + "index": 114076, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.269-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5d1c1a7e-ad9a-4312-8080-f19f147df0ca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "89d34399-9b13-4ec9-9bd1-1f58ffc934c5", + "direction": "outgoing", + "index": 114077, + "result_id": "36ec6caa-0914-4412-b615-c69c4326df10", + "status": 200, + "timestamp": "2026-05-22T08:52:15.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_patient_category_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:15.113-04:00" + }, + { + "id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "created_at": "2026-05-22T08:52:16.142-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9c6d1204-388d-4e96-b78e-9868d19f0ff5", + "direction": "outgoing", + "index": 114078, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c2ecb813-6228-4bea-b80f-8d77d0c90989", + "direction": "outgoing", + "index": 114079, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.166-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "84a650d5-60c7-401b-a478-feee3f31987c", + "direction": "outgoing", + "index": 114080, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.177-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "89ce7d47-df45-469b-b955-2d721eb1e386", + "direction": "outgoing", + "index": 114081, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1452537a-49fc-4245-a70f-0038c84caae6", + "direction": "outgoing", + "index": 114082, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d3de95c7-32c9-438e-811a-c7aef4854948", + "direction": "outgoing", + "index": 114083, + "result_id": "b8b281f7-3946-4d4a-851c-7542d6ae028b", + "status": 200, + "timestamp": "2026-05-22T08:52:16.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:16.142-04:00" + }, + { + "id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "created_at": "2026-05-22T08:52:18.364-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "be0a7d7b-4f99-4eca-a588-87ff9f090f95", + "direction": "outgoing", + "index": 114084, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "84cc75f9-45ea-4441-a4a6-6b4e0c4d6cff", + "direction": "outgoing", + "index": 114085, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2afbae8f-b992-4ce8-89df-d754eea20ce3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4393b2c0-a4df-4770-974c-269be91a8a73", + "direction": "outgoing", + "index": 114086, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.403-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2afbae8f-b992-4ce8-89df-d754eea20ce3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d23d01bd-e752-440f-a220-4264a26ea97c", + "direction": "outgoing", + "index": 114087, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ce5ceb1e-0bda-4a82-878a-04a03ec8df00", + "direction": "outgoing", + "index": 114088, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.425-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=95c144aa-ec2c-4a02-b42d-2d8e91916389\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ad14a107-b36b-466b-93f0-3babef94ed57", + "direction": "outgoing", + "index": 114089, + "result_id": "ae9036aa-f874-4190-80a6-f209a89a04d7", + "status": 200, + "timestamp": "2026-05-22T08:52:18.437-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=95c144aa-ec2c-4a02-b42d-2d8e91916389\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:18.364-04:00" + }, + { + "id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "created_at": "2026-05-22T08:52:21.567-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4a24b556-1755-43a9-8d7f-1d26f4cba3e5", + "direction": "outgoing", + "index": 114090, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "8e280a7b-a3e0-4431-b9f7-3a2bb6a2e4a5", + "direction": "outgoing", + "index": 114091, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.621-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c53a2a47-70f4-4f86-9917-c0504139bd4f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6515a6f5-0cce-4444-b05a-0fde7e806640", + "direction": "outgoing", + "index": 114092, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.631-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c53a2a47-70f4-4f86-9917-c0504139bd4f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e2f0eddd-fe81-4952-b4e8-90019309b597", + "direction": "outgoing", + "index": 114093, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "2502ecd6-8ef7-40fb-90f2-d05bbb417a0b", + "direction": "outgoing", + "index": 114094, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1afef46e-13ec-4c94-8a83-a3b34e38d401\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "584d614c-0f39-4770-b5f2-6392065c0484", + "direction": "outgoing", + "index": 114095, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1afef46e-13ec-4c94-8a83-a3b34e38d401\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c8b4a611-cd57-4bd7-8f1a-2a850aaa0d5c", + "direction": "outgoing", + "index": 114096, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "faebb73a-c738-4207-acea-8b5ea1e8eccf", + "direction": "outgoing", + "index": 114097, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=33d83f70-cd21-4cdb-8560-4db8ff6d0785\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "84d8a763-619e-44a8-b31c-ce752e1af27a", + "direction": "outgoing", + "index": 114098, + "result_id": "bb5585fc-c4cc-4cf1-a066-8103b4a58acc", + "status": 200, + "timestamp": "2026-05-22T08:52:21.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=33d83f70-cd21-4cdb-8560-4db8ff6d0785\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_patient_category_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:21.567-04:00" + }, + { + "id": "17d6c83f-26e0-469a-8723-c23096585572", + "created_at": "2026-05-22T08:52:21.831-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9fca8b68-e38c-476e-b360-b92a0cc01170", + "direction": "outgoing", + "index": 114099, + "result_id": "17d6c83f-26e0-469a-8723-c23096585572", + "status": 200, + "timestamp": "2026-05-22T08:52:21.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:21.831-04:00" + }, + { + "id": "efb3d1d5-b726-4d4b-a8d2-3829ef33b714", + "created_at": "2026-05-22T08:52:22.301-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ae561390-605a-4b12-a137-7d4eb87388de", + "direction": "outgoing", + "index": 114100, + "result_id": "efb3d1d5-b726-4d4b-a8d2-3829ef33b714", + "status": 200, + "timestamp": "2026-05-22T08:52:22.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "d7168f97-47bb-4f02-b181-53426bbcc2e4", + "direction": "outgoing", + "index": 114101, + "result_id": "efb3d1d5-b726-4d4b-a8d2-3829ef33b714", + "status": 200, + "timestamp": "2026-05-22T08:52:22.324-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "aff7e5d5-8cd3-4b18-965e-d1f3c4c94d88", + "direction": "outgoing", + "index": 114102, + "result_id": "efb3d1d5-b726-4d4b-a8d2-3829ef33b714", + "status": 200, + "timestamp": "2026-05-22T08:52:22.339-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:22.301-04:00" + }, + { + "id": "78ded3cc-dc15-48de-a7ea-b8dcd19b42c3", + "created_at": "2026-05-22T08:52:23.303-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:23.303-04:00" + }, + { + "id": "6ce516e8-4b08-4f4b-bd2f-cb6949c0fb48", + "created_at": "2026-05-22T08:52:23.329-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:23.329-04:00" + }, + { + "id": "6b928f98-b36b-4c1b-9e92-f6913a6df060", + "created_at": "2026-05-22T08:52:23.333-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight-us_core_v501_body_weight_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:23.333-04:00" + }, + { + "id": "7b13273c-ef67-4930-9dcf-80275eeb3ae3", + "created_at": "2026-05-22T08:52:23.335-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_body_weight", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:23.335-04:00" + }, + { + "id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "created_at": "2026-05-22T08:52:26.398-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fb8f534a-7d23-4c8c-8264-d94b38ad20aa", + "direction": "outgoing", + "index": 114103, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.402-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85", + "verb": "get" + }, + { + "id": "3b32727c-1b11-4b65-8476-ba18e9db75c7", + "direction": "outgoing", + "index": 114104, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.422-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=15f46f43-9707-4d59-8089-68a96095c0bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6d4eb9b6-f1ff-47b7-8ae1-051ad8213c04", + "direction": "outgoing", + "index": 114105, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/_search", + "verb": "post" + }, + { + "id": "9ef41a7c-41f6-4757-8030-4fe37c80f698", + "direction": "outgoing", + "index": 114106, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.446-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=15f46f43-9707-4d59-8089-68a96095c0bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ca712951-e792-459f-8a88-f6641b425657", + "direction": "outgoing", + "index": 114107, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85", + "verb": "get" + }, + { + "id": "1144624a-8421-4e17-a62a-c82fb21f3e67", + "direction": "outgoing", + "index": 114108, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.469-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bcd323b8-fb1d-457f-bd66-c095516fb5a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fb392171-9400-41f9-b25c-40e0aa825bd5", + "direction": "outgoing", + "index": 114109, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355", + "verb": "get" + }, + { + "id": "93d797ab-57ff-4cf5-947d-d45d2eb40980", + "direction": "outgoing", + "index": 114110, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=511408fe-66f3-4434-a016-013cc0b9fa5b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "302ae83c-2c88-4611-998b-bd0318056cbf", + "direction": "outgoing", + "index": 114111, + "result_id": "ee286a18-ac3c-4ad7-b655-60a604357f0f", + "status": 200, + "timestamp": "2026-05-22T08:52:26.504-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:26.398-04:00" + }, + { + "id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "created_at": "2026-05-22T08:52:27.564-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ac96467a-93a1-40ef-afc5-42847efefa00", + "direction": "outgoing", + "index": 114112, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7f4ec937-a40c-4039-821e-44e27dc557d6", + "direction": "outgoing", + "index": 114113, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.595-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3475e22a-c20e-469f-ac60-bd3648f82032", + "direction": "outgoing", + "index": 114114, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.622-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "752dd23b-fdbe-4b9d-8c42-48721986ab8a", + "direction": "outgoing", + "index": 114115, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ccd99ef6-a769-412e-8b04-79055ddc826c", + "direction": "outgoing", + "index": 114116, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5b579057-7bd7-4c69-94e6-09ef40dbc788", + "direction": "outgoing", + "index": 114117, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.654-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e326ed1f-2ae4-4540-b6d5-4a9c2bfd1047", + "direction": "outgoing", + "index": 114118, + "result_id": "cec18ee1-8e78-4600-9c01-e8d280b2c709", + "status": 200, + "timestamp": "2026-05-22T08:52:27.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_patient_code_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:27.564-04:00" + }, + { + "id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "created_at": "2026-05-22T08:52:30.281-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c86172d2-1718-453b-a067-6845aaa02654", + "direction": "outgoing", + "index": 114119, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "50da0104-f34a-4c4e-8f2e-fb0ceb3e0fbb", + "direction": "outgoing", + "index": 114120, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=716d17d2-8036-4e79-a92a-fbb3e0f02eac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "005fc6e5-fec0-47af-9964-00bfe75e584b", + "direction": "outgoing", + "index": 114121, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.316-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed", + "verb": "get" + }, + { + "id": "cd05f991-4445-484a-8505-c8fdcda342db", + "direction": "outgoing", + "index": 114122, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0d5d0ee3-4af4-43dc-a95d-a43022dcd882\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e469bd0e-0a2c-40a9-81e5-04828b1dfcdf", + "direction": "outgoing", + "index": 114123, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "9e67fac8-9b42-4303-84f2-de554ec8ab06", + "direction": "outgoing", + "index": 114124, + "result_id": "2e3288bd-9c98-4b1f-be54-b29a4ed4355c", + "status": 200, + "timestamp": "2026-05-22T08:52:30.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e4c8955-3fa3-4342-8791-bf21d55364df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:30.281-04:00" + }, + { + "id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "created_at": "2026-05-22T08:52:32.668-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dbbc4ff4-8921-4ae4-a477-62789311446f", + "direction": "outgoing", + "index": 114125, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c6452c33-32ad-4dbb-97fa-7606b384a57b", + "direction": "outgoing", + "index": 114126, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.694-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0859ef66-ed27-429a-b25e-4ee60cef4f22\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4e3349e7-acaa-44d0-b834-942bd8ca004b", + "direction": "outgoing", + "index": 114127, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.715-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "17a6f504-189b-46f1-a63a-5d35d10d2e6c", + "direction": "outgoing", + "index": 114128, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.729-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0859ef66-ed27-429a-b25e-4ee60cef4f22\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "76f4dd64-628c-4fef-802b-65aee53a545a", + "direction": "outgoing", + "index": 114129, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.742-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0fffbd99-fe87-4bf1-bd4d-1500f9fe0fcd", + "direction": "outgoing", + "index": 114130, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bafbaa79-ede6-4a32-b775-9a4a0f2f4d0a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bab0a238-151f-4712-b24b-cc2993da0bad", + "direction": "outgoing", + "index": 114131, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fef61ad8-3cfc-47a1-8421-49431506fc58", + "direction": "outgoing", + "index": 114132, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.778-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4aebe256-900c-45f9-906b-582554b2cf7d", + "direction": "outgoing", + "index": 114133, + "result_id": "bd1eee21-d57e-49f6-b2cd-f3a0096bc5ff", + "status": 200, + "timestamp": "2026-05-22T08:52:32.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_patient_date_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:32.668-04:00" + }, + { + "id": "bcdcb2ec-a67f-48f9-821a-431b7f72c6af", + "created_at": "2026-05-22T08:52:32.917-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "83a43f70-7698-4498-af51-a277d86a18a9", + "direction": "outgoing", + "index": 114134, + "result_id": "bcdcb2ec-a67f-48f9-821a-431b7f72c6af", + "status": 200, + "timestamp": "2026-05-22T08:52:32.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:32.917-04:00" + }, + { + "id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "created_at": "2026-05-22T08:52:34.904-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "43634767-d288-4c87-93dd-5dbfde0e6e16", + "direction": "outgoing", + "index": 114135, + "result_id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "status": 200, + "timestamp": "2026-05-22T08:52:34.909-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ab810159-ab94-4a83-bfe5-7d4e868c8292", + "direction": "outgoing", + "index": 114136, + "result_id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "status": 200, + "timestamp": "2026-05-22T08:52:34.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2e261f85-3983-4472-abf2-5e3d6c4f982f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1c543a03-c405-4bbd-b325-ac1fb7c5793b", + "direction": "outgoing", + "index": 114137, + "result_id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "status": 200, + "timestamp": "2026-05-22T08:52:34.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "3d84521b-b2d5-4761-9232-a43ab06d720c", + "direction": "outgoing", + "index": 114138, + "result_id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "status": 200, + "timestamp": "2026-05-22T08:52:34.963-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=661374c3-89e1-4b17-9d4a-835a44863a14\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f4745ce9-207a-470d-8604-fcab8a834871", + "direction": "outgoing", + "index": 114139, + "result_id": "1c4bbc88-a04c-4a58-9da9-6464352716a1", + "status": 200, + "timestamp": "2026-05-22T08:52:34.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:34.904-04:00" + }, + { + "id": "3e4d0b53-cfbc-4a42-8c2c-a6a060a0b340", + "created_at": "2026-05-22T08:52:39.088-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#447365002)", + "type": "warning" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|5.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#60027007)", + "type": "warning" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.088-04:00" + }, + { + "id": "b25ea6ed-963f-4e82-b874-6e9a289d8b6e", + "created_at": "2026-05-22T08:52:39.148-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.148-04:00" + }, + { + "id": "2ecf0d72-e4d2-4ed4-91de-7df14911fecb", + "created_at": "2026-05-22T08:52:39.150-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure-us_core_v501_procedure_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.150-04:00" + }, + { + "id": "cb3d34db-8062-4135-b881-79e4eda8e54c", + "created_at": "2026-05-22T08:52:39.151-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_procedure", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.151-04:00" + }, + { + "id": "e9dad2ff-7d30-4e50-83bd-00b4893adb99", + "created_at": "2026-05-22T08:52:39.504-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9240b58b-39c2-4e6c-b539-f6b0f8367665", + "direction": "outgoing", + "index": 114140, + "result_id": "e9dad2ff-7d30-4e50-83bd-00b4893adb99", + "status": 200, + "timestamp": "2026-05-22T08:52:39.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=85", + "verb": "get" + }, + { + "id": "5ab8f795-45ae-4f14-b054-f18b02be08ef", + "direction": "outgoing", + "index": 114141, + "result_id": "e9dad2ff-7d30-4e50-83bd-00b4893adb99", + "status": 200, + "timestamp": "2026-05-22T08:52:39.531-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=355", + "verb": "get" + }, + { + "id": "27518920-372e-4414-9db5-0b6c29a2d781", + "direction": "outgoing", + "index": 114142, + "result_id": "e9dad2ff-7d30-4e50-83bd-00b4893adb99", + "status": 200, + "timestamp": "2026-05-22T08:52:39.546-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=907", + "verb": "get" + } + ], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.504-04:00" + }, + { + "id": "fc4f574e-5b4c-40bd-b880-bc292fa3f0d9", + "created_at": "2026-05-22T08:52:39.558-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `_id`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.558-04:00" + }, + { + "id": "ed498f55-8faf-4ebe-a6fd-1ebfa6747378", + "created_at": "2026-05-22T08:52:39.561-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `authored`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient_authored_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.561-04:00" + }, + { + "id": "8f6a7bae-856b-4dd4-a4d3-70d31056d606", + "created_at": "2026-05-22T08:52:39.562-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `_tag`, `authored`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient__tag_authored_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.562-04:00" + }, + { + "id": "9c25cd8a-bef5-4803-8887-625cf82e552a", + "created_at": "2026-05-22T08:52:39.563-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `status`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.563-04:00" + }, + { + "id": "f5a02392-6c01-4e54-a319-1b6642840d38", + "created_at": "2026-05-22T08:52:39.565-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `_tag`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient__tag_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.565-04:00" + }, + { + "id": "e3379d2b-a0fb-4bec-ad58-055793592688", + "created_at": "2026-05-22T08:52:39.566-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `questionnaire`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_patient_questionnaire_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.566-04:00" + }, + { + "id": "228760b8-14da-4030-9ee5-ed173bf791b1", + "created_at": "2026-05-22T08:52:39.568-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.568-04:00" + }, + { + "id": "33f380ef-ed96-4d8c-a78b-cd385a0955e9", + "created_at": "2026-05-22T08:52:39.904-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "685db7f3-eb8c-4d24-92cb-79287b84d64a", + "direction": "outgoing", + "index": 114143, + "result_id": "33f380ef-ed96-4d8c-a78b-cd385a0955e9", + "status": 200, + "timestamp": "2026-05-22T08:52:39.907-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "1733d922-b0de-4562-a985-5d581a174824", + "direction": "outgoing", + "index": 114144, + "result_id": "33f380ef-ed96-4d8c-a78b-cd385a0955e9", + "status": 200, + "timestamp": "2026-05-22T08:52:39.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "e257571c-824b-45aa-869d-1bab318927dc", + "direction": "outgoing", + "index": 114145, + "result_id": "33f380ef-ed96-4d8c-a78b-cd385a0955e9", + "status": 200, + "timestamp": "2026-05-22T08:52:39.932-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "skip", + "result_message": "No Provenance resources appear to be available. Please use patients with more information", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.904-04:00" + }, + { + "id": "5e2fd8d6-6cfe-4a58-95fc-2cf6e5398864", + "created_at": "2026-05-22T08:52:39.945-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-questionnaireresponse profile were returned", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.945-04:00" + }, + { + "id": "b113614e-1400-4ff8-abeb-a6e4519c51ae", + "created_at": "2026-05-22T08:52:39.947-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources were found", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.947-04:00" + }, + { + "id": "cac9b20c-21ad-4e99-8317-07be232fd53d", + "created_at": "2026-05-22T08:52:39.948-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response-us_core_v501_questionnaire_response_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.948-04:00" + }, + { + "id": "67310a21-a1bf-472f-85f2-19d5d653036f", + "created_at": "2026-05-22T08:52:39.949-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_questionnaire_response", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:39.949-04:00" + }, + { + "id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "created_at": "2026-05-22T08:52:40.616-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "db367e39-478f-42f2-b99f-4d0983781b0d", + "direction": "outgoing", + "index": 114146, + "result_id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "status": 200, + "timestamp": "2026-05-22T08:52:40.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=85", + "verb": "get" + }, + { + "id": "9e6cb48d-3581-452f-8c4b-54e5fc0065de", + "direction": "outgoing", + "index": 114147, + "result_id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "status": 200, + "timestamp": "2026-05-22T08:52:40.644-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355", + "verb": "get" + }, + { + "id": "f04d3aa4-ffa5-4319-9ed7-678068da90ef", + "direction": "outgoing", + "index": 114148, + "result_id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "status": 200, + "timestamp": "2026-05-22T08:52:40.661-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest/_search", + "verb": "post" + }, + { + "id": "bc1242a6-5413-4cdc-a188-a3930559282e", + "direction": "outgoing", + "index": 114149, + "result_id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "status": 200, + "timestamp": "2026-05-22T08:52:40.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=Patient/355", + "verb": "get" + }, + { + "id": "a2215f84-acb9-4e45-850d-95573b78f122", + "direction": "outgoing", + "index": 114150, + "result_id": "a31e2fc5-c14f-4f27-bf3c-dde8f615d2e8", + "status": 200, + "timestamp": "2026-05-22T08:52:40.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:40.616-04:00" + }, + { + "id": "40aeca7c-e57e-4c3b-a0ce-d863552f3672", + "created_at": "2026-05-22T08:52:40.822-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2b6b4ad8-058d-4eb3-85ee-4059c1231b4a", + "direction": "outgoing", + "index": 114151, + "result_id": "40aeca7c-e57e-4c3b-a0ce-d863552f3672", + "status": 200, + "timestamp": "2026-05-22T08:52:40.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_id=3545ff18-c7e4-45e1-94fc-3f7d644ebdd2", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:40.822-04:00" + }, + { + "id": "40f53c0a-5830-450e-b314-c0279e063021", + "created_at": "2026-05-22T08:52:41.630-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "22c34e04-080f-47e6-a2a4-5764edb3890b", + "direction": "outgoing", + "index": 114152, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.635-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "57410bee-fa29-44ac-9eab-9bea0c5e592e", + "direction": "outgoing", + "index": 114153, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "e756ce60-1eec-4000-99c8-86e10916d52b", + "direction": "outgoing", + "index": 114154, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "df3793be-758f-463a-ac86-d079ca40ed29", + "direction": "outgoing", + "index": 114155, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "1fa746f8-4040-449c-a959-f0d09639a68f", + "direction": "outgoing", + "index": 114156, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "c06f31f4-dd7b-4b66-9006-3563c2f87021", + "direction": "outgoing", + "index": 114157, + "result_id": "40f53c0a-5830-450e-b314-c0279e063021", + "status": 200, + "timestamp": "2026-05-22T08:52:41.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=http://snomed.info/sct%7C387713003\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_category_authored_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:41.630-04:00" + }, + { + "id": "9cdecc3e-4327-47a3-8e03-1f45e8219b23", + "created_at": "2026-05-22T08:52:41.987-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "421313b8-06b1-49c0-b37c-2a19cc0f210d", + "direction": "outgoing", + "index": 114158, + "result_id": "9cdecc3e-4327-47a3-8e03-1f45e8219b23", + "status": 200, + "timestamp": "2026-05-22T08:52:41.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=completed", + "verb": "get" + }, + { + "id": "d669a401-bb7b-46f7-a5fe-ddd587aaa4eb", + "direction": "outgoing", + "index": 114159, + "result_id": "9cdecc3e-4327-47a3-8e03-1f45e8219b23", + "status": 200, + "timestamp": "2026-05-22T08:52:42.007-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_status_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:41.987-04:00" + }, + { + "id": "bb67ed44-cf5c-459f-8067-7f2e383d1fbe", + "created_at": "2026-05-22T08:52:42.275-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "91779261-4f5b-48c0-b5cd-c318667110bc", + "direction": "outgoing", + "index": 114160, + "result_id": "bb67ed44-cf5c-459f-8067-7f2e383d1fbe", + "status": 200, + "timestamp": "2026-05-22T08:52:42.280-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "0f515f26-cdbc-49ac-8284-f36c9f418fea", + "direction": "outgoing", + "index": 114161, + "result_id": "bb67ed44-cf5c-459f-8067-7f2e383d1fbe", + "status": 200, + "timestamp": "2026-05-22T08:52:42.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=http://snomed.info/sct%7C233169004\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_code_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:42.275-04:00" + }, + { + "id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "created_at": "2026-05-22T08:52:43.175-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2cd5681d-36fe-491b-9717-9ac54c5f1074", + "direction": "outgoing", + "index": 114162, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.181-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "b4967e2a-3216-464f-9de3-d68fdb46f437", + "direction": "outgoing", + "index": 114163, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.203-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "ab3c5fa8-6024-45d2-8d21-92d317c889e2", + "direction": "outgoing", + "index": 114164, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "5ec578ef-2e23-4777-9d3a-1558fe851431", + "direction": "outgoing", + "index": 114165, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "56c057df-4f6e-46c1-a9c6-bb1556ec1da7", + "direction": "outgoing", + "index": 114166, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.243-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "b002d025-6c45-4e72-bde7-a2a68d85dfc8", + "direction": "outgoing", + "index": 114167, + "result_id": "c1ec1be0-fcb1-41f0-b396-3c46449e1e74", + "status": 200, + "timestamp": "2026-05-22T08:52:43.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=http://snomed.info/sct%7C233169004\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_code_authored_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:43.175-04:00" + }, + { + "id": "16682e99-c25a-46e2-b255-b2e94e165acd", + "created_at": "2026-05-22T08:52:43.511-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7d1f5496-af7b-4578-820b-1b46be4b64ff", + "direction": "outgoing", + "index": 114168, + "result_id": "16682e99-c25a-46e2-b255-b2e94e165acd", + "status": 200, + "timestamp": "2026-05-22T08:52:43.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "14b7b7d1-f90b-4c92-a1e0-6a62ba05399f", + "direction": "outgoing", + "index": 114169, + "result_id": "16682e99-c25a-46e2-b255-b2e94e165acd", + "status": 200, + "timestamp": "2026-05-22T08:52:43.529-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=http://snomed.info/sct%7C387713003\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_patient_category_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:43.511-04:00" + }, + { + "id": "0746e7ee-42c3-4331-8748-96b59005de0b", + "created_at": "2026-05-22T08:52:43.649-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "494b59d4-2e89-4451-8ec1-dd85bc78fb85", + "direction": "outgoing", + "index": 114170, + "result_id": "0746e7ee-42c3-4331-8748-96b59005de0b", + "status": 200, + "timestamp": "2026-05-22T08:52:43.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:43.649-04:00" + }, + { + "id": "53166028-6349-4db9-9d7b-a26ed7f7889a", + "created_at": "2026-05-22T08:52:44.104-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8b8e480a-18e5-4832-aeec-0229baca4e88", + "direction": "outgoing", + "index": 114171, + "result_id": "53166028-6349-4db9-9d7b-a26ed7f7889a", + "status": 200, + "timestamp": "2026-05-22T08:52:44.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "8c86f3c7-e4cc-44d1-a041-872c03ff5a4c", + "direction": "outgoing", + "index": 114172, + "result_id": "53166028-6349-4db9-9d7b-a26ed7f7889a", + "status": 200, + "timestamp": "2026-05-22T08:52:44.119-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "fd708e33-92bd-499f-984c-00e8827138a8", + "direction": "outgoing", + "index": 114173, + "result_id": "53166028-6349-4db9-9d7b-a26ed7f7889a", + "status": 200, + "timestamp": "2026-05-22T08:52:44.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:44.104-04:00" + }, + { + "id": "7325fd60-4b74-4082-8977-aa114303f560", + "created_at": "2026-05-22T08:52:46.493-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest.category[0]: Reference to draft ValueSet http://hl7.org/fhir/ValueSet/servicerequest-category|4.0.1", + "type": "info" + }, + { + "message": "ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "ServiceRequest/d1ab235c-2f94-4a51-8d36-45b9fc9dfd5f: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.493-04:00" + }, + { + "id": "e98ab1bf-2c84-44a2-88cd-a387c0acb030", + "created_at": "2026-05-22T08:52:46.511-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.511-04:00" + }, + { + "id": "3e2acd65-28f0-4436-b2a6-ea1df5ca077a", + "created_at": "2026-05-22T08:52:46.518-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request-us_core_v501_service_request_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.518-04:00" + }, + { + "id": "19a90071-a068-4c77-b6d9-dbb6c8bb3adf", + "created_at": "2026-05-22T08:52:46.520-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_service_request", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.520-04:00" + }, + { + "id": "06cfb49c-5b66-4118-9ac5-101ff61fc423", + "created_at": "2026-05-22T08:52:46.660-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b16a17d3-d234-41a1-a2f9-82ba74d53e94", + "direction": "outgoing", + "index": 114174, + "result_id": "06cfb49c-5b66-4118-9ac5-101ff61fc423", + "status": 200, + "timestamp": "2026-05-22T08:52:46.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization-us_core_v501_organization_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.660-04:00" + }, + { + "id": "f6e10c49-65cd-4e6c-9285-68d888547fb5", + "created_at": "2026-05-22T08:52:46.930-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "87e89181-81e9-46d2-a1d7-76bc3620d139", + "direction": "outgoing", + "index": 114175, + "result_id": "f6e10c49-65cd-4e6c-9285-68d888547fb5", + "status": 200, + "timestamp": "2026-05-22T08:52:46.933-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052", + "verb": "get" + }, + { + "id": "91bb865d-8bc8-4d24-aa12-54d3dbc6cd86", + "direction": "outgoing", + "index": 114176, + "result_id": "f6e10c49-65cd-4e6c-9285-68d888547fb5", + "status": 200, + "timestamp": "2026-05-22T08:52:46.950-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization-us_core_v501_organization_name_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:46.930-04:00" + }, + { + "id": "1a9f9666-af68-424f-a613-173bd0a42090", + "created_at": "2026-05-22T08:52:47.082-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d00a19bc-66e4-42a8-9440-1e7cbef11cfe", + "direction": "outgoing", + "index": 114177, + "result_id": "1a9f9666-af68-424f-a613-173bd0a42090", + "status": 200, + "timestamp": "2026-05-22T08:52:47.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization-us_core_v501_organization_address_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.082-04:00" + }, + { + "id": "a2d23d4d-c8b4-4c9c-8ff0-5dcb9ee2d2bf", + "created_at": "2026-05-22T08:52:47.140-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization.identifier[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization-us_core_v501_organization_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.140-04:00" + }, + { + "id": "364b37b3-24b7-45b9-a88c-d71edd823fad", + "created_at": "2026-05-22T08:52:47.234-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization-us_core_v501_organization_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.234-04:00" + }, + { + "id": "2aa8e452-a6da-45d9-8cb5-4f65f4e77ee5", + "created_at": "2026-05-22T08:52:47.235-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_organization", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.235-04:00" + }, + { + "id": "9e8d7ace-aef7-46eb-a931-c115cc9f4072", + "created_at": "2026-05-22T08:52:47.368-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cfd6c72e-dfbc-4de8-808a-4a69f9591588", + "direction": "outgoing", + "index": 114178, + "result_id": "9e8d7ace-aef7-46eb-a931-c115cc9f4072", + "status": 200, + "timestamp": "2026-05-22T08:52:47.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.368-04:00" + }, + { + "id": "b02f2322-dad7-470c-9e7c-7e77dd92e570", + "created_at": "2026-05-22T08:52:47.629-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b8abee91-cbb5-4c38-bd79-c825478f514e", + "direction": "outgoing", + "index": 114179, + "result_id": "b02f2322-dad7-470c-9e7c-7e77dd92e570", + "status": 200, + "timestamp": "2026-05-22T08:52:47.631-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?_id=d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "26375352-a693-4ba2-bb69-5e6e662cc21a", + "direction": "outgoing", + "index": 114180, + "result_id": "b02f2322-dad7-470c-9e7c-7e77dd92e570", + "status": 200, + "timestamp": "2026-05-22T08:52:47.645-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.629-04:00" + }, + { + "id": "d4808c50-c55e-4fc9-bf21-2dcb1b09b3ef", + "created_at": "2026-05-22T08:52:47.781-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cf5b4091-44d8-49cd-b7cc-ea9be68d8729", + "direction": "outgoing", + "index": 114181, + "result_id": "d4808c50-c55e-4fc9-bf21-2dcb1b09b3ef", + "status": 200, + "timestamp": "2026-05-22T08:52:47.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner_name_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:47.781-04:00" + }, + { + "id": "1d29766b-b743-43f6-8d06-862679fc1604", + "created_at": "2026-05-22T08:52:48.060-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7e3c9c7e-9ab6-4886-b6eb-525d2e98d575", + "direction": "outgoing", + "index": 114182, + "result_id": "1d29766b-b743-43f6-8d06-862679fc1604", + "status": 200, + "timestamp": "2026-05-22T08:52:48.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819", + "verb": "get" + }, + { + "id": "444b600c-e762-4b57-8497-b0edb1cb25ed", + "direction": "outgoing", + "index": 114183, + "result_id": "1d29766b-b743-43f6-8d06-862679fc1604", + "status": 200, + "timestamp": "2026-05-22T08:52:48.081-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner_identifier_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.060-04:00" + }, + { + "id": "bc0b41f7-1474-4318-99a7-48e68faffc16", + "created_at": "2026-05-22T08:52:48.125-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.125-04:00" + }, + { + "id": "29e5e16b-970f-4171-98de-fd95c334ef25", + "created_at": "2026-05-22T08:52:48.132-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner-us_core_v501_practitioner_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.132-04:00" + }, + { + "id": "4064a175-cb71-43f1-b94b-75ec60cc3f13", + "created_at": "2026-05-22T08:52:48.133-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.133-04:00" + }, + { + "id": "d20d3b66-8aca-47f6-88db-719487790242", + "created_at": "2026-05-22T08:52:48.146-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No PractitionerRole resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.146-04:00" + }, + { + "id": "e31f464c-76a2-4587-9831-c3a8860d2089", + "created_at": "2026-05-22T08:52:48.148-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `specialty`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_specialty_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.148-04:00" + }, + { + "id": "612ec58a-73da-4123-a8ae-5e1f36ae0512", + "created_at": "2026-05-22T08:52:48.150-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `practitioner`", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_practitioner_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.150-04:00" + }, + { + "id": "df96705a-446d-4efd-88e9-2e8317002dbe", + "created_at": "2026-05-22T08:52:48.151-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No PractitionerRole resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitionerrole profile were returned", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.151-04:00" + }, + { + "id": "754d6635-5d34-4bda-b1af-f95013ff64a7", + "created_at": "2026-05-22T08:52:48.153-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No PractitionerRole resources were found", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.153-04:00" + }, + { + "id": "17dbdf3d-2c02-44f7-be05-113f02ff7b69", + "created_at": "2026-05-22T08:52:48.155-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No PractitionerRole resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role-us_core_v501_practitioner_role_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.155-04:00" + }, + { + "id": "1a412fb9-7085-4848-9cba-f33cd1b0bd2b", + "created_at": "2026-05-22T08:52:48.156-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_practitioner_role", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.156-04:00" + }, + { + "id": "435d0fdc-d5b3-4c0b-a5a7-74fc4e78060e", + "created_at": "2026-05-22T08:52:48.329-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d6ab451d-63d2-4e4d-8846-826433dc3129", + "direction": "outgoing", + "index": 114184, + "result_id": "435d0fdc-d5b3-4c0b-a5a7-74fc4e78060e", + "status": 200, + "timestamp": "2026-05-22T08:52:48.332-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_provenance-us_core_v501_provenance_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:48.329-04:00" + }, + { + "id": "8fd852ff-1b14-451e-bd51-eed30dcf3163", + "created_at": "2026-05-22T08:52:55.558-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance|5.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0", + "type": "info" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_provenance-us_core_v501_provenance_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:55.558-04:00" + }, + { + "id": "f421a63d-8b5f-40af-8576-c6c357abfbf7", + "created_at": "2026-05-22T08:52:55.801-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_provenance-us_core_v501_provenance_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:55.801-04:00" + }, + { + "id": "48622477-7d61-42b5-be41-cd3f2230026c", + "created_at": "2026-05-22T08:52:55.803-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_provenance-us_core_v501_provenance_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:55.803-04:00" + }, + { + "id": "66e73fed-d495-4407-b49a-4ba00d4b418c", + "created_at": "2026-05-22T08:52:55.804-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_provenance", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:55.804-04:00" + }, + { + "id": "bb83b9ec-adba-43a7-bf0c-0985fcb96f81", + "created_at": "2026-05-22T08:52:55.952-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe RelatedPerson reference used for this test was pulled from resource\nCareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "15b30ad0-c635-4475-a3e0-3d058c8a55be", + "direction": "outgoing", + "index": 114185, + "result_id": "bb83b9ec-adba-43a7-bf0c-0985fcb96f81", + "status": 200, + "timestamp": "2026-05-22T08:52:55.955-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_read_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:55.952-04:00" + }, + { + "id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "created_at": "2026-05-22T08:52:56.563-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "bc06d35f-deab-4b9b-9767-fcf606ae9d53", + "direction": "outgoing", + "index": 114186, + "result_id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "status": 200, + "timestamp": "2026-05-22T08:52:56.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=85", + "verb": "get" + }, + { + "id": "cc709dd3-0b20-47a9-a806-21ebae0f0214", + "direction": "outgoing", + "index": 114187, + "result_id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "status": 200, + "timestamp": "2026-05-22T08:52:56.578-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/_search", + "verb": "post" + }, + { + "id": "3f11c0b0-b4a4-458d-a7ae-f887d86990ba", + "direction": "outgoing", + "index": 114188, + "result_id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "status": 200, + "timestamp": "2026-05-22T08:52:56.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=Patient/85", + "verb": "get" + }, + { + "id": "04c3d125-3ec5-4fed-825f-8913d8458e37", + "direction": "outgoing", + "index": 114189, + "result_id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "status": 200, + "timestamp": "2026-05-22T08:52:56.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=355", + "verb": "get" + }, + { + "id": "f21bf5f5-4eda-4280-8e9b-a3fb2c5bc022", + "direction": "outgoing", + "index": 114190, + "result_id": "c8402cd3-1228-4979-b31d-b222c9ed0598", + "status": 200, + "timestamp": "2026-05-22T08:52:56.618-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_patient_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:56.563-04:00" + }, + { + "id": "2bd39ad1-63f9-48ff-a768-0245faa73d4e", + "created_at": "2026-05-22T08:52:56.752-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "814f4387-641b-43e6-bdda-6bd617f1218f", + "direction": "outgoing", + "index": 114191, + "result_id": "2bd39ad1-63f9-48ff-a768-0245faa73d4e", + "status": 200, + "timestamp": "2026-05-22T08:52:56.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_id=4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person__id_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:56.752-04:00" + }, + { + "id": "1f2dc0a2-d180-4bc4-a0d4-cf943466331f", + "created_at": "2026-05-22T08:52:57.158-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cd38d5e6-e3bc-46a0-a2ea-646108fdc19f", + "direction": "outgoing", + "index": 114192, + "result_id": "1f2dc0a2-d180-4bc4-a0d4-cf943466331f", + "status": 200, + "timestamp": "2026-05-22T08:52:57.160-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "cf2f0d12-df93-41f0-b3b3-da6758e7b08d", + "direction": "outgoing", + "index": 114193, + "result_id": "1f2dc0a2-d180-4bc4-a0d4-cf943466331f", + "status": 200, + "timestamp": "2026-05-22T08:52:57.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "bbf2c225-72a2-4790-9b3c-1b529948dd26", + "direction": "outgoing", + "index": 114194, + "result_id": "1f2dc0a2-d180-4bc4-a0d4-cf943466331f", + "status": 200, + "timestamp": "2026-05-22T08:52:57.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_provenance_revinclude_search_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:57.158-04:00" + }, + { + "id": "f4265f8d-80dd-42b6-b610-adb57c70ae55", + "created_at": "2026-05-22T08:52:57.223-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a: RelatedPerson: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_validation_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:57.223-04:00" + }, + { + "id": "2ae2a5d9-3799-44d2-bb11-0b35abf237bf", + "created_at": "2026-05-22T08:52:57.226-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_must_support_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:57.226-04:00" + }, + { + "id": "4bc285f4-4e3f-42ff-9d40-acbb39f358ae", + "created_at": "2026-05-22T08:52:57.228-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person-us_core_v501_related_person_reference_resolution_test", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:57.228-04:00" + }, + { + "id": "3ecf623b-a453-4560-b926-58fb8523edae", + "created_at": "2026-05-22T08:52:57.229-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v501_related_person", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:52:57.229-04:00" + }, + { + "id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "created_at": "2026-05-22T08:53:01.342-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2df0e681-bf66-4e9a-80de-a1813da62505", + "direction": "outgoing", + "index": 114195, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "9b9b5cd6-26c5-4643-ae94-d457191d28f6", + "direction": "outgoing", + "index": 114196, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.364-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=44d6fccf-f3e3-45d5-86c8-34f89aaec8c5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c072987f-4f1a-4bd8-93e1-a41b1e99fc03", + "direction": "outgoing", + "index": 114197, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=44d6fccf-f3e3-45d5-86c8-34f89aaec8c5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "200e7cbf-d182-445c-8ef3-8e173282e068", + "direction": "outgoing", + "index": 114198, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "4338e116-ad65-46c7-9b3c-0b29a95ce951", + "direction": "outgoing", + "index": 114199, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c71d40ef-4983-4370-a436-0ca88f8088b1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f3dc3971-411a-4525-9232-e0e08d7238e1", + "direction": "outgoing", + "index": 114200, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "a2e29d9b-49b0-4774-9ff1-689e0956c53b", + "direction": "outgoing", + "index": 114201, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=62feb0bf-c00a-4846-82e6-c850625f001d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "80fb5fbf-5804-40a7-a556-904b23a68639", + "direction": "outgoing", + "index": 114202, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=62feb0bf-c00a-4846-82e6-c850625f001d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3fdfbca3-01ec-4621-8406-8a768277f671", + "direction": "outgoing", + "index": 114203, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "81676e19-3b7d-4d3e-8441-92a63d08be34", + "direction": "outgoing", + "index": 114204, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27d50973-b0bd-40b0-8a40-13b7ad4b73af\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8cfe2d55-c284-4363-af51-7f24d472fbee", + "direction": "outgoing", + "index": 114205, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=27d50973-b0bd-40b0-8a40-13b7ad4b73af\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1aa088e7-6a6f-40c2-89a7-b60c2d50d906", + "direction": "outgoing", + "index": 114206, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907", + "verb": "get" + }, + { + "id": "5f5560bb-b455-4129-836b-2bd610b51b3c", + "direction": "outgoing", + "index": 114207, + "result_id": "b7c637f4-c081-4720-9f62-f05be1e2675a", + "status": 200, + "timestamp": "2026-05-22T08:53:01.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_types", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.342-04:00" + }, + { + "id": "24d18541-8c79-4713-a138-3316a8b4a215", + "created_at": "2026-05-22T08:53:01.514-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_attachments", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.514-04:00" + }, + { + "id": "23031e07-6162-4658-96c5-177cdfb286e0", + "created_at": "2026-05-22T08:53:01.516-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_v400_clinical_notes_guidance", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.516-04:00" + }, + { + "id": "c7067e5f-09a9-4523-a4b3-10b5d2ad1202", + "created_at": "2026-05-22T08:53:01.527-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.527-04:00" + }, + { + "id": "8e4f676a-62bb-4242-bd60-8ad94c719979", + "created_at": "2026-05-22T08:53:01.528-04:00", + "inputs": [ + { + "name": "dar_code_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v501-us_core_v501_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.528-04:00" + }, + { + "id": "8e4b3e91-558a-4263-94b9-e8cc66ebe53b", + "created_at": "2026-05-22T08:53:01.529-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "dar_code_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v501-us_core_v501_fhir_api-us_core_311_data_absent_reason", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.529-04:00" + }, + { + "id": "3abed4b6-c9b1-4478-b8db-c107299df2a6", + "created_at": "2026-05-22T08:53:01.538-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T08:44:38-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,907", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "test_group_id": "us_core_v501-us_core_v501_fhir_api", + "test_run_id": "3fe58c60-4202-494a-9b4a-cbe10a62e973", + "test_session_id": "mv2P9DoubS", + "updated_at": "2026-05-22T08:53:01.538-04:00" + } +] \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_610.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_610.yaml new file mode 100644 index 000000000..c5bace399 --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_610.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v610 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 6.1.0 session created + status: created + start_run: + runnable: 2 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 2 US Core FHIR API + + - state_description: Finished Group 2 US Core FHIR API + status: done + last_completed: 2 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_610_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_610_expected.json new file mode 100644 index 000000000..bd1970868 --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_610_expected.json @@ -0,0 +1 @@ +[{"id":"89d3dc0c-103b-472a-9511-64f84a310d53","created_at":"2026-05-22T11:55:15.479-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-standalone_auth_tls","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.479-04:00"},{"id":"9de4aadc-91df-4e1f-a71a-ace3689c0c78","created_at":"2026-05-22T11:55:15.746-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[34]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[35]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[36]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-average-blood-pressure'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[{"id":"24c30379-2aac-4001-8fe8-a4c8bc5ca65e","direction":"outgoing","index":124232,"result_id":"9de4aadc-91df-4e1f-a71a-ace3689c0c78","status":200,"timestamp":"2026-05-22T11:55:15.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_conformance_support","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.746-04:00"},{"id":"459cfc34-d4ff-402a-b9a0-3c5c932f6b75","created_at":"2026-05-22T11:55:15.943-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_fhir_version","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.943-04:00"},{"id":"4962a38d-dc73-4d18-8867-1850974012bc","created_at":"2026-05-22T11:55:15.955-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"24c30379-2aac-4001-8fe8-a4c8bc5ca65e","direction":"outgoing","index":124232,"result_id":"9de4aadc-91df-4e1f-a71a-ace3689c0c78","status":200,"timestamp":"2026-05-22T11:55:15.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_json_support","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.955-04:00"},{"id":"76b0b771-f11c-40f2-908f-3ff88aa11fa3","created_at":"2026-05-22T11:55:15.965-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"24c30379-2aac-4001-8fe8-a4c8bc5ca65e","direction":"outgoing","index":124232,"result_id":"9de4aadc-91df-4e1f-a71a-ace3689c0c78","status":200,"timestamp":"2026-05-22T11:55:15.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_profile_support","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.965-04:00"},{"id":"d5490641-dbda-4b87-bf55-607b9fea51fd","created_at":"2026-05-22T11:55:15.975-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"24c30379-2aac-4001-8fe8-a4c8bc5ca65e","direction":"outgoing","index":124232,"result_id":"9de4aadc-91df-4e1f-a71a-ace3689c0c78","status":200,"timestamp":"2026-05-22T11:55:15.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_instantiate","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.975-04:00"},{"id":"df3ca840-e9d5-4b78-98ed-7766d30e4934","created_at":"2026-05-22T11:55:15.977-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:15.977-04:00"},{"id":"b46b21cd-e454-4cb5-b397-0bf36eac9b03","created_at":"2026-05-22T11:55:16.500-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cc8e85ca-64e6-4ed3-aad9-6344fd10cdc7","direction":"outgoing","index":124233,"result_id":"b46b21cd-e454-4cb5-b397-0bf36eac9b03","status":200,"timestamp":"2026-05-22T11:55:16.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85","verb":"get"},{"id":"c4ad11f6-5f4f-43e1-ae85-01663bc9c5b3","direction":"outgoing","index":124234,"result_id":"b46b21cd-e454-4cb5-b397-0bf36eac9b03","status":200,"timestamp":"2026-05-22T11:55:16.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/_search","verb":"post"},{"id":"cf2ff51b-41b9-4bfd-a911-01f0db67f43d","direction":"outgoing","index":124235,"result_id":"b46b21cd-e454-4cb5-b397-0bf36eac9b03","status":200,"timestamp":"2026-05-22T11:55:16.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355","verb":"get"},{"id":"bc0294f4-6e91-407c-b49f-641fd3992840","direction":"outgoing","index":124236,"result_id":"b46b21cd-e454-4cb5-b397-0bf36eac9b03","status":200,"timestamp":"2026-05-22T11:55:16.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:16.500-04:00"},{"id":"8c31aaab-985b-4bb8-9bca-f59074244364","created_at":"2026-05-22T11:55:16.824-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"733f68b6-5f5b-46bf-bf31-ec9e09a45010","direction":"outgoing","index":124237,"result_id":"8c31aaab-985b-4bb8-9bca-f59074244364","status":200,"timestamp":"2026-05-22T11:55:16.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"},{"id":"19e3279f-31f8-4419-bbdd-a7d617398cab","direction":"outgoing","index":124238,"result_id":"8c31aaab-985b-4bb8-9bca-f59074244364","status":200,"timestamp":"2026-05-22T11:55:16.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:16.824-04:00"},{"id":"cc9bba9a-212c-4a4b-8a0a-7cae43b7621b","created_at":"2026-05-22T11:55:16.986-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0cfb1b05-efb4-49e9-8ec5-5822ff8f8869","direction":"outgoing","index":124239,"result_id":"cc9bba9a-212c-4a4b-8a0a-7cae43b7621b","status":200,"timestamp":"2026-05-22T11:55:16.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:16.986-04:00"},{"id":"19c351a8-0332-4dee-badf-bf8859f11ea4","created_at":"2026-05-22T11:55:17.132-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4ea03319-862f-41fc-91ac-6b12fb088d37","direction":"outgoing","index":124240,"result_id":"19c351a8-0332-4dee-badf-bf8859f11ea4","status":200,"timestamp":"2026-05-22T11:55:17.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_family_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.132-04:00"},{"id":"00ef29b3-0f15-4393-a572-127d619e7260","created_at":"2026-05-22T11:55:17.294-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3f1e2194-9779-4ff1-a651-11fe5b1fd4ed","direction":"outgoing","index":124241,"result_id":"00ef29b3-0f15-4393-a572-127d619e7260","status":200,"timestamp":"2026-05-22T11:55:17.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_family_gender_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.294-04:00"},{"id":"02c67789-bc9e-4878-9ac5-ab011ae317e7","created_at":"2026-05-22T11:55:17.440-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"05019607-fc3d-4b6d-9b30-9ee2a6827987","direction":"outgoing","index":124242,"result_id":"02c67789-bc9e-4878-9ac5-ab011ae317e7","status":200,"timestamp":"2026-05-22T11:55:17.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.440-04:00"},{"id":"8aabb804-5355-4b99-b818-3b6dc11ee156","created_at":"2026-05-22T11:55:17.592-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c0aa16f5-b996-43d8-a82b-ad03b28c04d8","direction":"outgoing","index":124243,"result_id":"8aabb804-5355-4b99-b818-3b6dc11ee156","status":200,"timestamp":"2026-05-22T11:55:17.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.592-04:00"},{"id":"8f8b46ab-a853-4d93-a657-a6a42beffba7","created_at":"2026-05-22T11:55:17.735-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ff6c3935-fc04-499d-b41a-0ba5fa42b6ed","direction":"outgoing","index":124244,"result_id":"8f8b46ab-a853-4d93-a657-a6a42beffba7","status":200,"timestamp":"2026-05-22T11:55:17.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?death-date=1977-07-14T04:17:45-04:00\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_death_date_family_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.735-04:00"},{"id":"007fb337-9c85-4e4a-af90-2d5910452b8b","created_at":"2026-05-22T11:55:17.877-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a4aa66e0-2d8c-48f2-b56a-8c5e1316fe8d","direction":"outgoing","index":124245,"result_id":"007fb337-9c85-4e4a-af90-2d5910452b8b","status":200,"timestamp":"2026-05-22T11:55:17.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:17.877-04:00"},{"id":"9ab352e1-0b15-4e9b-a0ca-a9247ca137d3","created_at":"2026-05-22T11:55:18.418-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b037f703-0ea2-4f38-9a2e-c74a47564c84","direction":"outgoing","index":124246,"result_id":"9ab352e1-0b15-4e9b-a0ca-a9247ca137d3","status":200,"timestamp":"2026-05-22T11:55:18.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target","verb":"get"},{"id":"f76ab89d-fc3c-419b-982c-cfc540e5c91e","direction":"outgoing","index":124247,"result_id":"9ab352e1-0b15-4e9b-a0ca-a9247ca137d3","status":200,"timestamp":"2026-05-22T11:55:18.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target","verb":"get"},{"id":"c6e4640d-6fe8-4075-83e6-9baa111fe5da","direction":"outgoing","index":124248,"result_id":"9ab352e1-0b15-4e9b-a0ca-a9247ca137d3","status":200,"timestamp":"2026-05-22T11:55:18.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907\u0026_revinclude=Provenance:target","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:18.418-04:00"},{"id":"8a7c34c9-f0cf-41b3-b1cb-e99f0a7fa860","created_at":"2026-05-22T11:55:18.654-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"},{"message":"Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:18.654-04:00"},{"id":"261012a7-5102-4a20-a413-b677e8c7a37c","created_at":"2026-05-22T11:55:18.661-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:18.661-04:00"},{"id":"daa8b4de-aa9b-4892-9df3-2b4d87cd6b68","created_at":"2026-05-22T11:55:18.662-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:18.662-04:00"},{"id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","created_at":"2026-05-22T11:55:19.410-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a098b3bc-c0fc-45e4-af0a-1e1082f7be7f","direction":"outgoing","index":124249,"result_id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","status":200,"timestamp":"2026-05-22T11:55:19.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85","verb":"get"},{"id":"d87b5162-9546-4c80-8bd9-88fae93251b5","direction":"outgoing","index":124250,"result_id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","status":200,"timestamp":"2026-05-22T11:55:19.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355","verb":"get"},{"id":"5f1108fe-01a0-4514-8d4f-217dd1abcb95","direction":"outgoing","index":124251,"result_id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","status":200,"timestamp":"2026-05-22T11:55:19.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search","verb":"post"},{"id":"cf631907-6168-4c38-9d04-dcbe807c73ca","direction":"outgoing","index":124252,"result_id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","status":200,"timestamp":"2026-05-22T11:55:19.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355","verb":"get"},{"id":"4f9cd8c0-c020-4b48-8c21-e89e5288cfd1","direction":"outgoing","index":124253,"result_id":"deb80ae9-ac98-4e23-8950-7ee574d5c08d","status":200,"timestamp":"2026-05-22T11:55:19.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:19.410-04:00"},{"id":"fb29c82d-04a3-44e7-8db5-525a67c27ec0","created_at":"2026-05-22T11:55:19.740-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0e54734f-877d-4b3c-aa63-07bf47fc0cdc","direction":"outgoing","index":124254,"result_id":"fb29c82d-04a3-44e7-8db5-525a67c27ec0","status":200,"timestamp":"2026-05-22T11:55:19.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355","verb":"get"},{"id":"d606a7d8-f9f9-4f8b-adda-96f469fc837e","direction":"outgoing","index":124255,"result_id":"fb29c82d-04a3-44e7-8db5-525a67c27ec0","status":200,"timestamp":"2026-05-22T11:55:19.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_clinical_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:19.740-04:00"},{"id":"25ee6f7c-c603-49ce-a360-34b899664072","created_at":"2026-05-22T11:55:19.883-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"75004e66-133d-4b18-80cd-3487aca03d21","direction":"outgoing","index":124256,"result_id":"25ee6f7c-c603-49ce-a360-34b899664072","status":200,"timestamp":"2026-05-22T11:55:19.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:19.883-04:00"},{"id":"17b9f342-aaac-4f7e-971b-5a1f2322c21d","created_at":"2026-05-22T11:55:20.367-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"58f75238-dba3-4cb7-89d6-bf4a033cb0d8","direction":"outgoing","index":124257,"result_id":"17b9f342-aaac-4f7e-971b-5a1f2322c21d","status":200,"timestamp":"2026-05-22T11:55:20.370-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"7f7d650d-3652-42a9-a778-7df8f72fcef1","direction":"outgoing","index":124258,"result_id":"17b9f342-aaac-4f7e-971b-5a1f2322c21d","status":200,"timestamp":"2026-05-22T11:55:20.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"e7032e8f-29f4-41a4-a3a5-8677d7a394d2","direction":"outgoing","index":124259,"result_id":"17b9f342-aaac-4f7e-971b-5a1f2322c21d","status":200,"timestamp":"2026-05-22T11:55:20.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:20.367-04:00"},{"id":"446a399a-8f87-4c53-ba32-7f7de5ce5625","created_at":"2026-05-22T11:55:25.224-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)","type":"warning"},{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:25.224-04:00"},{"id":"556bddab-1405-41c2-972f-94ec245473db","created_at":"2026-05-22T11:55:25.256-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:25.256-04:00"},{"id":"2d275af3-b2b0-48d5-a90a-e25ca4ece706","created_at":"2026-05-22T11:55:25.426-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4f3b9f2b-1326-438b-aea4-cc8f868a38cc","direction":"outgoing","index":124260,"result_id":"2d275af3-b2b0-48d5-a90a-e25ca4ece706","status":200,"timestamp":"2026-05-22T11:55:25.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:25.426-04:00"},{"id":"3ecc4cda-7b54-4a20-8bd1-7c9a2d20e37b","created_at":"2026-05-22T11:55:25.445-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:25.445-04:00"},{"id":"c20e3995-34f9-4050-bc65-aad597bf8538","created_at":"2026-05-22T11:55:27.238-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"953306f8-431c-4dfc-b48a-95142ef3ad90","direction":"outgoing","index":124261,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85","verb":"get"},{"id":"82ecff2a-6931-422c-b942-8df991b5942c","direction":"outgoing","index":124262,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/_search","verb":"post"},{"id":"f826f775-a0ce-44da-a6b6-db8adb1385bb","direction":"outgoing","index":124263,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85","verb":"get"},{"id":"f0ce0560-e493-446d-9c23-3cfbb50aa1cf","direction":"outgoing","index":124264,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85","verb":"get"},{"id":"82b771c9-f360-4ad1-9401-b2aede01bd7d","direction":"outgoing","index":124265,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355","verb":"get"},{"id":"dc759080-0b38-48f8-811a-e765fdfdd5ce","direction":"outgoing","index":124266,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b16873ed-b640-456e-9814-bdac1aec12d8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"98c199cd-f44a-424b-8260-ec670a2c5802","direction":"outgoing","index":124267,"result_id":"c20e3995-34f9-4050-bc65-aad597bf8538","status":200,"timestamp":"2026-05-22T11:55:27.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:27.238-04:00"},{"id":"7f1a16e0-cbb4-4acb-8b7c-9a332fe8753b","created_at":"2026-05-22T11:55:27.938-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7c018129-3b72-4a42-ac8d-a12e18c41627","direction":"outgoing","index":124268,"result_id":"7f1a16e0-cbb4-4acb-8b7c-9a332fe8753b","status":200,"timestamp":"2026-05-22T11:55:27.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"dad1552e-3b48-43e2-8f76-cca5b1174ff0","direction":"outgoing","index":124269,"result_id":"7f1a16e0-cbb4-4acb-8b7c-9a332fe8753b","status":200,"timestamp":"2026-05-22T11:55:27.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"446b51ec-728e-4753-ad9d-3a649fed6a1c","direction":"outgoing","index":124270,"result_id":"7f1a16e0-cbb4-4acb-8b7c-9a332fe8753b","status":200,"timestamp":"2026-05-22T11:55:27.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active","verb":"get"},{"id":"8e475828-35af-482e-88a2-502a7d57a5c4","direction":"outgoing","index":124271,"result_id":"7f1a16e0-cbb4-4acb-8b7c-9a332fe8753b","status":200,"timestamp":"2026-05-22T11:55:27.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:27.938-04:00"},{"id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","created_at":"2026-05-22T11:55:29.179-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9a222757-3405-4887-ad93-085c03994c53","direction":"outgoing","index":124272,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"c3fb0d7b-8251-4454-8903-9317272f0c0c","direction":"outgoing","index":124273,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"6682338e-7328-418a-b6aa-5abc6517fe0f","direction":"outgoing","index":124274,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"1d20124b-1ea8-4358-8413-d74ac0b7871d","direction":"outgoing","index":124275,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"c534e913-7f9b-4c98-9ff2-1fc3f069f471","direction":"outgoing","index":124276,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"335a2f9c-e27b-4e58-9372-e769623d4c49","direction":"outgoing","index":124277,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"37ff40d7-228d-4824-825e-e82398a0e1ba","direction":"outgoing","index":124278,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active","verb":"get"},{"id":"a1bdf4d0-ba49-4477-a9d9-54ade532fca2","direction":"outgoing","index":124279,"result_id":"3dce7b4c-5f0f-4f14-b17c-c5f896144cdc","status":200,"timestamp":"2026-05-22T11:55:29.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_status_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:29.179-04:00"},{"id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","created_at":"2026-05-22T11:55:31.101-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"74eed48f-0786-43fe-9125-3f429611c7dd","direction":"outgoing","index":124280,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"98e76b98-9169-4a6a-99ea-5886f55ca100","direction":"outgoing","index":124281,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"cc22bfaf-8d4b-4404-83d5-77460c5128b3","direction":"outgoing","index":124282,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"083924f4-87a0-484e-a3af-72c8477e5b76","direction":"outgoing","index":124283,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"57fe8a92-5a7f-4b90-a7e0-a22ba01b9fd4","direction":"outgoing","index":124284,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f8f4042f-c965-4ba0-a97f-89a2d9c4a3e3","direction":"outgoing","index":124285,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"05e5ee05-ed00-4985-89a3-e6ca09d4a25e","direction":"outgoing","index":124286,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"812d0072-0263-4597-b64f-8a67a1e80e36","direction":"outgoing","index":124287,"result_id":"35b7e5e6-fd2e-472f-94ff-24892518d8f0","status":200,"timestamp":"2026-05-22T11:55:31.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=84f88112-a986-44fc-81e5-235db536775b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:31.101-04:00"},{"id":"d3effb17-0bf9-46df-b336-ed255981f65a","created_at":"2026-05-22T11:55:31.326-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f781b345-18f9-480c-b88c-b6689388d80f","direction":"outgoing","index":124288,"result_id":"d3effb17-0bf9-46df-b336-ed255981f65a","status":200,"timestamp":"2026-05-22T11:55:31.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:31.326-04:00"},{"id":"95d73783-1d5c-44da-95ec-a02f36e330ab","created_at":"2026-05-22T11:55:32.591-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"00889762-8fad-49e0-9593-188d95fd6f3b","direction":"outgoing","index":124289,"result_id":"95d73783-1d5c-44da-95ec-a02f36e330ab","status":200,"timestamp":"2026-05-22T11:55:32.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85","verb":"get"},{"id":"fb91a16b-e85d-4073-b2d8-1ea9c14eaed3","direction":"outgoing","index":124290,"result_id":"95d73783-1d5c-44da-95ec-a02f36e330ab","status":200,"timestamp":"2026-05-22T11:55:32.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355","verb":"get"},{"id":"6216e5df-10c2-4a43-958f-6864d2f67efa","direction":"outgoing","index":124291,"result_id":"95d73783-1d5c-44da-95ec-a02f36e330ab","status":200,"timestamp":"2026-05-22T11:55:32.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0577a692-9617-4972-8402-5659d9903433\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5291441e-bcbf-45da-b656-17dd1fff76f3","direction":"outgoing","index":124292,"result_id":"95d73783-1d5c-44da-95ec-a02f36e330ab","status":200,"timestamp":"2026-05-22T11:55:32.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:32.591-04:00"},{"id":"f7c80292-f0fd-45dc-89fb-88120faa4b0e","created_at":"2026-05-22T11:55:40.695-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:40.695-04:00"},{"id":"bfafb5c6-b7f5-4c01-9373-f56671300350","created_at":"2026-05-22T11:55:40.728-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:40.728-04:00"},{"id":"eb705d91-7967-4bb3-9c7a-2fc1cc185d23","created_at":"2026-05-22T11:55:40.888-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ec868fff-3f13-4892-9e4d-791b45f5f24b","direction":"outgoing","index":124293,"result_id":"eb705d91-7967-4bb3-9c7a-2fc1cc185d23","status":200,"timestamp":"2026-05-22T11:55:40.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:40.888-04:00"},{"id":"784a8688-f369-426c-a0f8-96c5399a647e","created_at":"2026-05-22T11:55:40.906-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:40.906-04:00"},{"id":"f0c90e6d-1404-4d26-8991-0df8880204e7","created_at":"2026-05-22T11:55:43.839-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"97bca967-17d3-4047-9c73-9aa585ce4e3a","direction":"outgoing","index":124294,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed","verb":"get"},{"id":"c513dde4-c719-4332-bbf8-75ca9faa0a02","direction":"outgoing","index":124295,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active","verb":"get"},{"id":"a1e92c12-25c5-4361-9aa8-1cce63069f9f","direction":"outgoing","index":124296,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/_search","verb":"post"},{"id":"0bb83198-341e-4c25-a28c-47d443c8163b","direction":"outgoing","index":124297,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.889-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active","verb":"get"},{"id":"3e7162ab-5301-4704-b6cc-b53c4b3ee172","direction":"outgoing","index":124298,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended","verb":"get"},{"id":"5b68c2f3-06d7-48f9-b771-0865bf53bd8d","direction":"outgoing","index":124299,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive","verb":"get"},{"id":"e06646a3-5bfd-4c8f-9984-7792e0fa63ec","direction":"outgoing","index":124300,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error","verb":"get"},{"id":"2c799969-6d7e-44dd-b651-499793343645","direction":"outgoing","index":124301,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed","verb":"get"},{"id":"b01f0f22-2a4d-4b6e-a61b-669d77f49232","direction":"outgoing","index":124302,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active","verb":"get"},{"id":"7198f35c-4bea-4feb-b8c7-cf7c43aaf3fc","direction":"outgoing","index":124303,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended","verb":"get"},{"id":"6b2c1575-edbb-4589-8ab7-c3232c90c6a6","direction":"outgoing","index":124304,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive","verb":"get"},{"id":"0c61de58-bb6c-4ac0-bf20-17ed0bce8fbb","direction":"outgoing","index":124305,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=858d9a2b-3247-4a47-9d8d-43b3847928c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18d21f06-c7c4-43e0-91c6-d1febff03983","direction":"outgoing","index":124306,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:43.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error","verb":"get"},{"id":"da74d943-acfc-400d-8fea-48f5bfca574e","direction":"outgoing","index":124307,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:44.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=proposed","verb":"get"},{"id":"9fc08fc1-d1f1-4ac7-9276-f06f4a705451","direction":"outgoing","index":124308,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:44.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=active","verb":"get"},{"id":"1ee3d9f7-565d-405d-be61-7271b4ea0ff7","direction":"outgoing","index":124309,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:44.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=suspended","verb":"get"},{"id":"1b0e7a42-4824-4453-a7e1-786c5af4f102","direction":"outgoing","index":124310,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:44.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=inactive","verb":"get"},{"id":"6b1f4d5e-7525-4fcf-8499-f8d5ec716140","direction":"outgoing","index":124311,"result_id":"f0c90e6d-1404-4d26-8991-0df8880204e7","status":200,"timestamp":"2026-05-22T11:55:44.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:43.839-04:00"},{"id":"6fc41e55-60bd-4397-839a-3753a497c716","created_at":"2026-05-22T11:55:44.301-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"dec974de-678b-4c55-91d9-9e4ef753ce49","direction":"outgoing","index":124312,"result_id":"6fc41e55-60bd-4397-839a-3753a497c716","status":400,"timestamp":"2026-05-22T11:55:44.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003","verb":"get"},{"id":"7d4f66d5-9480-4726-bc26-be8ed34ba1ce","direction":"outgoing","index":124313,"result_id":"6fc41e55-60bd-4397-839a-3753a497c716","status":400,"timestamp":"2026-05-22T11:55:44.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_role_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:44.301-04:00"},{"id":"bfbb9ec3-edde-48a6-8390-b366af10f774","created_at":"2026-05-22T11:55:44.561-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"eb2ceacc-23ba-4d9b-ab76-4e43a6402c76","direction":"outgoing","index":124314,"result_id":"bfbb9ec3-edde-48a6-8390-b366af10f774","status":400,"timestamp":"2026-05-22T11:55:44.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003","verb":"get"},{"id":"722fb85a-eeb7-4ade-aab8-62a2cb257ec4","direction":"outgoing","index":124315,"result_id":"bfbb9ec3-edde-48a6-8390-b366af10f774","status":400,"timestamp":"2026-05-22T11:55:44.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_role_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:44.561-04:00"},{"id":"fe215c7a-d3e0-4e04-a61a-b1885f445e9e","created_at":"2026-05-22T11:55:44.707-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9fe7ec15-a40d-4904-a227-04e50a672ec7","direction":"outgoing","index":124316,"result_id":"fe215c7a-d3e0-4e04-a61a-b1885f445e9e","status":200,"timestamp":"2026-05-22T11:55:44.710-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:44.707-04:00"},{"id":"17c54b2d-44ce-4522-befb-c7589882d5a0","created_at":"2026-05-22T11:55:47.727-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ed5883ea-8828-402f-b643-b22fefec68ed","direction":"outgoing","index":124317,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed","verb":"get"},{"id":"3aa149d4-a2e1-48cd-956c-1bc3384570dd","direction":"outgoing","index":124318,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.749-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active","verb":"get"},{"id":"91dabfce-dff8-4cc7-b3fb-9ff4f2cb5d99","direction":"outgoing","index":124319,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended","verb":"get"},{"id":"d1131ccf-b67a-4838-9717-6c05dbc574e9","direction":"outgoing","index":124320,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive","verb":"get"},{"id":"03b3d70b-d9d9-418b-987a-d21275fa70b8","direction":"outgoing","index":124321,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error","verb":"get"},{"id":"4f4152bf-19ed-411d-9a66-949a43feff2c","direction":"outgoing","index":124322,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed","verb":"get"},{"id":"28981e8f-7807-44b0-aa33-dd6e598266e4","direction":"outgoing","index":124323,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active","verb":"get"},{"id":"39e126a2-9706-4dff-9ffb-12a1137f3f85","direction":"outgoing","index":124324,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended","verb":"get"},{"id":"a002af9d-6d64-44f6-9a67-3fb0ae5b19c0","direction":"outgoing","index":124325,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive","verb":"get"},{"id":"4ef2dddc-2da9-4b6d-86a6-b2d198f849cf","direction":"outgoing","index":124326,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b9cf9c3-a20d-4664-92b2-6167b3281b75\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"323af41b-a691-416b-867b-898697776797","direction":"outgoing","index":124327,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error","verb":"get"},{"id":"6221dcfe-7446-449d-bb2e-c0c9716df055","direction":"outgoing","index":124328,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=proposed","verb":"get"},{"id":"d0f251d7-007c-43c4-a6b5-d2cec273339d","direction":"outgoing","index":124329,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=active","verb":"get"},{"id":"1917bc37-822f-4787-b6d0-7abd69889253","direction":"outgoing","index":124330,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=suspended","verb":"get"},{"id":"4759396b-bd70-4c73-bf1c-96308a0aa198","direction":"outgoing","index":124331,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=inactive","verb":"get"},{"id":"ba2ea0cc-6393-4ef4-aaef-1d685f492b13","direction":"outgoing","index":124332,"result_id":"17c54b2d-44ce-4522-befb-c7589882d5a0","status":200,"timestamp":"2026-05-22T11:55:47.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:47.727-04:00"},{"id":"1d93b1d2-9012-435d-83d3-267e0e64003a","created_at":"2026-05-22T11:55:52.394-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:52.394-04:00"},{"id":"6b09b4c8-f8d1-46b7-9cef-b298507a351f","created_at":"2026-05-22T11:55:52.481-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:52.481-04:00"},{"id":"6dc03f80-4fa6-4763-98a6-d63b43f5e10b","created_at":"2026-05-22T11:55:52.944-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"931d685e-39de-43bf-9a24-031f4639aa49","direction":"outgoing","index":124333,"result_id":"6dc03f80-4fa6-4763-98a6-d63b43f5e10b","status":200,"timestamp":"2026-05-22T11:55:52.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"37cba27e-268a-457f-88b7-c70775a962e4","direction":"outgoing","index":124334,"result_id":"6dc03f80-4fa6-4763-98a6-d63b43f5e10b","status":200,"timestamp":"2026-05-22T11:55:52.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"a9dc6bc8-d2e8-4f9c-98b5-0bd4c1fae240","direction":"outgoing","index":124335,"result_id":"6dc03f80-4fa6-4763-98a6-d63b43f5e10b","status":200,"timestamp":"2026-05-22T11:55:52.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:52.944-04:00"},{"id":"f5681bc2-a9c9-4aa1-9e2f-0765a0335cc8","created_at":"2026-05-22T11:55:52.998-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:52.998-04:00"},{"id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","created_at":"2026-05-22T11:55:55.355-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"278cfafa-9e48-4635-a476-9ccf5375b4a5","direction":"outgoing","index":124336,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b405946a-619b-4196-8291-a19646f3f162","direction":"outgoing","index":124337,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb246836-c7c6-4e09-8abb-bc1586bcc911\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90887ffc-6fd5-4181-8c81-073a918159d1","direction":"outgoing","index":124338,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"6e07320e-c912-44a3-b180-b9c3941ac07e","direction":"outgoing","index":124339,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb246836-c7c6-4e09-8abb-bc1586bcc911\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e665b96-0800-4cec-ae8c-2317e6fca9ff","direction":"outgoing","index":124340,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"e6f68a40-bd37-444a-a8c6-e6f566a6ac9c","direction":"outgoing","index":124341,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f70ffc88-e8e3-42d8-a0c2-214cc0230851\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"082f4ec6-9969-4a7a-ae22-638d15a46f42","direction":"outgoing","index":124342,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"e7cb65bf-0a45-44ea-97aa-d45cc251077e","direction":"outgoing","index":124343,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17b92696-6583-4568-a382-01d9f616bd50\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"adb9179b-ce60-4cb7-a1ac-bdfa2a1c6210","direction":"outgoing","index":124344,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"5892d357-6e78-4d53-bc76-c636ca447e65","direction":"outgoing","index":124345,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35186933-0834-4959-870c-1444017d1ad4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"badb3fd9-a742-498d-ac1b-28a5ef432aad","direction":"outgoing","index":124346,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35186933-0834-4959-870c-1444017d1ad4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"19c9150d-239d-4ba8-9881-195350715f57","direction":"outgoing","index":124347,"result_id":"5073a7ea-40d0-419b-b6c1-3f00304699ac","status":200,"timestamp":"2026-05-22T11:55:55.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:55.355-04:00"},{"id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","created_at":"2026-05-22T11:55:58.038-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"af896942-a1f7-47a4-b742-674089a8dee0","direction":"outgoing","index":124348,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"9eab48ea-6e79-4139-a229-5b39ea57cb2b","direction":"outgoing","index":124349,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=50e5a532-89a6-4b63-ae20-05155c5fc304\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"acda0246-2155-42c6-8625-5115fbf1f11f","direction":"outgoing","index":124350,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.078-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"77c2a0b2-ae2b-4e1d-ae4d-121569cce5b9","direction":"outgoing","index":124351,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29715342-460a-4250-9a44-5147f9c6e994","direction":"outgoing","index":124352,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1d8f8ce-8b2f-4800-a108-89025e774b4e","direction":"outgoing","index":124353,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b32804e1-e357-4899-9535-77a452470a52","direction":"outgoing","index":124354,"result_id":"9b6a7688-9a4b-4d3e-b5ea-662c642f456e","status":200,"timestamp":"2026-05-22T11:55:58.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:55:58.038-04:00"},{"id":"7df51085-9821-4f76-b00b-4b9533af9c6e","created_at":"2026-05-22T11:56:00.919-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"63e483e9-6337-4a40-adf3-aa7ca7a622d5","direction":"outgoing","index":124355,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:00.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"8c2d2cce-450e-4b47-8f65-7ac724d33ccc","direction":"outgoing","index":124356,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:00.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"a4182482-550e-4f4c-a2a8-e231d256c678","direction":"outgoing","index":124357,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:00.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f80cd3e-d93a-4d52-a7ec-622e3ecdfc4e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8435353a-5f91-40af-a37b-03baffcdbe31","direction":"outgoing","index":124358,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:00.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c44a3a6c-8bd5-467c-84c5-65739f725418","direction":"outgoing","index":124359,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:00.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3ae70ed-9250-492a-8680-c54556973e60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd704557-4ed8-4153-83e9-b519c1b9d08c","direction":"outgoing","index":124360,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:01.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"e36c837a-e997-4d20-996d-3fced865ccf2","direction":"outgoing","index":124361,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:01.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"9d1973e4-18bc-4feb-8988-6f868208ba8b","direction":"outgoing","index":124362,"result_id":"7df51085-9821-4f76-b00b-4b9533af9c6e","status":200,"timestamp":"2026-05-22T11:56:01.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_recorded_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:00.919-04:00"},{"id":"a13c4736-0e31-4842-860c-755471b56fbf","created_at":"2026-05-22T11:56:01.045-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `asserted-date`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_asserted_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:01.045-04:00"},{"id":"5173896e-a365-465b-b203-afdf23df26a8","created_at":"2026-05-22T11:56:03.077-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"311495d8-2162-4f67-83ef-81230120449e","direction":"outgoing","index":124363,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"38173adb-df9c-48f4-bfd1-0e2f9e108529","direction":"outgoing","index":124364,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c4ae383-d97f-415d-bea1-5a4b82c640fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e65313-7cba-4f57-a010-6d4b748946c4","direction":"outgoing","index":124365,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"233f83f0-4ed9-467a-8b75-203f9773e68d","direction":"outgoing","index":124366,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2226ae2d-2225-490a-a698-ae500f358af2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5df7e8a9-26e3-4d8f-abd8-592a142a0894","direction":"outgoing","index":124367,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"37f3e758-b611-4d02-9c18-c1d2444b1168","direction":"outgoing","index":124368,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed85c581-4a4b-4f6a-8d3d-3e480625a00f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb7ba479-1f65-490c-81ac-c1c607bacc76","direction":"outgoing","index":124369,"result_id":"5173896e-a365-465b-b203-afdf23df26a8","status":200,"timestamp":"2026-05-22T11:56:03.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed85c581-4a4b-4f6a-8d3d-3e480625a00f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_clinical_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:03.077-04:00"},{"id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","created_at":"2026-05-22T11:56:05.884-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1180b098-f338-4f8f-8976-5828c3b4971e","direction":"outgoing","index":124370,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"50ad802f-f175-4191-82be-783cf2f7fb5e","direction":"outgoing","index":124371,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"260c8459-ada0-4b80-84a6-54dac1423f8a","direction":"outgoing","index":124372,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2886f48f-6da0-446b-8f07-ede281ec185c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50f8f89c-0c46-46fc-98c4-7f3430ebdd17","direction":"outgoing","index":124373,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"44924b9a-2b75-4b46-8eff-cba48c3a2567","direction":"outgoing","index":124374,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b9bc263-424d-4847-b43e-cf4d0b1e1ed6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"085aa82c-d126-401c-883b-751134fde58c","direction":"outgoing","index":124375,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"219ec960-eb28-4a6e-a78e-8f21d0b95ffb","direction":"outgoing","index":124376,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"6256215a-133c-4613-8778-1c17400e3726","direction":"outgoing","index":124377,"result_id":"19f727b1-c29b-4745-ae88-b7f5dbeda00a","status":200,"timestamp":"2026-05-22T11:56:05.979-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_onset_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:05.884-04:00"},{"id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","created_at":"2026-05-22T11:56:07.379-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"55aee0e7-4452-425e-9804-ed09bf2d426e","direction":"outgoing","index":124378,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"66a98375-bb14-4b7a-8b54-ebd576134840","direction":"outgoing","index":124379,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7c30c28b-9573-43d1-88e9-fdc12176cb4a","direction":"outgoing","index":124380,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=feb63736-1043-4c6d-9e3b-0f829cd5bd3e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"10de1f00-1cf9-4d56-b327-fda0447b0b42","direction":"outgoing","index":124381,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"aa23dad8-2925-4ac8-9e04-1149fdbda9a5","direction":"outgoing","index":124382,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=674d512d-fc18-40fc-ae0a-9b32de89e182\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6330d37c-3624-4cea-88aa-09cab829ed5e","direction":"outgoing","index":124383,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"05096dea-2a32-4194-bf92-a46a47766287","direction":"outgoing","index":124384,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"06810e8d-550f-4d6f-9737-8af1d13f3aeb","direction":"outgoing","index":124385,"result_id":"7f00587f-08c4-4214-9c44-3c9e928b4c60","status":200,"timestamp":"2026-05-22T11:56:07.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_abatement_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:07.379-04:00"},{"id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","created_at":"2026-05-22T11:56:09.340-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6d10a305-b534-49c3-8e52-4d22e0a3f01d","direction":"outgoing","index":124386,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"02e237dd-92d2-4f23-a817-865ac9077e8b","direction":"outgoing","index":124387,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecb3a4c0-c8d2-4b3c-a117-bf99b27013a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6f96ca11-bf10-4856-bf64-5b950637f3c4","direction":"outgoing","index":124388,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"56a18ac3-89f3-41f9-bbce-b4d1faea69e6","direction":"outgoing","index":124389,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=597ac82b-fd08-4f10-8ab7-6e5136ff69d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45cead7a-27c0-4b06-bd54-026213e7ae8d","direction":"outgoing","index":124390,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"3f53dafc-edb3-4e7c-8c79-e3f1becc1c4a","direction":"outgoing","index":124391,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b88ac-51cb-4ca6-922f-ff21c56e252f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18e55fea-f0e7-4851-8219-3195d3fa1f47","direction":"outgoing","index":124392,"result_id":"ef88140c-627d-4f9b-a36e-8b200358a9c1","status":200,"timestamp":"2026-05-22T11:56:09.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b88ac-51cb-4ca6-922f-ff21c56e252f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_clinical_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:09.340-04:00"},{"id":"2b6d36d6-9f63-460f-b622-5a69457fb1a9","created_at":"2026-05-22T11:56:10.038-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"beec2fa6-423d-4a28-8e6f-6e2cf5b7bdcf","direction":"outgoing","index":124393,"result_id":"2b6d36d6-9f63-460f-b622-5a69457fb1a9","status":200,"timestamp":"2026-05-22T11:56:10.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"f8e5b24e-14d7-4ac5-a3e9-77d641bcaffb","direction":"outgoing","index":124394,"result_id":"2b6d36d6-9f63-460f-b622-5a69457fb1a9","status":200,"timestamp":"2026-05-22T11:56:10.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"1bd1e236-dd9a-4e14-8e00-a1cd105c1b80","direction":"outgoing","index":124395,"result_id":"2b6d36d6-9f63-460f-b622-5a69457fb1a9","status":200,"timestamp":"2026-05-22T11:56:10.077-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_encounter_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:10.038-04:00"},{"id":"999be64b-2b08-4201-8ff4-30ad7fe2da55","created_at":"2026-05-22T11:56:10.619-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"77e117e8-9a11-40ff-848d-748e55cf799e","direction":"outgoing","index":124396,"result_id":"999be64b-2b08-4201-8ff4-30ad7fe2da55","status":200,"timestamp":"2026-05-22T11:56:10.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"86cfecd1-35ca-4ac6-bef8-9c80f79d45a3","direction":"outgoing","index":124397,"result_id":"999be64b-2b08-4201-8ff4-30ad7fe2da55","status":200,"timestamp":"2026-05-22T11:56:10.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"605007a7-fa77-401d-9e50-0f36ddaf8454","direction":"outgoing","index":124398,"result_id":"999be64b-2b08-4201-8ff4-30ad7fe2da55","status":200,"timestamp":"2026-05-22T11:56:10.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:10.619-04:00"},{"id":"4db2d814-9108-404d-875b-2801520b55d1","created_at":"2026-05-22T11:56:10.814-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f110265d-2ff9-4275-ab5b-7a98f2103090","direction":"outgoing","index":124399,"result_id":"4db2d814-9108-404d-875b-2801520b55d1","status":200,"timestamp":"2026-05-22T11:56:10.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:10.814-04:00"},{"id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","created_at":"2026-05-22T11:56:12.693-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5821650e-cfea-4171-b201-5f6d70016186","direction":"outgoing","index":124400,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b38ae076-ccb1-40b4-950d-2592a97292df","direction":"outgoing","index":124401,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c2e8f6ef-2e19-4d54-b973-6c43694ba91b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed1bb181-b5e5-48f4-80f2-b5cb82aecab0","direction":"outgoing","index":124402,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"a24f06fc-f964-41c2-bd45-11105964ae49","direction":"outgoing","index":124403,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cb219f3c-7f09-45e9-b045-ff0981aa70cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"268f1adf-6980-4cc8-9b87-48a8670e0088","direction":"outgoing","index":124404,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cb219f3c-7f09-45e9-b045-ff0981aa70cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0bc3b3ba-f58b-4d9b-8f11-ab36d7778259","direction":"outgoing","index":124405,"result_id":"e0c3407e-b8c8-43b3-82df-ca33419d128e","status":200,"timestamp":"2026-05-22T11:56:12.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:12.693-04:00"},{"id":"b48179a8-d3ad-42de-a69d-5a5ea1d767e2","created_at":"2026-05-22T11:56:17.458-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:17.458-04:00"},{"id":"917ebc90-b24a-4769-901f-3eb86a253166","created_at":"2026-05-22T11:56:17.570-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:17.570-04:00"},{"id":"ad65f2b0-2f83-4f45-ab3f-a8b8760a840c","created_at":"2026-05-22T11:56:18.500-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"35a10819-190c-4e1d-94e2-469531101b38","direction":"outgoing","index":124406,"result_id":"ad65f2b0-2f83-4f45-ab3f-a8b8760a840c","status":200,"timestamp":"2026-05-22T11:56:18.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:18.500-04:00"},{"id":"e38b4062-c273-42de-83f7-71173214a95f","created_at":"2026-05-22T11:56:18.528-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:18.528-04:00"},{"id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","created_at":"2026-05-22T11:56:19.666-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cd227541-b120-4096-b303-eec84165905e","direction":"outgoing","index":124407,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"c305c9ec-0692-41f0-8bbf-826f25dfb1e9","direction":"outgoing","index":124408,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"870d565f-77ba-4e5b-848e-c524e8d8da7f","direction":"outgoing","index":124409,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"566be4b9-8d8e-4499-b5eb-a9d89b6218eb","direction":"outgoing","index":124410,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"9d2b2297-255e-4bde-b683-58eaea5864fd","direction":"outgoing","index":124411,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"070ecad6-3bdb-4b03-86a9-3ea4036e5156","direction":"outgoing","index":124412,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"6218d431-8446-4e0c-bd50-796bae4605a8","direction":"outgoing","index":124413,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"b5eeb1c6-b093-4263-9f51-99bf15589fa0","direction":"outgoing","index":124414,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"f1a8706c-77c1-4a6e-b378-824940b65be1","direction":"outgoing","index":124415,"result_id":"eda8dd0b-ea99-4821-bb39-8ba038b14874","status":200,"timestamp":"2026-05-22T11:56:19.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:19.666-04:00"},{"id":"95554afc-47b5-4999-bfe4-4589030aeb62","created_at":"2026-05-22T11:56:20.927-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"45c39ad2-a2ec-49d3-8fa9-1d04bf3dfdd2","direction":"outgoing","index":124416,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:20.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"de4fc634-51b3-456e-a0fa-64c3e4b19ae9","direction":"outgoing","index":124417,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:20.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=50e5a532-89a6-4b63-ae20-05155c5fc304\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"68fca20f-6ac4-4b04-b640-fc7c7a7c4ae2","direction":"outgoing","index":124418,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:20.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"3fe10330-e589-41e5-aabb-3a7c741a71c5","direction":"outgoing","index":124419,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:20.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3ff5430-fc93-4b4e-b9a8-d2d60276b53a","direction":"outgoing","index":124420,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:21.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ad28173-5dbe-4776-bc21-7f693baef7c7","direction":"outgoing","index":124421,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:21.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12711182-37cb-4557-b130-8a16aabd15e8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f96dd5d-289c-443a-8664-6340c1e60f74","direction":"outgoing","index":124422,"result_id":"95554afc-47b5-4999-bfe4-4589030aeb62","status":200,"timestamp":"2026-05-22T11:56:21.040-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:20.927-04:00"},{"id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","created_at":"2026-05-22T11:56:23.557-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a5629f92-f40f-404e-9fc5-079ad02ac0ed","direction":"outgoing","index":124423,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"63fd84c7-abd6-4af8-9805-f0a9249d8514","direction":"outgoing","index":124424,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"34f60da3-4590-405b-97bc-8d0d68b2bc3c","direction":"outgoing","index":124425,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.602-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"6e26ef8f-21bf-4782-afd0-2fea50333e3a","direction":"outgoing","index":124426,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"899061f6-0e2e-424d-844c-7d2fc973e6c4","direction":"outgoing","index":124427,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00701692-c818-4b77-89d1-9a94c6501559\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc30abd4-b011-44ef-a472-657ac741fe02","direction":"outgoing","index":124428,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00701692-c818-4b77-89d1-9a94c6501559\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ecbb696-d456-4a04-9eb8-3aed35bebc37","direction":"outgoing","index":124429,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"3bee3cd3-363c-4e59-a776-fbad05836025","direction":"outgoing","index":124430,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bbe13cc-4192-4ea5-a1d3-9ef2496a3af9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76dced47-944d-43fd-a25c-bafaaed04f0a","direction":"outgoing","index":124431,"result_id":"e09763e5-1217-4b87-b3f8-e2137b40c1e2","status":200,"timestamp":"2026-05-22T11:56:23.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bbe13cc-4192-4ea5-a1d3-9ef2496a3af9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_recorded_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:23.557-04:00"},{"id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","created_at":"2026-05-22T11:56:24.397-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f63694e4-2543-4e10-a0d5-945e46234b50","direction":"outgoing","index":124432,"result_id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","status":200,"timestamp":"2026-05-22T11:56:24.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"a2a6958c-f9f1-4c0f-8dd0-fbf7369e6f99","direction":"outgoing","index":124433,"result_id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","status":200,"timestamp":"2026-05-22T11:56:24.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"95371e3d-7d5e-4913-aa2d-b2b8a18f03f7","direction":"outgoing","index":124434,"result_id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","status":200,"timestamp":"2026-05-22T11:56:24.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6ec7de6c-6c40-4d99-9187-43d3cbb5996b","direction":"outgoing","index":124435,"result_id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","status":200,"timestamp":"2026-05-22T11:56:24.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e58d1a61-4fc9-4bec-893c-6aece4f003a2","direction":"outgoing","index":124436,"result_id":"503336e2-cd62-4d4b-98fd-a6adec0ab102","status":200,"timestamp":"2026-05-22T11:56:24.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_asserted_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:24.397-04:00"},{"id":"0a894382-9c8a-438a-b18c-29d34b2ec48b","created_at":"2026-05-22T11:56:24.722-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"784ad5ac-998e-42a2-b056-906b8b00b867","direction":"outgoing","index":124437,"result_id":"0a894382-9c8a-438a-b18c-29d34b2ec48b","status":200,"timestamp":"2026-05-22T11:56:24.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"16833fc3-486a-4eb9-a9f5-aea9d7a2eeda","direction":"outgoing","index":124438,"result_id":"0a894382-9c8a-438a-b18c-29d34b2ec48b","status":200,"timestamp":"2026-05-22T11:56:24.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_clinical_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:24.722-04:00"},{"id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","created_at":"2026-05-22T11:56:27.472-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e19e74f5-46ed-4d6f-a619-e80abf7ada6e","direction":"outgoing","index":124439,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2df0ad6d-84fc-474d-849c-c93117330895","direction":"outgoing","index":124440,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f18d14ea-7aad-441d-b889-9e485e94d06b","direction":"outgoing","index":124441,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"8ddba895-6d28-45e6-b113-883a9093301e","direction":"outgoing","index":124442,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"7f9005b7-278d-499a-a5ce-e3722e83f207","direction":"outgoing","index":124443,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d160a09b-9836-4570-90c9-ad378e3c4a2e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da2dcc21-f9c8-4e81-b4aa-33f0938b997b","direction":"outgoing","index":124444,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d160a09b-9836-4570-90c9-ad378e3c4a2e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8469e255-5086-4bd7-a4fd-e73b19731a71","direction":"outgoing","index":124445,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"131f2e26-0503-4ae2-98a2-d870308775e7","direction":"outgoing","index":124446,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0fb2e13-5380-4a51-93db-574bddd5fc8a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60caaa7e-f027-4d25-9461-aee96f2af4c9","direction":"outgoing","index":124447,"result_id":"176d6e94-3e1b-4911-a264-c7add5a48bbf","status":200,"timestamp":"2026-05-22T11:56:27.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0fb2e13-5380-4a51-93db-574bddd5fc8a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_onset_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:27.472-04:00"},{"id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","created_at":"2026-05-22T11:56:29.745-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c5d1a8db-a27b-4ba4-893b-b6385d5bf134","direction":"outgoing","index":124448,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"a30a8f5f-7117-465a-b080-c38dce92a867","direction":"outgoing","index":124449,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"c3f2b9b6-af2b-4fb5-a4ed-964f954138e6","direction":"outgoing","index":124450,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"2b8dc842-fcf7-4b5d-b2c9-24061b7e7e6b","direction":"outgoing","index":124451,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"946b667c-2160-4e97-aef6-4994851c7be8","direction":"outgoing","index":124452,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ddf4cd6-1014-4216-82cc-16ad62a221e4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a16e37ac-5e96-4ee4-8565-8e018a117f36","direction":"outgoing","index":124453,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"f11532e1-2506-43f9-82d3-7ebf759de842","direction":"outgoing","index":124454,"result_id":"cf4bd269-db4f-4f04-b44d-7b9d606913e1","status":200,"timestamp":"2026-05-22T11:56:29.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c5e28215-1ab3-4aa2-98a6-e8d81943f8ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_abatement_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:29.745-04:00"},{"id":"5edb2856-2a87-404e-93b2-487ac8307f9e","created_at":"2026-05-22T11:56:31.368-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fcfc5e0b-470e-4f4f-bf9a-a77ee642ef2f","direction":"outgoing","index":124455,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"228cbb21-7345-4b6b-b316-320720c0d109","direction":"outgoing","index":124456,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b88ac-51cb-4ca6-922f-ff21c56e252f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f303a79-1713-4f7a-a1e6-de3068288a72","direction":"outgoing","index":124457,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b88ac-51cb-4ca6-922f-ff21c56e252f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aad721e3-a851-4057-b135-e3491c488f96","direction":"outgoing","index":124458,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"4f1bca1b-2e3d-40c9-8df3-b532d2592ae5","direction":"outgoing","index":124459,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.451-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a4c9d96-2c55-48f5-82c3-b0bcb74d21b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9ad9d57-bc76-41ba-8029-eb3d3f47cd04","direction":"outgoing","index":124460,"result_id":"5edb2856-2a87-404e-93b2-487ac8307f9e","status":200,"timestamp":"2026-05-22T11:56:31.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7a4c9d96-2c55-48f5-82c3-b0bcb74d21b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_clinical_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:31.368-04:00"},{"id":"b17429a8-cfaa-404d-9b25-90c55f9af949","created_at":"2026-05-22T11:56:31.484-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `category`, `encounter`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_encounter_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:31.484-04:00"},{"id":"d8e936d7-c60f-4005-9f9d-e5155ad58429","created_at":"2026-05-22T11:56:31.729-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"67946628-3525-42ae-8253-994bb0649948","direction":"outgoing","index":124461,"result_id":"d8e936d7-c60f-4005-9f9d-e5155ad58429","status":200,"timestamp":"2026-05-22T11:56:31.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"24d27b14-0a38-4bf1-b34b-ad91cc9f8442","direction":"outgoing","index":124462,"result_id":"d8e936d7-c60f-4005-9f9d-e5155ad58429","status":200,"timestamp":"2026-05-22T11:56:31.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:31.729-04:00"},{"id":"a42aaac5-3ece-4224-8005-9b9136d8a6de","created_at":"2026-05-22T11:56:31.880-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b9aa5d33-ec55-4329-b80e-3ce8c15cbf7d","direction":"outgoing","index":124463,"result_id":"a42aaac5-3ece-4224-8005-9b9136d8a6de","status":200,"timestamp":"2026-05-22T11:56:31.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:31.880-04:00"},{"id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","created_at":"2026-05-22T11:56:32.845-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a44745ee-7994-40ff-bf0d-f812e1237731","direction":"outgoing","index":124464,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.848-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=85","verb":"get"},{"id":"8b17e8c7-e9f4-41f2-b2c5-00af23bf467c","direction":"outgoing","index":124465,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=85","verb":"get"},{"id":"e5d734be-b01e-4f27-839b-e423c2592ee2","direction":"outgoing","index":124466,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=355","verb":"get"},{"id":"78fcc012-c7e7-46e6-8462-845d0eb60338","direction":"outgoing","index":124467,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=355","verb":"get"},{"id":"9ea4eb86-6588-492b-aca9-e2e4a81333d3","direction":"outgoing","index":124468,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=907","verb":"get"},{"id":"9014811b-3260-4abc-8105-011c3506bf82","direction":"outgoing","index":124469,"result_id":"fb3293ea-8d12-4d7d-8cc9-475a30cd1f32","status":200,"timestamp":"2026-05-22T11:56:32.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:32.845-04:00"},{"id":"fc13bf76-1ba9-413b-998f-baf7a3f84dfe","created_at":"2026-05-22T11:56:33.923-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/condition-category|0.5.0","type":"info"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.category[0]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/condition-category#health-concern)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:33.923-04:00"},{"id":"70b38e93-4042-4234-88a1-7dfce5189acd","created_at":"2026-05-22T11:56:33.943-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:33.943-04:00"},{"id":"cbc20876-d07d-46af-bbbc-66a58f437f34","created_at":"2026-05-22T11:56:33.949-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:33.949-04:00"},{"id":"6f52e7bf-b5b0-428a-84d0-bb2b19d4601f","created_at":"2026-05-22T11:56:33.952-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:33.952-04:00"},{"id":"a244d522-b42e-4aa7-9778-5f51114502a5","created_at":"2026-05-22T11:56:34.640-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a41a2623-a4c8-48b6-add8-5359aa004f4a","direction":"outgoing","index":124470,"result_id":"a244d522-b42e-4aa7-9778-5f51114502a5","status":200,"timestamp":"2026-05-22T11:56:34.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=85","verb":"get"},{"id":"61b39d6e-f22c-473d-8dbc-f91c29df9af5","direction":"outgoing","index":124471,"result_id":"a244d522-b42e-4aa7-9778-5f51114502a5","status":200,"timestamp":"2026-05-22T11:56:34.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/_search","verb":"post"},{"id":"593191ee-ef54-42a8-835f-a57be1b61387","direction":"outgoing","index":124472,"result_id":"a244d522-b42e-4aa7-9778-5f51114502a5","status":200,"timestamp":"2026-05-22T11:56:34.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=Patient/85","verb":"get"},{"id":"e95044fc-cb63-4771-b25b-85f99122b128","direction":"outgoing","index":124473,"result_id":"a244d522-b42e-4aa7-9778-5f51114502a5","status":200,"timestamp":"2026-05-22T11:56:34.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=355","verb":"get"},{"id":"b30d5f00-7add-4272-aeeb-0a49cc6e0f2b","direction":"outgoing","index":124474,"result_id":"a244d522-b42e-4aa7-9778-5f51114502a5","status":200,"timestamp":"2026-05-22T11:56:34.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:34.640-04:00"},{"id":"e3621da0-d167-4a68-93e8-7184005cc7fc","created_at":"2026-05-22T11:56:34.841-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"19866d89-24c1-499e-9334-51f546b24f54","direction":"outgoing","index":124475,"result_id":"e3621da0-d167-4a68-93e8-7184005cc7fc","status":200,"timestamp":"2026-05-22T11:56:34.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:34.841-04:00"},{"id":"83d52eea-c0a2-42d2-8b5e-b96668220220","created_at":"2026-05-22T11:56:35.290-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ff8c8805-2cbd-453b-811c-04ee6de9e78b","direction":"outgoing","index":124476,"result_id":"83d52eea-c0a2-42d2-8b5e-b96668220220","status":200,"timestamp":"2026-05-22T11:56:35.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"b3302a01-2039-4b26-9f09-c6139d32ffbf","direction":"outgoing","index":124477,"result_id":"83d52eea-c0a2-42d2-8b5e-b96668220220","status":200,"timestamp":"2026-05-22T11:56:35.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"da4854e0-008b-4f7a-97cb-2473cbddef59","direction":"outgoing","index":124478,"result_id":"83d52eea-c0a2-42d2-8b5e-b96668220220","status":200,"timestamp":"2026-05-22T11:56:35.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:35.290-04:00"},{"id":"798b668e-cc8e-4ea5-b76f-3f38b3fa0332","created_at":"2026-05-22T11:56:37.885-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.identifier[0].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#MB)","type":"warning"},{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.type.coding[0].system: A definition for CodeSystem 'https://nahdo.org/sopt' could not be found, so the code cannot be validated","type":"warning"},{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:37.885-04:00"},{"id":"40097760-4f25-403d-9f5c-b825306b66ea","created_at":"2026-05-22T11:56:37.901-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:37.901-04:00"},{"id":"32fbbf20-46f8-4e5a-ab53-9e89570ea3f3","created_at":"2026-05-22T11:56:38.077-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6933b9b0-6bc2-4eb4-bfdf-260e9bd62228","direction":"outgoing","index":124479,"result_id":"32fbbf20-46f8-4e5a-ab53-9e89570ea3f3","status":200,"timestamp":"2026-05-22T11:56:38.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:38.077-04:00"},{"id":"a6e10694-dc62-4188-812c-0008f8b5b9da","created_at":"2026-05-22T11:56:38.104-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:38.104-04:00"},{"id":"ddafbb08-b92d-4487-8560-a9445fece4f0","created_at":"2026-05-22T11:56:38.817-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"33d99e3c-ba59-4820-bb95-c19dd674777f","direction":"outgoing","index":124480,"result_id":"ddafbb08-b92d-4487-8560-a9445fece4f0","status":200,"timestamp":"2026-05-22T11:56:38.823-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=85","verb":"get"},{"id":"ddf5e22c-b187-44cf-96ed-1d288832c41c","direction":"outgoing","index":124481,"result_id":"ddafbb08-b92d-4487-8560-a9445fece4f0","status":200,"timestamp":"2026-05-22T11:56:38.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355","verb":"get"},{"id":"0ab72474-8457-4ee0-afef-0475f3a91ec5","direction":"outgoing","index":124482,"result_id":"ddafbb08-b92d-4487-8560-a9445fece4f0","status":200,"timestamp":"2026-05-22T11:56:38.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/_search","verb":"post"},{"id":"bf17fbac-8293-4a3a-8fd9-9b2bed27f816","direction":"outgoing","index":124483,"result_id":"ddafbb08-b92d-4487-8560-a9445fece4f0","status":200,"timestamp":"2026-05-22T11:56:38.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355","verb":"get"},{"id":"4a598445-4a78-4b20-81f8-9b56504f3efd","direction":"outgoing","index":124484,"result_id":"ddafbb08-b92d-4487-8560-a9445fece4f0","status":200,"timestamp":"2026-05-22T11:56:38.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:38.817-04:00"},{"id":"74347deb-5b05-4f92-a68f-c6c5ac5a07e6","created_at":"2026-05-22T11:56:39.161-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2e35ca86-fec1-4efd-99f3-9318eac49d64","direction":"outgoing","index":124485,"result_id":"74347deb-5b05-4f92-a68f-c6c5ac5a07e6","status":200,"timestamp":"2026-05-22T11:56:39.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001","verb":"get"},{"id":"1f24eba9-f926-46cc-b015-c77b53b2825c","direction":"outgoing","index":124486,"result_id":"74347deb-5b05-4f92-a68f-c6c5ac5a07e6","status":200,"timestamp":"2026-05-22T11:56:39.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_type_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:39.161-04:00"},{"id":"7dd13831-d51f-4265-a6fe-d01416455996","created_at":"2026-05-22T11:56:39.451-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c20410e9-9e3a-4773-bb82-1aa98bb37282","direction":"outgoing","index":124487,"result_id":"7dd13831-d51f-4265-a6fe-d01416455996","status":200,"timestamp":"2026-05-22T11:56:39.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active","verb":"get"},{"id":"325fa1ab-d3b0-41ef-90b1-91ae3c0df0e8","direction":"outgoing","index":124488,"result_id":"7dd13831-d51f-4265-a6fe-d01416455996","status":200,"timestamp":"2026-05-22T11:56:39.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active,inactive,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:39.451-04:00"},{"id":"106bd08f-9615-42a5-9d5a-b86df8e9514e","created_at":"2026-05-22T11:56:39.607-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"af4189e8-7dc0-4b50-b60f-fa31ee66f67d","direction":"outgoing","index":124489,"result_id":"106bd08f-9615-42a5-9d5a-b86df8e9514e","status":200,"timestamp":"2026-05-22T11:56:39.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:39.607-04:00"},{"id":"e7db57be-dfe2-4967-a7e4-99f8c0b74fff","created_at":"2026-05-22T11:56:40.076-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fb233724-a7d5-443e-815a-63b0848f9495","direction":"outgoing","index":124490,"result_id":"e7db57be-dfe2-4967-a7e4-99f8c0b74fff","status":200,"timestamp":"2026-05-22T11:56:40.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"e31e13ee-1d4c-4c69-90d0-43ed40bbf429","direction":"outgoing","index":124491,"result_id":"e7db57be-dfe2-4967-a7e4-99f8c0b74fff","status":200,"timestamp":"2026-05-22T11:56:40.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"8f5a33a7-155c-4222-b903-54da2248ea67","direction":"outgoing","index":124492,"result_id":"e7db57be-dfe2-4967-a7e4-99f8c0b74fff","status":200,"timestamp":"2026-05-22T11:56:40.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:40.076-04:00"},{"id":"22b8c507-8279-4d95-9ea7-c4962cc4d8ea","created_at":"2026-05-22T11:56:40.356-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:40.356-04:00"},{"id":"75b922fc-4c89-43ee-af18-e6373dba6fd0","created_at":"2026-05-22T11:56:40.372-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:40.372-04:00"},{"id":"04f56cc9-d8f8-4427-80dc-0175b36a38e2","created_at":"2026-05-22T11:56:40.378-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:40.378-04:00"},{"id":"bffdb747-d8ad-4a59-9b2e-be24568c1181","created_at":"2026-05-22T11:56:40.381-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:40.381-04:00"},{"id":"7b3539dd-a652-4033-a8df-c951f11f211a","created_at":"2026-05-22T11:56:42.417-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7b045930-4ac2-4c74-aff1-16bc2c2db51d","direction":"outgoing","index":124493,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85","verb":"get"},{"id":"eb547938-c50d-44de-b22b-034e5220b378","direction":"outgoing","index":124494,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"b601fa4e-7545-4c31-81bb-259a9a032faa","direction":"outgoing","index":124495,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85","verb":"get"},{"id":"43ad4b48-48b6-442b-96cd-1383d7bbf9f1","direction":"outgoing","index":124496,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85","verb":"get"},{"id":"9450c280-1dbb-4267-8ace-931de20be2dc","direction":"outgoing","index":124497,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85","verb":"get"},{"id":"fccc2688-a2d7-4f22-a7ef-f962524024dd","direction":"outgoing","index":124498,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85","verb":"get"},{"id":"538c6501-f406-4220-8103-609f18601fa3","direction":"outgoing","index":124499,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355","verb":"get"},{"id":"038f7dfc-02b6-40d3-80e8-8e5122791ca5","direction":"outgoing","index":124500,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355","verb":"get"},{"id":"19416f28-43a4-4d1f-a2b7-e344109d3123","direction":"outgoing","index":124501,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355","verb":"get"},{"id":"605118d1-f144-40d5-9616-18fc5c016e82","direction":"outgoing","index":124502,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=907","verb":"get"},{"id":"e36c24c7-128a-4107-b89b-f98fac084561","direction":"outgoing","index":124503,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=907","verb":"get"},{"id":"f3863112-f274-4720-a438-07627b8d4cb7","direction":"outgoing","index":124504,"result_id":"7b3539dd-a652-4033-a8df-c951f11f211a","status":200,"timestamp":"2026-05-22T11:56:42.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:42.417-04:00"},{"id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","created_at":"2026-05-22T11:56:44.588-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4d87875f-80c2-4a6e-904f-6bee406cb07a","direction":"outgoing","index":124505,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"27c25255-ce82-4e52-8770-69ce0e784788","direction":"outgoing","index":124506,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed8146d-9e8f-4508-a1d7-db3f0d3e3d9a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d23e3d16-e28c-41b7-bdda-ac46696e64c9","direction":"outgoing","index":124507,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"71c865bc-ac4b-4cde-a81b-001e5962b2e4","direction":"outgoing","index":124508,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dce531-cf08-4ecf-806e-a3562216c71e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"288388ca-c65b-494b-94eb-b1be2447f822","direction":"outgoing","index":124509,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dce531-cf08-4ecf-806e-a3562216c71e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c8e5ab6e-8e8f-4d37-b516-ff9a34ac58eb","direction":"outgoing","index":124510,"result_id":"c753b8c2-319c-44b8-9830-7d41f8ef2fbc","status":200,"timestamp":"2026-05-22T11:56:44.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:44.588-04:00"},{"id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","created_at":"2026-05-22T11:56:45.688-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b85c2cd0-ff7a-4716-a7c6-982faaa666f0","direction":"outgoing","index":124511,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"0a37eef3-4156-43b3-8289-9f86128ee388","direction":"outgoing","index":124512,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"998b3711-0e64-4c26-b27c-70fedd6ad7a8","direction":"outgoing","index":124513,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"48861f32-7d74-47e8-b90f-d1922caea1c7","direction":"outgoing","index":124514,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e3a06090-7c55-4be0-8c07-8612e3621a5a","direction":"outgoing","index":124515,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"29e386ee-7f02-4e17-90b3-8b1cede7bc32","direction":"outgoing","index":124516,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"7584b1f4-dacd-4506-bf6d-77ea3dcbf5db","direction":"outgoing","index":124517,"result_id":"8e1875c6-aa98-4322-a701-1573bbbc0bed","status":200,"timestamp":"2026-05-22T11:56:45.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:45.688-04:00"},{"id":"8bea9ae8-36f1-49cc-89da-085016f46bac","created_at":"2026-05-22T11:56:48.569-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f632d962-72e1-4e7b-a27e-9ec39895ddc2","direction":"outgoing","index":124518,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final","verb":"get"},{"id":"d66b1462-ce69-4d52-b973-119ca01dc3ed","direction":"outgoing","index":124519,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c4968e1-2d03-4549-aa0e-8a37125e7e36\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee2a2c1f-017c-429b-8b53-749f5c293e95","direction":"outgoing","index":124520,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"85743a84-987e-413a-b2af-e9e2d9acac7e","direction":"outgoing","index":124521,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07448da5-3a71-4139-a6a7-7f724ff836e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f226b6d-a8df-4ac6-b1c6-865daae6e402","direction":"outgoing","index":124522,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07448da5-3a71-4139-a6a7-7f724ff836e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e857e88-3cf5-4f9c-8336-1109f7affeba","direction":"outgoing","index":124523,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"914b3a8e-b64d-4646-8957-e31325180367","direction":"outgoing","index":124524,"result_id":"8bea9ae8-36f1-49cc-89da-085016f46bac","status":200,"timestamp":"2026-05-22T11:56:48.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=007aa446-4e27-45f3-95f3-ea9271b338e6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:48.569-04:00"},{"id":"e3530241-21bb-4626-9ae7-0a49673568ad","created_at":"2026-05-22T11:56:49.674-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0cd7fd6e-dfbc-4975-bef2-5c1146225cc8","direction":"outgoing","index":124525,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"aab1cf7a-59a6-4468-a85b-d3c99ce94f62","direction":"outgoing","index":124526,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d605ff16-e990-43b4-b224-647f00687096","direction":"outgoing","index":124527,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9dfe8358-6c7b-4a6f-929b-36c5d31f104a","direction":"outgoing","index":124528,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"2bd50d97-879f-42f1-bc73-845d2e21db68","direction":"outgoing","index":124529,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"61ae88a8-60ae-45a4-8539-eeab539405a2","direction":"outgoing","index":124530,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"36b13715-a73e-41c1-a438-fc49a2397772","direction":"outgoing","index":124531,"result_id":"e3530241-21bb-4626-9ae7-0a49673568ad","status":200,"timestamp":"2026-05-22T11:56:49.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:49.674-04:00"},{"id":"e1ff02b3-27b8-4b7a-a6f2-3fcf821b1fe3","created_at":"2026-05-22T11:56:50.216-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f4deba98-5e36-4a9e-8745-ce0914a2096f","direction":"outgoing","index":124532,"result_id":"e1ff02b3-27b8-4b7a-a6f2-3fcf821b1fe3","status":200,"timestamp":"2026-05-22T11:56:50.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85","verb":"get"},{"id":"fc2fcce1-6abf-446a-b963-9249f00e0b9f","direction":"outgoing","index":124533,"result_id":"e1ff02b3-27b8-4b7a-a6f2-3fcf821b1fe3","status":200,"timestamp":"2026-05-22T11:56:50.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85","verb":"get"},{"id":"1357f333-322c-4a42-b5db-2bffb2f3e179","direction":"outgoing","index":124534,"result_id":"e1ff02b3-27b8-4b7a-a6f2-3fcf821b1fe3","status":200,"timestamp":"2026-05-22T11:56:50.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:50.216-04:00"},{"id":"87553650-ab2d-4045-99b3-f4082a24f370","created_at":"2026-05-22T11:56:50.388-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e1a4cc15-e400-4191-9abf-51ecbb8c059e","direction":"outgoing","index":124535,"result_id":"87553650-ab2d-4045-99b3-f4082a24f370","status":200,"timestamp":"2026-05-22T11:56:50.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:50.388-04:00"},{"id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","created_at":"2026-05-22T11:56:52.070-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a770691f-2e1e-4775-974b-1bb90e0814b7","direction":"outgoing","index":124536,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85","verb":"get"},{"id":"0000882e-1230-4e3f-b576-ffc6aab1b02a","direction":"outgoing","index":124537,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85","verb":"get"},{"id":"26a3cfaf-65c1-47a8-8f00-ec2025af16bd","direction":"outgoing","index":124538,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85","verb":"get"},{"id":"95533ed0-b182-4b68-8959-8035b0e672b0","direction":"outgoing","index":124539,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355","verb":"get"},{"id":"cc9f25ea-ff2d-490f-909e-b6da626d2b82","direction":"outgoing","index":124540,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355","verb":"get"},{"id":"487c26fb-1d69-4456-a777-2caf7972dab7","direction":"outgoing","index":124541,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355","verb":"get"},{"id":"fe1c07ae-28c1-4b1c-8120-5ba87ff24ebb","direction":"outgoing","index":124542,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=907","verb":"get"},{"id":"5e6aa34e-872e-405e-b739-dac042a49597","direction":"outgoing","index":124543,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=907","verb":"get"},{"id":"321db635-b9d1-4f34-be4d-3b1e0fad2a2b","direction":"outgoing","index":124544,"result_id":"617fda7c-2f5d-4be3-b925-b31dbca9dcad","status":200,"timestamp":"2026-05-22T11:56:52.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:52.070-04:00"},{"id":"4cf342cb-6c13-443e-b48a-2c33fd904d4c","created_at":"2026-05-22T11:56:57.649-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:57.649-04:00"},{"id":"baf59a1e-c88b-4e9b-be7b-299f97901e3d","created_at":"2026-05-22T11:56:57.708-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:57.708-04:00"},{"id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","created_at":"2026-05-22T11:56:59.301-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"70b9fa45-e13b-463e-98bb-00c95a7259e6","direction":"outgoing","index":124545,"result_id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","status":200,"timestamp":"2026-05-22T11:56:59.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"},{"id":"f8a1c6d1-9510-4a09-8df6-f8ba64a9429b","direction":"outgoing","index":124546,"result_id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","status":200,"timestamp":"2026-05-22T11:56:59.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"103016c8-ddac-4148-acdd-8e7f61504584","direction":"outgoing","index":124547,"result_id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","status":200,"timestamp":"2026-05-22T11:56:59.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"95a82a39-bb5e-4fce-a116-ddaee995c63a","direction":"outgoing","index":124548,"result_id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","status":200,"timestamp":"2026-05-22T11:56:59.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"},{"id":"f57fd301-8e0c-4f74-bfc7-03eaf9f30aea","direction":"outgoing","index":124549,"result_id":"7057edf5-ea19-4aba-87a5-ff3899bf2fe0","status":200,"timestamp":"2026-05-22T11:56:59.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:59.301-04:00"},{"id":"de95b7b1-33de-47e6-af5f-7a3347f018f8","created_at":"2026-05-22T11:56:59.404-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:56:59.404-04:00"},{"id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","created_at":"2026-05-22T11:57:00.238-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"46092671-123c-4b49-8210-8c3ab13677fb","direction":"outgoing","index":124550,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85","verb":"get"},{"id":"4486c570-465a-492b-9b65-7456713d91ea","direction":"outgoing","index":124551,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355","verb":"get"},{"id":"587ddc99-fa66-4168-acd8-616ae9a77e3b","direction":"outgoing","index":124552,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.287-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"f9542099-9dd3-4d83-8c8d-9eb267e65e2e","direction":"outgoing","index":124553,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355","verb":"get"},{"id":"3f42f0b7-f2f9-4065-b5a8-0a01e7a3cc9c","direction":"outgoing","index":124554,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355","verb":"get"},{"id":"d46feffd-637e-4189-bb70-52b83e77efda","direction":"outgoing","index":124555,"result_id":"6e3618f2-2d72-419e-b9f7-04c7959846ed","status":200,"timestamp":"2026-05-22T11:57:00.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:00.238-04:00"},{"id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","created_at":"2026-05-22T11:57:01.320-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1692066c-fc97-4ada-ae0c-6a33e48d5cfa","direction":"outgoing","index":124556,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"348d963d-dfed-4c2b-a39a-566913dfbf99","direction":"outgoing","index":124557,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed8146d-9e8f-4508-a1d7-db3f0d3e3d9a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5e525aa-d319-4dea-bc44-384534d982ae","direction":"outgoing","index":124558,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"27bb0b19-8e2e-4b62-86ed-7964f500f149","direction":"outgoing","index":124559,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dce531-cf08-4ecf-806e-a3562216c71e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"67493a0e-3258-4a74-854b-d1d9646773ce","direction":"outgoing","index":124560,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dce531-cf08-4ecf-806e-a3562216c71e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3997c26-ee74-4240-b5dc-a70f0c1e787e","direction":"outgoing","index":124561,"result_id":"a09cb0f9-3a8b-4e04-867c-138c5e677f00","status":200,"timestamp":"2026-05-22T11:57:01.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:01.320-04:00"},{"id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","created_at":"2026-05-22T11:57:02.262-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1094a88f-f82c-48f0-afaa-d6a78b0eb65f","direction":"outgoing","index":124562,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9b7c027e-14be-483e-a12f-42095b1e6d95","direction":"outgoing","index":124563,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e411439d-76f6-433e-94fb-3041c3d8d3a3","direction":"outgoing","index":124564,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c821ba5e-4a6e-4fed-8b10-fb6030fec594","direction":"outgoing","index":124565,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f1e75d06-7aba-4131-8270-9f70942faa6d","direction":"outgoing","index":124566,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5b5695cc-d9a7-40be-87d1-5617733807a8","direction":"outgoing","index":124567,"result_id":"5ed08a51-dc15-4d52-a9eb-5caa3fac040e","status":200,"timestamp":"2026-05-22T11:57:02.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:02.262-04:00"},{"id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","created_at":"2026-05-22T11:57:03.902-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"255934ae-f4db-4f08-adf2-26a65903422c","direction":"outgoing","index":124568,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"a7d4433a-6824-431c-a27d-2f372b1db946","direction":"outgoing","index":124569,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07448da5-3a71-4139-a6a7-7f724ff836e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f463aed9-6878-4310-a5d8-44cbf379b1e5","direction":"outgoing","index":124570,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07448da5-3a71-4139-a6a7-7f724ff836e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aab07019-9a49-4d63-9a25-71a05d6eed52","direction":"outgoing","index":124571,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6f6b759c-69f5-41ab-bb3b-1aa7979c19c6","direction":"outgoing","index":124572,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fece675c-9110-419d-a8f9-e33016b267d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"547db891-c74f-47db-9dac-f92591190668","direction":"outgoing","index":124573,"result_id":"239e2e12-7dc6-4676-80bc-fd48478b9d1d","status":200,"timestamp":"2026-05-22T11:57:03.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fece675c-9110-419d-a8f9-e33016b267d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:03.902-04:00"},{"id":"1817c108-b0af-454f-a551-954368c323ff","created_at":"2026-05-22T11:57:04.800-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c62b18c7-1e24-4858-92be-2de8c6142175","direction":"outgoing","index":124574,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"af9da0ad-d0e2-40ce-8607-5dab757b3cd2","direction":"outgoing","index":124575,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"989ce0d3-610a-4edb-b99e-00cd4dc131f5","direction":"outgoing","index":124576,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dd1a483b-1583-4c06-b22e-2814440cc47f","direction":"outgoing","index":124577,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"47ce7b80-cdf1-414f-b0f2-410acaec4639","direction":"outgoing","index":124578,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"24d71544-0b40-4e50-bd78-7b654edabf4f","direction":"outgoing","index":124579,"result_id":"1817c108-b0af-454f-a551-954368c323ff","status":200,"timestamp":"2026-05-22T11:57:04.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:04.800-04:00"},{"id":"2b6835f8-6d8c-414a-a227-562682c6725b","created_at":"2026-05-22T11:57:05.165-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2c7e3c20-eaa6-40e6-b240-3602539870f0","direction":"outgoing","index":124580,"result_id":"2b6835f8-6d8c-414a-a227-562682c6725b","status":200,"timestamp":"2026-05-22T11:57:05.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355","verb":"get"},{"id":"d9ed5c9c-6072-409a-b984-c678c390186b","direction":"outgoing","index":124581,"result_id":"2b6835f8-6d8c-414a-a227-562682c6725b","status":200,"timestamp":"2026-05-22T11:57:05.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:05.165-04:00"},{"id":"f2f27fd7-b798-4442-9ac7-2202b9b4924d","created_at":"2026-05-22T11:57:05.326-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a58c0618-5813-4e09-b7cb-7e72eda5af4b","direction":"outgoing","index":124582,"result_id":"f2f27fd7-b798-4442-9ac7-2202b9b4924d","status":200,"timestamp":"2026-05-22T11:57:05.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:05.326-04:00"},{"id":"777b4c3a-98d7-49fb-8c0c-03d0c1ef47bd","created_at":"2026-05-22T11:57:05.810-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"224726ae-3167-4093-93d0-9d2e9efc77b6","direction":"outgoing","index":124583,"result_id":"777b4c3a-98d7-49fb-8c0c-03d0c1ef47bd","status":200,"timestamp":"2026-05-22T11:57:05.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85","verb":"get"},{"id":"3604f62d-a623-4edd-88ad-67978263f078","direction":"outgoing","index":124584,"result_id":"777b4c3a-98d7-49fb-8c0c-03d0c1ef47bd","status":200,"timestamp":"2026-05-22T11:57:05.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355","verb":"get"},{"id":"b1d18c89-4633-465f-b39b-83d96bbada46","direction":"outgoing","index":124585,"result_id":"777b4c3a-98d7-49fb-8c0c-03d0c1ef47bd","status":200,"timestamp":"2026-05-22T11:57:05.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:05.810-04:00"},{"id":"fc7b5025-d912-455f-945f-4a8ae30e9521","created_at":"2026-05-22T11:57:06.168-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:06.168-04:00"},{"id":"8b44f3d0-5a53-433f-85d9-201a7b78d2a7","created_at":"2026-05-22T11:57:06.183-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:06.183-04:00"},{"id":"7c6a7590-c79c-4e9a-8010-96a95364b425","created_at":"2026-05-22T11:57:07.119-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d8b96a69-ad97-4922-b98b-4b7f07545f95","direction":"outgoing","index":124586,"result_id":"7c6a7590-c79c-4e9a-8010-96a95364b425","status":200,"timestamp":"2026-05-22T11:57:07.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"9a0b1707-442e-4eff-bf1a-4b1559b599eb","direction":"outgoing","index":124587,"result_id":"7c6a7590-c79c-4e9a-8010-96a95364b425","status":200,"timestamp":"2026-05-22T11:57:07.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:07.119-04:00"},{"id":"c0b4a0cc-3cc0-4af8-b6c8-65d780fbc8ed","created_at":"2026-05-22T11:57:07.151-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:07.151-04:00"},{"id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","created_at":"2026-05-22T11:57:11.146-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6798dd02-8f91-4ed7-9b01-089dee683452","direction":"outgoing","index":124588,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"fd5895d1-3f7a-405b-a772-7f9bfd86c044","direction":"outgoing","index":124589,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0ea82a7e-3dec-43c1-aef3-89a3bdcd544c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4bce7f0e-0a6f-4459-a681-d92658093cda","direction":"outgoing","index":124590,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0ea82a7e-3dec-43c1-aef3-89a3bdcd544c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3689dd4-4c77-45c1-aec2-608b67df8dfe","direction":"outgoing","index":124591,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search","verb":"post"},{"id":"bb7325aa-9791-4fe3-8064-cc828e12b733","direction":"outgoing","index":124592,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0ea82a7e-3dec-43c1-aef3-89a3bdcd544c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a1d6c45-0d5d-423e-9bad-d9a1a4e54dd0","direction":"outgoing","index":124593,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0ea82a7e-3dec-43c1-aef3-89a3bdcd544c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c425b146-86b4-4b4c-b11f-b182283e13dd","direction":"outgoing","index":124594,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85","verb":"get"},{"id":"e8606028-d87c-410b-9673-79919d9c96ad","direction":"outgoing","index":124595,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9304394f-e221-4485-8a0a-24e5b9a51eb8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f73c9ebd-e711-4c0a-9b07-3e9be5d5b88b","direction":"outgoing","index":124596,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9304394f-e221-4485-8a0a-24e5b9a51eb8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc48bdfe-6159-4479-9d61-108ba88d09d1","direction":"outgoing","index":124597,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"b34c28ce-d41d-4dc3-9407-c0cf721d189a","direction":"outgoing","index":124598,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6fc8a877-9f11-4a96-b0d5-bfc59fd13e90\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"86e107db-ddaf-4aee-8d59-0fba2cf047a0","direction":"outgoing","index":124599,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6fc8a877-9f11-4a96-b0d5-bfc59fd13e90\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cfa25b86-8615-412c-8ede-13717eadb2e8","direction":"outgoing","index":124600,"result_id":"cdaa4bd4-1be6-42f5-8ee1-35b21f83e3b9","status":200,"timestamp":"2026-05-22T11:57:11.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:11.146-04:00"},{"id":"42364144-8c0b-4e4b-8cd7-6d22ae408a4c","created_at":"2026-05-22T11:57:11.522-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b0f0c014-3194-4ad1-bf80-5fa1dee21eb4","direction":"outgoing","index":124601,"result_id":"42364144-8c0b-4e4b-8cd7-6d22ae408a4c","status":200,"timestamp":"2026-05-22T11:57:11.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:11.522-04:00"},{"id":"69d5bf3b-970c-4bdd-b286-38f9b74fabf5","created_at":"2026-05-22T11:57:11.964-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d859a01a-cf6d-4e3a-a11d-b024ebc69f7f","direction":"outgoing","index":124602,"result_id":"69d5bf3b-970c-4bdd-b286-38f9b74fabf5","status":200,"timestamp":"2026-05-22T11:57:11.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3","verb":"get"},{"id":"359c7ede-f677-4396-aa6d-acb47c85d10a","direction":"outgoing","index":124603,"result_id":"69d5bf3b-970c-4bdd-b286-38f9b74fabf5","status":200,"timestamp":"2026-05-22T11:57:11.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"47fef02b-0edf-4a47-8a84-9abdfeed9d86","direction":"outgoing","index":124604,"result_id":"69d5bf3b-970c-4bdd-b286-38f9b74fabf5","status":200,"timestamp":"2026-05-22T11:57:12.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:11.964-04:00"},{"id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","created_at":"2026-05-22T11:57:14.866-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"50f9c5be-e3bf-44ab-a77c-b24c9ec9daf9","direction":"outgoing","index":124605,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded","verb":"get"},{"id":"41b40e37-d8a0-4656-8693-62a4f1fb5496","direction":"outgoing","index":124606,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61607fa3-095a-4d03-8c23-503fe42bba55\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6495c1c6-1745-4b3c-90a5-08a933f72a20","direction":"outgoing","index":124607,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded","verb":"get"},{"id":"bcd3352e-9a91-4b3a-a09d-d1b2cae0c8ed","direction":"outgoing","index":124608,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56c33834-93a6-4d13-b9b6-95890fece07f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"73d9acb9-327f-46de-8fbe-2f2382ee5a1b","direction":"outgoing","index":124609,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error","verb":"get"},{"id":"6c45b017-2d81-48ca-83dc-7007fa952b41","direction":"outgoing","index":124610,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da29cccc-d81c-46a6-abe5-25cf90be96bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd272056-65f1-4dc0-a012-3c7f0c455ee3","direction":"outgoing","index":124611,"result_id":"ff9507d9-ff96-4d31-95c2-3e5b09523a84","status":200,"timestamp":"2026-05-22T11:57:14.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da29cccc-d81c-46a6-abe5-25cf90be96bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:14.866-04:00"},{"id":"612d56b9-793a-43a0-ae66-c15a542c131c","created_at":"2026-05-22T11:57:16.027-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d3ed0fea-41c3-4314-bb36-06a65362616a","direction":"outgoing","index":124612,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"8c78c9a7-f4bd-4f61-a87a-85f2d088d69d","direction":"outgoing","index":124613,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"f611e15c-0c74-422e-992c-ab7f7e3350a8","direction":"outgoing","index":124614,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"972db22a-acaf-47c4-b96d-85cf3ebd818b","direction":"outgoing","index":124615,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"98789f03-9534-4f98-81e1-1f0fae9e8e40","direction":"outgoing","index":124616,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"17041b6c-40ef-4411-bdcc-bfa0ffb9e2da","direction":"outgoing","index":124617,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"7fc34110-660f-4d68-8450-8c9d9a33cd4f","direction":"outgoing","index":124618,"result_id":"612d56b9-793a-43a0-ae66-c15a542c131c","status":200,"timestamp":"2026-05-22T11:57:16.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_period_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:16.027-04:00"},{"id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","created_at":"2026-05-22T11:57:19.077-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"753d64ea-24b2-43c1-bbd1-6031dc48fb98","direction":"outgoing","index":124619,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"dbd6f7e8-e9b1-462a-a7bc-0c01bac86754","direction":"outgoing","index":124620,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"1686d5ed-a1d2-44ac-838b-0a8fbbfd3014","direction":"outgoing","index":124621,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dded83-8ebb-4af4-a55a-910a1d453d05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"471c6c1b-e944-4e6c-8de1-cda7d0c6edc8","direction":"outgoing","index":124622,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90dded83-8ebb-4af4-a55a-910a1d453d05\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"61baac51-171a-4133-902b-f263b074c751","direction":"outgoing","index":124623,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"1370c361-2f0c-4ece-9f95-7cf8b41d9fb4","direction":"outgoing","index":124624,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29371efa-6dae-4ef1-9889-636c94fb6c15\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"efa1f626-a2a1-4d5c-aef4-d6adb46385aa","direction":"outgoing","index":124625,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29371efa-6dae-4ef1-9889-636c94fb6c15\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e2dbf03-29c5-4d6f-b106-90fb7e8d2eeb","direction":"outgoing","index":124626,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ee0c8942-c879-4502-ab13-3e0c8df04982","direction":"outgoing","index":124627,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c05292e0-f4d4-43be-a6e7-72e7bc4089da","direction":"outgoing","index":124628,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"c3adb975-df66-4715-a167-3ffe76d9c54b","direction":"outgoing","index":124629,"result_id":"2fe56887-c28c-4f6f-a572-acc25a6c4781","status":200,"timestamp":"2026-05-22T11:57:19.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:19.077-04:00"},{"id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","created_at":"2026-05-22T11:57:22.439-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"65225157-a987-41dc-b599-dba6ecfeef97","direction":"outgoing","index":124630,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85","verb":"get"},{"id":"01ec1918-e80d-4ccf-975f-263afaf102c8","direction":"outgoing","index":124631,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f329da19-7db0-42f6-be23-bbb849144496\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d94e031e-12d9-4854-9a7f-e9834b03be9f","direction":"outgoing","index":124632,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f329da19-7db0-42f6-be23-bbb849144496\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c25e1bc-3426-4d2c-afd9-74c04a6d4973","direction":"outgoing","index":124633,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85","verb":"get"},{"id":"8f01540d-99ed-4315-a65d-c73a8ada356e","direction":"outgoing","index":124634,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=791d418c-61cc-4fb9-8144-d49515af216b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5c2cb4ef-ce8e-4ece-8977-702b3562e8df","direction":"outgoing","index":124635,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=791d418c-61cc-4fb9-8144-d49515af216b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"076f86be-c0f6-4d94-9af8-a4c5379513fa","direction":"outgoing","index":124636,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355","verb":"get"},{"id":"d5fd062b-f185-4010-a42c-bc2d83db3791","direction":"outgoing","index":124637,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2382891c-bb7d-4a51-b333-67881d7c4027\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62b54ce2-e597-401a-9993-0e8b082cbabc","direction":"outgoing","index":124638,"result_id":"cf073cdb-bac3-4d88-a6fe-e61bfb36aa9b","status":200,"timestamp":"2026-05-22T11:57:22.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2382891c-bb7d-4a51-b333-67881d7c4027\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:22.439-04:00"},{"id":"5bcc871b-9818-4d8e-be36-17ec536e88d4","created_at":"2026-05-22T11:57:22.724-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2bcc57a7-d569-4c6e-bdd9-3e84a9130c01","direction":"outgoing","index":124639,"result_id":"5bcc871b-9818-4d8e-be36-17ec536e88d4","status":200,"timestamp":"2026-05-22T11:57:22.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:22.724-04:00"},{"id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","created_at":"2026-05-22T11:57:25.126-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"02919109-a15f-4343-bc8b-2c5a6e71ddc9","direction":"outgoing","index":124640,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"3adef17b-615f-410d-8f4c-83c364ea0536","direction":"outgoing","index":124641,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06e2786e-ee1f-4669-80a8-7488d6f8b77c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c313bfd-ec5f-49ea-b114-4019ea855b78","direction":"outgoing","index":124642,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06e2786e-ee1f-4669-80a8-7488d6f8b77c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"177e4bbf-0cf8-41df-b489-ad9e46493a36","direction":"outgoing","index":124643,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"41e93d67-099d-4ddb-991a-a572efde7df8","direction":"outgoing","index":124644,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=099f7ca0-1281-4474-8841-4ef2b207adc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcd3ebc6-22e4-403b-950b-8b8cd80af2de","direction":"outgoing","index":124645,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=099f7ca0-1281-4474-8841-4ef2b207adc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bcb87526-dbaf-4594-ba26-6b9ed1b423cd","direction":"outgoing","index":124646,"result_id":"3d1ba33d-2028-43b4-9c27-149b4e454da4","status":200,"timestamp":"2026-05-22T11:57:25.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:25.126-04:00"},{"id":"75cae76f-c1d9-473e-86ad-346f7cabc749","created_at":"2026-05-22T11:57:31.246-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1')","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_extension_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:31.246-04:00"},{"id":"88344c3c-472d-4634-9f94-bf3b2bc6b813","created_at":"2026-05-22T11:57:31.348-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:31.348-04:00"},{"id":"1cab151d-154e-4688-93ed-74a49b02f836","created_at":"2026-05-22T11:57:31.351-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:31.351-04:00"},{"id":"440f27aa-25a7-4cd5-81d9-3d910695adc1","created_at":"2026-05-22T11:57:31.357-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v400_document_reference_custodian_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:31.357-04:00"},{"id":"26f5025a-4cc9-4114-82d3-4ee1d4cbe3bd","created_at":"2026-05-22T11:57:31.359-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:31.359-04:00"},{"id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","created_at":"2026-05-22T11:57:38.067-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d38908d1-17bf-437c-bb53-33d4df3f0b80","direction":"outgoing","index":124647,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85","verb":"get"},{"id":"2e1e72c3-df59-441f-803d-86f88b2839a9","direction":"outgoing","index":124648,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1d3be9a4-5762-4837-998c-ed6ea96230ed","direction":"outgoing","index":124649,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c7ff5-c46b-4395-95fd-10fd709b3c5e","direction":"outgoing","index":124650,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad3d4b0b-77f9-4287-8320-a37bb9b76f4a","direction":"outgoing","index":124651,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cd210e0-3d2b-44b5-a62f-eeb947f6360a","direction":"outgoing","index":124652,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dc3f7dbd-5015-4707-abf1-5eb912c2beb4","direction":"outgoing","index":124653,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.150-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/_search","verb":"post"},{"id":"ff1cb30c-d315-4ac3-856e-2675a1d2ac4a","direction":"outgoing","index":124654,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"77593cef-35cc-4931-a779-0f1510ed3560","direction":"outgoing","index":124655,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"57717dfa-5859-461d-a928-057864317a4b","direction":"outgoing","index":124656,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37658b25-8860-46b6-8624-cd82db56652c","direction":"outgoing","index":124657,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"67ca3791-254a-40f8-8075-db471cc8dff2","direction":"outgoing","index":124658,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a45e68d2-5a0b-4968-9d23-9a77aed5dcf8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88b066e1-d8a5-4572-8b93-c41ec964a8a4","direction":"outgoing","index":124659,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85","verb":"get"},{"id":"4fca05dd-9949-4c6a-9c51-634797615d0e","direction":"outgoing","index":124660,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61f5e420-63e2-4940-b9dc-5c3d1af3159b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7e9d99b-de7a-4309-aa63-a46b1186bcfb","direction":"outgoing","index":124661,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61f5e420-63e2-4940-b9dc-5c3d1af3159b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7d826d3-dfe4-455c-9bbd-ac7720ce7ebd","direction":"outgoing","index":124662,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61f5e420-63e2-4940-b9dc-5c3d1af3159b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5289af1-cd24-410f-b6f1-2b72d00a3fbd","direction":"outgoing","index":124663,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61f5e420-63e2-4940-b9dc-5c3d1af3159b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f3a2fa6-e958-4e12-af6e-a69ae22d8f5b","direction":"outgoing","index":124664,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61f5e420-63e2-4940-b9dc-5c3d1af3159b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93780349-97b4-41fd-b417-7fd1cd82f8a2","direction":"outgoing","index":124665,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355","verb":"get"},{"id":"48d034bd-b6e0-4dfb-b79b-e7e7633da2ab","direction":"outgoing","index":124666,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2e364e6e-68a3-4ea8-a875-45f2c40e7948","direction":"outgoing","index":124667,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b9b3ed61-76ee-41bf-90ac-4c50dc091da0","direction":"outgoing","index":124668,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76c29641-dd3b-47de-9f0d-08d88d9f2765","direction":"outgoing","index":124669,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04f60f16-bf04-4c20-9185-65a3302d70e1","direction":"outgoing","index":124670,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"637b54f9-d659-4bc4-917c-ba6b489e8ba7","direction":"outgoing","index":124671,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9e97757-ab25-4d11-bf46-62236f547083","direction":"outgoing","index":124672,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"00250ab2-9236-4262-a0c8-1c077ac88766","direction":"outgoing","index":124673,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"102d0f80-96d4-4daf-91a0-23a26c8c7935","direction":"outgoing","index":124674,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3d29aa6-4175-44b4-848e-3e8b22c2f124","direction":"outgoing","index":124675,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df007d9c-ed90-410d-85db-1a892e98165d","direction":"outgoing","index":124676,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ea80a4a-cc4d-4f33-b0a1-04c5bf110dc1","direction":"outgoing","index":124677,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=24c68136-cf6d-4e57-a431-c5ead5f16427\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e70e50e-3386-4e32-99a0-95955c106175","direction":"outgoing","index":124678,"result_id":"c7e930c6-03ec-4620-a0e3-26e89a06f139","status":200,"timestamp":"2026-05-22T11:57:38.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:38.067-04:00"},{"id":"76995a79-e6f8-479e-a834-eb6f5f2e46a6","created_at":"2026-05-22T11:57:38.688-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dc6472a6-81d8-4287-829d-36967129e1d2","direction":"outgoing","index":124679,"result_id":"76995a79-e6f8-479e-a834-eb6f5f2e46a6","status":200,"timestamp":"2026-05-22T11:57:38.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_id=cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:38.688-04:00"},{"id":"7c2923b6-24b1-4af7-b864-7ac2cfe9d74e","created_at":"2026-05-22T11:57:38.941-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bee1323c-f3fb-45b6-9832-3219393a7356","direction":"outgoing","index":124680,"result_id":"7c2923b6-24b1-4af7-b864-7ac2cfe9d74e","status":200,"timestamp":"2026-05-22T11:57:38.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"},{"id":"c6a0086d-0a1d-4568-a91e-7ddd50fa4a2a","direction":"outgoing","index":124681,"result_id":"7c2923b6-24b1-4af7-b864-7ac2cfe9d74e","status":200,"timestamp":"2026-05-22T11:57:38.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_identifier_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:38.941-04:00"},{"id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","created_at":"2026-05-22T11:57:41.900-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"51bb7c3d-3e79-4201-9526-4d1cabfae230","direction":"outgoing","index":124682,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009","verb":"get"},{"id":"ef99dc7d-a55a-4db8-b52d-486891be72c6","direction":"outgoing","index":124683,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0be61f50-e775-498f-89e7-45430e9073a0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25b37a74-7d60-487a-b225-41aa9e51bb29","direction":"outgoing","index":124684,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0be61f50-e775-498f-89e7-45430e9073a0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16a198a6-3e78-44e5-91af-e106b6bcb007","direction":"outgoing","index":124685,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009","verb":"get"},{"id":"48686f23-f95f-4a45-8139-5a99a9079519","direction":"outgoing","index":124686,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8732048b-c366-49d2-81fb-ff40bd77d044\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"653890d8-2cff-408b-a9c6-ba6c7b25c617","direction":"outgoing","index":124687,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8732048b-c366-49d2-81fb-ff40bd77d044\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"559ef1ee-8230-4235-b5d7-60e2d175cdcc","direction":"outgoing","index":124688,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009","verb":"get"},{"id":"49367185-ab2d-432a-8d68-1959d2fbdef8","direction":"outgoing","index":124689,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:41.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b244639-65d5-4efe-8b7c-00cd00a0b873\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f2f146f-10e1-4e70-8f2d-6d02e30ff845","direction":"outgoing","index":124690,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:42.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8b244639-65d5-4efe-8b7c-00cd00a0b873\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f79af64-c171-4d95-9666-16833f85a342","direction":"outgoing","index":124691,"result_id":"23636b51-5955-4a6e-9fde-9b7dc18df11e","status":200,"timestamp":"2026-05-22T11:57:42.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026type=99211","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_type_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:41.900-04:00"},{"id":"5efb9adc-4c80-4110-856a-86c115ac03b7","created_at":"2026-05-22T11:57:47.187-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6e088bac-7483-4405-8f2f-310f63fca944","direction":"outgoing","index":124692,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85","verb":"get"},{"id":"3c7094a7-7db3-4508-ad44-d91e9de71af4","direction":"outgoing","index":124693,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46023b18-ede7-4828-b026-7f30cf7fedd7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4748eac8-dbe4-4c1c-be4e-59db11b94fb9","direction":"outgoing","index":124694,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46023b18-ede7-4828-b026-7f30cf7fedd7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddac079d-ff6c-4727-bf9a-1f3476a5619e","direction":"outgoing","index":124695,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46023b18-ede7-4828-b026-7f30cf7fedd7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b24c7a1-1f90-48cd-aadd-7d025fe48e6d","direction":"outgoing","index":124696,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46023b18-ede7-4828-b026-7f30cf7fedd7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9af23954-4ba5-47c1-9188-24fd7ee81c4b","direction":"outgoing","index":124697,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46023b18-ede7-4828-b026-7f30cf7fedd7\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"beeefd5a-aafc-4294-bf86-92dac8011979","direction":"outgoing","index":124698,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85","verb":"get"},{"id":"9ef7f499-cfdb-4267-8dca-ffa599d687b9","direction":"outgoing","index":124699,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e43fdaf4-936f-4476-8da1-4292893cc98b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9b5cbaa-52c5-44f9-8839-e8211f8c0ccd","direction":"outgoing","index":124700,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e43fdaf4-936f-4476-8da1-4292893cc98b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c8a8bbf-1abb-4b1f-b46a-437b2bb50a15","direction":"outgoing","index":124701,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e43fdaf4-936f-4476-8da1-4292893cc98b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a56cef0f-9607-40ab-b554-774715c32f17","direction":"outgoing","index":124702,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e43fdaf4-936f-4476-8da1-4292893cc98b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c271148-d372-4bb1-9302-5ec92e78ba88","direction":"outgoing","index":124703,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e43fdaf4-936f-4476-8da1-4292893cc98b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91e4b5e0-498b-4b36-b32e-cea726d63cfd","direction":"outgoing","index":124704,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355","verb":"get"},{"id":"3f15e0f7-b446-427f-8b5d-d6e216d461f7","direction":"outgoing","index":124705,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d413d4df-94da-4ecc-af15-ec3af2967023","direction":"outgoing","index":124706,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.442-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83fa4b88-1705-4d46-84c6-464a7abbc0e0","direction":"outgoing","index":124707,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf877046-691a-41d7-b966-5a4b3e8cfea9","direction":"outgoing","index":124708,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91b9b800-3541-4230-a646-5af4a844a646","direction":"outgoing","index":124709,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a03cb3b1-9b50-4e8c-bed8-0823c50caa31","direction":"outgoing","index":124710,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6c53543-bd6b-47de-b438-4cfeba7f9e7c","direction":"outgoing","index":124711,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62015b74-3fb6-4728-aa23-720b0dc1c770","direction":"outgoing","index":124712,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a97dae56-1c5c-4913-bf14-6f86c391f003","direction":"outgoing","index":124713,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ef560d9f-30ac-4164-8d14-1a9289e6e66d","direction":"outgoing","index":124714,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6849dfff-30b8-4025-a740-67fbaa82331e","direction":"outgoing","index":124715,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c63cf96f-28c8-49a6-a276-95752d171a44","direction":"outgoing","index":124716,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35da0fc2-dad2-4e14-9027-574e504254c8\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"411f99f0-d453-4077-ac8a-3c413ae487f1","direction":"outgoing","index":124717,"result_id":"5efb9adc-4c80-4110-856a-86c115ac03b7","status":200,"timestamp":"2026-05-22T11:57:47.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_class_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:47.187-04:00"},{"id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","created_at":"2026-05-22T11:57:51.631-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"87aa65cb-c09b-4611-899f-9ff9225dc97e","direction":"outgoing","index":124718,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished","verb":"get"},{"id":"67eacf18-74b1-4cd6-9c19-55fd995f1c0b","direction":"outgoing","index":124719,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=be0e8636-ce95-4d57-af60-725066da1609\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5c355eb7-76e6-4728-b732-6ca68c307489","direction":"outgoing","index":124720,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=be0e8636-ce95-4d57-af60-725066da1609\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2241e0d-32e1-470a-ac80-e090ef51399e","direction":"outgoing","index":124721,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=be0e8636-ce95-4d57-af60-725066da1609\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4277258e-5bad-4b0e-a4fb-10b27f91f34b","direction":"outgoing","index":124722,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=be0e8636-ce95-4d57-af60-725066da1609\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8d8d580-edfb-4dac-9d51-6b035662dd4b","direction":"outgoing","index":124723,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=be0e8636-ce95-4d57-af60-725066da1609\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a788598-c678-46c0-b25c-97d848d77b0b","direction":"outgoing","index":124724,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished","verb":"get"},{"id":"fd389fec-fe52-4ded-ad46-eba4e3925052","direction":"outgoing","index":124725,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa015da2-3620-4d0b-a92a-1053f00dcea4","direction":"outgoing","index":124726,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1c3f49f-cd75-4864-aade-01b72994a22e","direction":"outgoing","index":124727,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e2c42d2-00ac-4b2b-8e1f-8854c281c0c9","direction":"outgoing","index":124728,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29e08e12-564e-4fb1-ac45-ae620d52b8f1","direction":"outgoing","index":124729,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddd84419-9168-407f-b12a-346a8645fa58","direction":"outgoing","index":124730,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d623448-a53d-4251-b6e4-29dbe468174c","direction":"outgoing","index":124731,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b8fd39d9-d0dd-4ed6-a5b7-cd4d475613be","direction":"outgoing","index":124732,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05d5b03a-f678-4cda-b322-75f5f6e3f94d","direction":"outgoing","index":124733,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f9255b0-dca5-443c-8d28-b5fac05a0af8","direction":"outgoing","index":124734,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"832a39aa-178c-44c0-ba57-8e939d741599","direction":"outgoing","index":124735,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fcfe85c-d2f8-431b-b625-3c2481be0ab2","direction":"outgoing","index":124736,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f83b5ad-1ebc-4c6b-b345-bc9447f9bda2\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8a1365dd-bcd4-4955-8191-f52a0ad3c4b9","direction":"outgoing","index":124737,"result_id":"9bdeaa4c-8859-4ff9-979c-cc0e5d1b2427","status":200,"timestamp":"2026-05-22T11:57:51.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026status=finished","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:51.631-04:00"},{"id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","created_at":"2026-05-22T11:57:59.285-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c48aeff8-c37f-409a-a380-b5fc2a6cf5fe","direction":"outgoing","index":124738,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7939c1d8-1ba6-42a5-b173-854eefee3a6b","direction":"outgoing","index":124739,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"51e8ff75-b811-4432-bf0f-debfb7100667","direction":"outgoing","index":124740,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4faa8085-ee9f-4640-87a3-423e3d4b3b74","direction":"outgoing","index":124741,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3132128a-7500-4d92-802a-ae9d59c8b248","direction":"outgoing","index":124742,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"986d038e-9274-4650-9233-46d4cf472408","direction":"outgoing","index":124743,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a77eaa80-795c-4b26-8875-e0e3ec561005","direction":"outgoing","index":124744,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"4ea1b234-7394-42c7-9c6e-0c36596babc4","direction":"outgoing","index":124745,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e40674a-8557-44ea-a167-e449902c0c20","direction":"outgoing","index":124746,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37176698-82ea-4f6e-8ea7-9a7e8001a99d","direction":"outgoing","index":124747,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"053c7b2d-f48f-4e0c-b43c-02d6ad83305a","direction":"outgoing","index":124748,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bad33f5b-f398-45e9-8b1e-50b865d19ddf","direction":"outgoing","index":124749,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.451-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=15661338-95aa-4997-a9ec-29acd7fab5ee\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c18e5356-2c5d-4056-9f30-8a0e52a22e29","direction":"outgoing","index":124750,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"c986e938-a9e7-413d-ba1e-7dbacf931012","direction":"outgoing","index":124751,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed36d39a-592e-499f-b632-610732c2451a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5165def-835e-47fb-88ff-41ce0c9a3c99","direction":"outgoing","index":124752,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed36d39a-592e-499f-b632-610732c2451a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c01de456-9bee-4e9c-ba90-5262018f0f3b","direction":"outgoing","index":124753,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed36d39a-592e-499f-b632-610732c2451a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a41e78e7-e878-48eb-992e-98cf0417a4d8","direction":"outgoing","index":124754,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed36d39a-592e-499f-b632-610732c2451a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29a9d60e-ca4f-4cc2-9f9b-bcd838b57208","direction":"outgoing","index":124755,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ed36d39a-592e-499f-b632-610732c2451a\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e329454c-7751-4726-b7eb-713c647a0092","direction":"outgoing","index":124756,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7cc5a0b2-562f-4a28-99a6-d20bbaf2cbec","direction":"outgoing","index":124757,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f0538b5a-d968-4922-91c0-f65cacb7fbf3","direction":"outgoing","index":124758,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"47237fb4-3804-4a3b-afce-fdadb19a0e78","direction":"outgoing","index":124759,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c55d327e-548d-45e9-b100-0de234dae84f","direction":"outgoing","index":124760,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60a206b0-9c53-4e14-b3bc-0500cd6d7842","direction":"outgoing","index":124761,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8b714136-fa6e-4b3f-9f71-024b3862a263","direction":"outgoing","index":124762,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"470565a7-1138-4fb3-88cf-bbdb315dc770","direction":"outgoing","index":124763,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8683e07f-a57a-4c05-bedd-036110038264","direction":"outgoing","index":124764,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62d73baa-565d-4c26-a877-0f3f2c64e4cc","direction":"outgoing","index":124765,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5decd88d-f3a3-493b-a4e2-5620569b7907","direction":"outgoing","index":124766,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5d0b5c5-9508-4c35-b7dd-037b831dfb67","direction":"outgoing","index":124767,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6f31479-d56a-40d1-b084-674b60f18fe7","direction":"outgoing","index":124768,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1175b5fc-f784-4a63-b141-5ba3f49899fb","direction":"outgoing","index":124769,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87f6bf81-4e2b-44d6-b835-f4dfc5bb553f","direction":"outgoing","index":124770,"result_id":"91017643-1f2e-44a7-a23e-b3e2d94b21d3","status":200,"timestamp":"2026-05-22T11:57:59.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b06d269-5692-4730-b4c0-f165d287ee5b\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:57:59.285-04:00"},{"id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","created_at":"2026-05-22T11:58:03.053-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fe080c08-b2a1-4799-91e6-1f737a2d3319","direction":"outgoing","index":124771,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/b594895c-11cb-403f-a3bb-5729a3da4bd6\u0026patient=85","verb":"get"},{"id":"8f8a8724-4e80-4749-9888-e91a751d3364","direction":"outgoing","index":124772,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47694bd3-e39d-4671-8e61-77c132a7160c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5625fa0b-0339-4a73-b320-245aa537b458","direction":"outgoing","index":124773,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47694bd3-e39d-4671-8e61-77c132a7160c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5699cf0-661b-4a64-92bd-1e2d922ed391","direction":"outgoing","index":124774,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47694bd3-e39d-4671-8e61-77c132a7160c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5d03d14-8b77-458b-a0e5-51790fce4837","direction":"outgoing","index":124775,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/462d8d76-453e-4644-9f58-fc7f4f1daff0\u0026patient=355","verb":"get"},{"id":"df544e3f-b031-4d7f-918d-07985a5d4ddb","direction":"outgoing","index":124776,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45ae2653-e968-4d79-927f-5b22205ac100","direction":"outgoing","index":124777,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"996bdbd9-f543-4f77-8040-fabb415bdfad","direction":"outgoing","index":124778,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0e88ffd-b48e-49ba-a202-a81ca7984e78","direction":"outgoing","index":124779,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83ce420a-9448-4595-9ed1-f506f887c4c0","direction":"outgoing","index":124780,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36c4b912-e9fd-4186-8c0b-e6d703114f61","direction":"outgoing","index":124781,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43c618cd-d4ec-4d1c-b7d3-435d2c5be1d9","direction":"outgoing","index":124782,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dcbff11f-dda1-4e89-ac40-c32095245625","direction":"outgoing","index":124783,"result_id":"9729f79e-7131-4a1b-8590-42f9e0fc0a79","status":200,"timestamp":"2026-05-22T11:58:03.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=93556c42-e724-49c2-840d-55ac6aad1153\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_location_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:03.053-04:00"},{"id":"6cf3c5f0-9700-454e-a9b6-b394ddb8be34","created_at":"2026-05-22T11:58:03.444-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7920f736-3027-4a01-b893-c1920d4eeccd","direction":"outgoing","index":124784,"result_id":"6cf3c5f0-9700-454e-a9b6-b394ddb8be34","status":400,"timestamp":"2026-05-22T11:58:03.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85","verb":"get"},{"id":"a0e51096-a1fe-4ee9-9172-726209834f7d","direction":"outgoing","index":124785,"result_id":"6cf3c5f0-9700-454e-a9b6-b394ddb8be34","status":400,"timestamp":"2026-05-22T11:58:03.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85\u0026status=planned","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_discharge_disposition_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:03.444-04:00"},{"id":"5c090945-4371-42a6-8d28-067d29c46fc0","created_at":"2026-05-22T11:58:03.581-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a0235c2b-a63b-4449-b608-8a17d6948f28","direction":"outgoing","index":124786,"result_id":"5c090945-4371-42a6-8d28-067d29c46fc0","status":200,"timestamp":"2026-05-22T11:58:03.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:03.581-04:00"},{"id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","created_at":"2026-05-22T11:58:08.520-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ac8c1a7f-9ebc-428d-b3ce-454904e1d136","direction":"outgoing","index":124787,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"427a21b6-5db2-4b0c-ae24-62cf21a9a7ac","direction":"outgoing","index":124788,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f853a5f-1590-4db6-8fa9-85f01dde4387\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ebbd79d4-4efa-4d2a-8354-fbf2167d2a00","direction":"outgoing","index":124789,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f853a5f-1590-4db6-8fa9-85f01dde4387\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92ea8121-c1fc-4a4d-8393-553b3e8e1b98","direction":"outgoing","index":124790,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f853a5f-1590-4db6-8fa9-85f01dde4387\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2c6a9e3-c49f-43ad-957a-2f52af947606","direction":"outgoing","index":124791,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f853a5f-1590-4db6-8fa9-85f01dde4387\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"80ccb66b-3ee5-444a-8fbb-4b6d19296a20","direction":"outgoing","index":124792,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5f853a5f-1590-4db6-8fa9-85f01dde4387\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"383bc9cd-87cc-408d-bd7a-0f663313439c","direction":"outgoing","index":124793,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.600-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"0a54cc3a-ec2c-4182-b62b-f1fffb4bd4cc","direction":"outgoing","index":124794,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6842c047-5144-47dd-84c5-d9c58380b9e9","direction":"outgoing","index":124795,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f050820-b150-4dda-a741-4d15c6e48d18","direction":"outgoing","index":124796,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa654efd-fbc8-43f0-844d-7afc090b3f24","direction":"outgoing","index":124797,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f8071f2-e823-4f3e-85c9-d1453fe46bd6","direction":"outgoing","index":124798,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2418d0eb-eefb-4fff-ba31-33b385b37a6b","direction":"outgoing","index":124799,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb2860ca-f08d-4441-8858-e3fcf9089625","direction":"outgoing","index":124800,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46ba177d-ad77-4af0-87fd-58ff31231196","direction":"outgoing","index":124801,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"507a836d-f58f-40fc-9e28-572008d4667d","direction":"outgoing","index":124802,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8230c25-a5e1-4205-a434-dad8941590eb","direction":"outgoing","index":124803,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fbf73ec4-4594-4be1-85bc-0f775fbd2d8b","direction":"outgoing","index":124804,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c7ac0995-c14c-411b-b291-f6b66ddb4d96","direction":"outgoing","index":124805,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7bfe71e-f967-4ba7-bdf9-ffe3eada477d\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb469023-ff97-47a2-a25b-c83edd960963","direction":"outgoing","index":124806,"result_id":"0adf6d91-b119-4222-8a6b-92f0a8c10be4","status":200,"timestamp":"2026-05-22T11:58:08.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:08.520-04:00"},{"id":"4dfb1aa0-c9f6-4812-a06c-622f120816cb","created_at":"2026-05-22T11:58:16.243-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed","type":"info"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1711b0e8-ae28-466c-b439-3eff9887746e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:16.243-04:00"},{"id":"c1abae84-78d6-4069-be5c-322e136aa4e3","created_at":"2026-05-22T11:58:16.466-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:16.466-04:00"},{"id":"5bed3ccc-90f0-4bed-9c66-d36ae3a48936","created_at":"2026-05-22T11:58:16.580-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1e9babfd-6699-4a64-9c70-6b8278f16cd3","direction":"outgoing","index":124807,"result_id":"5bed3ccc-90f0-4bed-9c66-d36ae3a48936","status":200,"timestamp":"2026-05-22T11:58:16.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:16.580-04:00"},{"id":"5c9f93d4-34b7-4c7e-b684-807111934aca","created_at":"2026-05-22T11:58:16.600-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:16.600-04:00"},{"id":"21180ca3-1c9b-4b67-9513-719f9208d540","created_at":"2026-05-22T11:58:17.216-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e3daa62e-f007-47d2-bb31-c05791dcf92d","direction":"outgoing","index":124808,"result_id":"21180ca3-1c9b-4b67-9513-719f9208d540","status":200,"timestamp":"2026-05-22T11:58:17.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=85","verb":"get"},{"id":"5e1a2270-5961-447a-b05e-769e72210070","direction":"outgoing","index":124809,"result_id":"21180ca3-1c9b-4b67-9513-719f9208d540","status":200,"timestamp":"2026-05-22T11:58:17.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355","verb":"get"},{"id":"94da4ce7-d7f7-4ad3-890a-833319ebf647","direction":"outgoing","index":124810,"result_id":"21180ca3-1c9b-4b67-9513-719f9208d540","status":200,"timestamp":"2026-05-22T11:58:17.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/_search","verb":"post"},{"id":"17d18b40-c59d-449e-a88e-62a76838c90a","direction":"outgoing","index":124811,"result_id":"21180ca3-1c9b-4b67-9513-719f9208d540","status":200,"timestamp":"2026-05-22T11:58:17.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355","verb":"get"},{"id":"289f7b6d-7bcc-4987-a7d1-927820d9e6ea","direction":"outgoing","index":124812,"result_id":"21180ca3-1c9b-4b67-9513-719f9208d540","status":200,"timestamp":"2026-05-22T11:58:17.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:17.216-04:00"},{"id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","created_at":"2026-05-22T11:58:17.954-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"60dad4b1-7b10-45c4-b70c-ece7b96b991b","direction":"outgoing","index":124813,"result_id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","status":200,"timestamp":"2026-05-22T11:58:17.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07","verb":"get"},{"id":"fad4cf9f-e518-440e-8013-583ebd9ed674","direction":"outgoing","index":124814,"result_id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","status":200,"timestamp":"2026-05-22T11:58:17.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"a521370d-381f-499b-8202-c9baddd1d0a2","direction":"outgoing","index":124815,"result_id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","status":200,"timestamp":"2026-05-22T11:58:18.002-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"526eaff2-0d61-440c-b111-659cf65cfd1e","direction":"outgoing","index":124816,"result_id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","status":200,"timestamp":"2026-05-22T11:58:18.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00","verb":"get"},{"id":"ec3e009c-e70a-417d-ac95-2484efaf64fa","direction":"outgoing","index":124817,"result_id":"744b2d8a-9539-4f2b-802a-b39fa2517baa","status":200,"timestamp":"2026-05-22T11:58:18.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_target_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:17.954-04:00"},{"id":"ba9b5700-3fe2-477e-9761-efd9438f7f10","created_at":"2026-05-22T11:58:18.390-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2be84f05-7f73-4357-ac10-8cf23529cf67","direction":"outgoing","index":124818,"result_id":"ba9b5700-3fe2-477e-9761-efd9438f7f10","status":400,"timestamp":"2026-05-22T11:58:18.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026patient=355","verb":"get"},{"id":"0adfa48c-015a-4f05-a8b7-00923745bf4f","direction":"outgoing","index":124819,"result_id":"ba9b5700-3fe2-477e-9761-efd9438f7f10","status":400,"timestamp":"2026-05-22T11:58:18.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026lifecycle-status=proposed\u0026patient=355","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_description_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:18.390-04:00"},{"id":"05a8e354-0c04-4ecb-858b-e87df7025cd9","created_at":"2026-05-22T11:58:18.534-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c7d6335f-c8dd-4280-bce8-6bc5c23cd378","direction":"outgoing","index":124820,"result_id":"05a8e354-0c04-4ecb-858b-e87df7025cd9","status":200,"timestamp":"2026-05-22T11:58:18.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_lifecycle_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:18.534-04:00"},{"id":"691f7c13-7237-4c09-9583-d17c33fdfcdd","created_at":"2026-05-22T11:58:18.660-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"edb4b2b2-8722-418a-a9a9-73d717e2436b","direction":"outgoing","index":124821,"result_id":"691f7c13-7237-4c09-9583-d17c33fdfcdd","status":200,"timestamp":"2026-05-22T11:58:18.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:18.660-04:00"},{"id":"060db8e3-c80a-4373-ae7f-1895d8f05b27","created_at":"2026-05-22T11:58:19.103-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55c9b917-0da8-47b6-8ac0-b3339e7064cb","direction":"outgoing","index":124822,"result_id":"060db8e3-c80a-4373-ae7f-1895d8f05b27","status":200,"timestamp":"2026-05-22T11:58:19.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"3ae82f1e-949e-42ad-a29d-09d2de2993de","direction":"outgoing","index":124823,"result_id":"060db8e3-c80a-4373-ae7f-1895d8f05b27","status":200,"timestamp":"2026-05-22T11:58:19.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"b8abdcec-c1d4-49d9-96ab-bd708187c79b","direction":"outgoing","index":124824,"result_id":"060db8e3-c80a-4373-ae7f-1895d8f05b27","status":200,"timestamp":"2026-05-22T11:58:19.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:19.103-04:00"},{"id":"981d98b5-9912-4b7e-a106-0d2a3cb104b4","created_at":"2026-05-22T11:58:19.356-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:19.356-04:00"},{"id":"fbbf875b-489c-4acb-a5f8-e1bb8f15d036","created_at":"2026-05-22T11:58:19.369-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:19.369-04:00"},{"id":"35b60a96-716a-4a72-8f00-6c24f15b3d90","created_at":"2026-05-22T11:58:19.375-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:19.375-04:00"},{"id":"c30f29dd-1590-4da2-bee9-45ad57ae96a8","created_at":"2026-05-22T11:58:19.379-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:19.379-04:00"},{"id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","created_at":"2026-05-22T11:58:22.259-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"da6dda0c-3aa2-40d0-ac5e-fb060ff06772","direction":"outgoing","index":124825,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85","verb":"get"},{"id":"b90f3cc0-96ad-4a9f-9ce4-49b1c3db8b04","direction":"outgoing","index":124826,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a81ab0ee-26f2-419c-9fb3-aa26ed831951\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ef5f924-5a60-4266-b4cf-95bba74ee941","direction":"outgoing","index":124827,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/_search","verb":"post"},{"id":"4831e44f-52cf-407f-93e8-2f9865925ab6","direction":"outgoing","index":124828,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a81ab0ee-26f2-419c-9fb3-aa26ed831951\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"68618de3-1be8-4bde-beaa-bc5e58e8ec2f","direction":"outgoing","index":124829,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85","verb":"get"},{"id":"93d16781-88f7-463a-a628-63fcbca65b10","direction":"outgoing","index":124830,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58e2ffd6-4dff-4c29-bddd-596f9fd45ea2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58edb2bb-8303-455e-a2a5-e9abaa8fdace","direction":"outgoing","index":124831,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355","verb":"get"},{"id":"2879dc10-6093-465f-8e00-474c5e1c14d2","direction":"outgoing","index":124832,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2711948e-a11a-4b39-b2b2-1097dc775240\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8fa90dc-f02f-4009-a5f4-75d4d164df0a","direction":"outgoing","index":124833,"result_id":"caffdce6-3577-4b5f-9126-e8ec97f30a4c","status":200,"timestamp":"2026-05-22T11:58:22.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:22.259-04:00"},{"id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","created_at":"2026-05-22T11:58:24.540-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d66e87c7-6c0b-4f6f-b654-7dc2f82e7b9f","direction":"outgoing","index":124834,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f80c648e-c26b-4be2-b20d-cc8c42665ae8","direction":"outgoing","index":124835,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f87fce7e-006c-4fbb-9b87-3e21e56d6ee1","direction":"outgoing","index":124836,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f2029a05-275b-4ec7-8bce-71bc29886252\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43e8bafd-97f0-4d3a-94f7-1fb1cd31d644","direction":"outgoing","index":124837,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3b2d7209-a232-4737-a871-dadbd99cc915","direction":"outgoing","index":124838,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a72d6b2-05e4-4495-947e-5c93ab039c56\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d4c4ac4-d9d8-492e-81b0-288c61ed0462","direction":"outgoing","index":124839,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"298a967d-14c7-4313-af34-3609d5f8058b","direction":"outgoing","index":124840,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"299f3f68-883f-4ef0-91b0-e40e27087fcf","direction":"outgoing","index":124841,"result_id":"a6e81c3d-f283-4ff6-9a78-74bb760510f8","status":200,"timestamp":"2026-05-22T11:58:24.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:24.540-04:00"},{"id":"25acf77d-89f4-42f1-b2a7-0fc2da307589","created_at":"2026-05-22T11:58:25.579-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8b880ed3-d958-47b7-9adf-32d0679b51d5","direction":"outgoing","index":124842,"result_id":"25acf77d-89f4-42f1-b2a7-0fc2da307589","status":200,"timestamp":"2026-05-22T11:58:25.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed","verb":"get"},{"id":"c3a3b451-f900-4a30-a94b-2a3b7ae823c9","direction":"outgoing","index":124843,"result_id":"25acf77d-89f4-42f1-b2a7-0fc2da307589","status":200,"timestamp":"2026-05-22T11:58:25.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8ef860f-9da6-4ef2-9836-f54bc9075730\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2fae9bf-e768-4bef-91cb-7fc8a90865dc","direction":"outgoing","index":124844,"result_id":"25acf77d-89f4-42f1-b2a7-0fc2da307589","status":200,"timestamp":"2026-05-22T11:58:25.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:25.579-04:00"},{"id":"9f0b60bd-f006-41cc-b223-9a8dd6310d87","created_at":"2026-05-22T11:58:25.747-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7d269e87-c05b-4780-9237-1cfc0e7cc149","direction":"outgoing","index":124845,"result_id":"9f0b60bd-f006-41cc-b223-9a8dd6310d87","status":200,"timestamp":"2026-05-22T11:58:25.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:25.747-04:00"},{"id":"ac087d19-bd51-41af-af09-6699966a8a9a","created_at":"2026-05-22T11:58:27.672-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6dc4900d-2d3d-455c-a804-a40047ceb2f3","direction":"outgoing","index":124846,"result_id":"ac087d19-bd51-41af-af09-6699966a8a9a","status":200,"timestamp":"2026-05-22T11:58:27.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"4833363a-44a8-41fe-b774-b517e881bc0a","direction":"outgoing","index":124847,"result_id":"ac087d19-bd51-41af-af09-6699966a8a9a","status":200,"timestamp":"2026-05-22T11:58:27.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6518775e-8f38-452c-a0a3-b259a6e317ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"feef2d50-498d-429e-8ae8-15b3bf9475ca","direction":"outgoing","index":124848,"result_id":"ac087d19-bd51-41af-af09-6699966a8a9a","status":200,"timestamp":"2026-05-22T11:58:27.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"95f355d8-9366-4a9f-a44b-1e61751d5a0c","direction":"outgoing","index":124849,"result_id":"ac087d19-bd51-41af-af09-6699966a8a9a","status":200,"timestamp":"2026-05-22T11:58:27.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b7dd443-d7de-4e4b-8057-071ed6cbb627\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dbf31ff7-d364-4d79-81a7-3fa5bcdfc3bb","direction":"outgoing","index":124850,"result_id":"ac087d19-bd51-41af-af09-6699966a8a9a","status":200,"timestamp":"2026-05-22T11:58:27.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:27.672-04:00"},{"id":"a061ef5f-4477-48bb-bcd8-bd9ad46e1975","created_at":"2026-05-22T11:58:29.110-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20220701), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_code_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:29.110-04:00"},{"id":"a05fe5f1-7a11-477e-8266-74e1b01138d3","created_at":"2026-05-22T11:58:29.153-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:29.153-04:00"},{"id":"953df86c-dc5d-42ec-9acd-28a1de75893b","created_at":"2026-05-22T11:58:29.155-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:29.155-04:00"},{"id":"86cf3491-1b37-4108-b032-2234996af965","created_at":"2026-05-22T11:58:29.157-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:29.157-04:00"},{"id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","created_at":"2026-05-22T11:58:29.915-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"21c524a2-e2ba-4072-b9ea-6eb7c0829ca3","direction":"outgoing","index":124851,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:29.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85","verb":"get"},{"id":"570862ea-867b-4a34-a137-3ed3f37963bc","direction":"outgoing","index":124852,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:29.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/_search","verb":"post"},{"id":"089deb65-c23d-4672-b764-d89cce6b9190","direction":"outgoing","index":124853,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:29.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85","verb":"get"},{"id":"c56a0642-0e3b-42bf-8f8d-87335594e8d9","direction":"outgoing","index":124854,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:29.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=Patient/85","verb":"get"},{"id":"1063ca10-c0ed-4eef-95a1-5bad2d9f67a4","direction":"outgoing","index":124855,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:29.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=355","verb":"get"},{"id":"98fb98bb-4e88-4be9-8ccd-6c35405fa711","direction":"outgoing","index":124856,"result_id":"f3b9ba5c-2bf5-436e-b763-6531340ddf85","status":200,"timestamp":"2026-05-22T11:58:30.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:29.915-04:00"},{"id":"75911b4e-cb92-449b-a7ec-b5400fd4516d","created_at":"2026-05-22T11:58:30.381-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"60ec4586-0f07-42da-9eff-f25119da2b96","direction":"outgoing","index":124857,"result_id":"75911b4e-cb92-449b-a7ec-b5400fd4516d","status":200,"timestamp":"2026-05-22T11:58:30.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=FFC","verb":"get"},{"id":"592c4515-7331-4030-8a98-1cfb6ae2a2b7","direction":"outgoing","index":124858,"result_id":"75911b4e-cb92-449b-a7ec-b5400fd4516d","status":200,"timestamp":"2026-05-22T11:58:30.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CFFC","verb":"get"},{"id":"e1ee5171-da77-4458-9490-d0b99fda3fa6","direction":"outgoing","index":124859,"result_id":"75911b4e-cb92-449b-a7ec-b5400fd4516d","status":200,"timestamp":"2026-05-22T11:58:30.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown\u0026type=DF,EM,SO,FF,FFC,FFP,FFSS,TF,FS,MS,RF,UD,RFC,RFCS,RFF,RFFS,RFP,RFPS,RFS,TB,TBS,UDE","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_status_type_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:30.381-04:00"},{"id":"1b0add69-bce7-45fb-81a1-e47fd450e145","created_at":"2026-05-22T11:58:30.781-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5ba58bd2-8700-401c-804c-02d5f4b02d86","direction":"outgoing","index":124860,"result_id":"1b0add69-bce7-45fb-81a1-e47fd450e145","status":200,"timestamp":"2026-05-22T11:58:30.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed","verb":"get"},{"id":"b28bb284-cf58-492a-9b1b-87158b20dc6f","direction":"outgoing","index":124861,"result_id":"1b0add69-bce7-45fb-81a1-e47fd450e145","status":200,"timestamp":"2026-05-22T11:58:30.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85\u0026status=completed","verb":"get"},{"id":"8101f37a-1248-4706-866c-556bb36ceedd","direction":"outgoing","index":124862,"result_id":"1b0add69-bce7-45fb-81a1-e47fd450e145","status":200,"timestamp":"2026-05-22T11:58:30.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:30.781-04:00"},{"id":"3d3fdfe1-944e-4cda-a488-71fc61508040","created_at":"2026-05-22T11:58:30.936-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"689204c3-5475-4d2f-94cd-2346982b0078","direction":"outgoing","index":124863,"result_id":"3d3fdfe1-944e-4cda-a488-71fc61508040","status":200,"timestamp":"2026-05-22T11:58:30.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:30.936-04:00"},{"id":"bc49847c-62ad-464c-8bde-351cb8d815cf","created_at":"2026-05-22T11:58:31.360-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d5399c3e-9234-47a9-9de2-7b0ea1c8d970","direction":"outgoing","index":124864,"result_id":"bc49847c-62ad-464c-8bde-351cb8d815cf","status":200,"timestamp":"2026-05-22T11:58:31.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"b4e0842e-a05d-42a1-98a2-284a217ece6a","direction":"outgoing","index":124865,"result_id":"bc49847c-62ad-464c-8bde-351cb8d815cf","status":200,"timestamp":"2026-05-22T11:58:31.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"50aae72f-96fd-4e05-a697-ab3844a9626c","direction":"outgoing","index":124866,"result_id":"bc49847c-62ad-464c-8bde-351cb8d815cf","status":200,"timestamp":"2026-05-22T11:58:31.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:31.360-04:00"},{"id":"7c0ba240-7e1a-4e1d-95fd-fc6975935feb","created_at":"2026-05-22T11:58:32.699-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:32.699-04:00"},{"id":"b7ce734d-5032-41e9-ac1c-37ff7951562f","created_at":"2026-05-22T11:58:32.721-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:32.721-04:00"},{"id":"b8b42382-0bf5-4461-bb40-ef97a0cdfc4a","created_at":"2026-05-22T11:58:33.147-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d9c71423-8e1b-4b10-bed5-037441aff545","direction":"outgoing","index":124867,"result_id":"b8b42382-0bf5-4461-bb40-ef97a0cdfc4a","status":200,"timestamp":"2026-05-22T11:58:33.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1","verb":"get"},{"id":"b95b8bb1-9e2c-49d0-9f44-ba3fcd165db2","direction":"outgoing","index":124868,"result_id":"b8b42382-0bf5-4461-bb40-ef97a0cdfc4a","status":200,"timestamp":"2026-05-22T11:58:33.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"9308a648-9e08-4fa8-bf58-9f5e0d946cbe","direction":"outgoing","index":124869,"result_id":"b8b42382-0bf5-4461-bb40-ef97a0cdfc4a","status":200,"timestamp":"2026-05-22T11:58:33.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:33.147-04:00"},{"id":"60a825f6-7a7d-4676-a5eb-2c48e421f079","created_at":"2026-05-22T11:58:33.213-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:33.213-04:00"},{"id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","created_at":"2026-05-22T11:58:40.580-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"418e2a93-7343-4635-80b1-5f9fcd7570ae","direction":"outgoing","index":124870,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85","verb":"get"},{"id":"31861452-a3b0-4f6f-b9b0-62ff7a628eb9","direction":"outgoing","index":124871,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.600-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85","verb":"get"},{"id":"c25e9e1c-0faf-4c91-938c-7436f2ef3c2c","direction":"outgoing","index":124872,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85","verb":"get"},{"id":"bdba43bc-a272-4a3f-9d1d-457bb1afc334","direction":"outgoing","index":124873,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8fb4a8c-46f0-4063-88f0-627f91643e5b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"473d381c-4f75-4578-9172-f3398b5883f9","direction":"outgoing","index":124874,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search","verb":"post"},{"id":"1ce78ed3-45a4-4b57-aec3-0ec9671b3d42","direction":"outgoing","index":124875,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8fb4a8c-46f0-4063-88f0-627f91643e5b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a7eaf93-4f4c-461a-af62-4430013573d2","direction":"outgoing","index":124876,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85","verb":"get"},{"id":"b0d99ced-e0c3-44b1-8fa9-7c09fe1fd9ce","direction":"outgoing","index":124877,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee07006c-5c17-4953-ab0f-0970be1c8556\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset","verb":"get"},{"id":"cf474bef-df36-4d6c-b043-45cef36203d0","direction":"outgoing","index":124878,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85","verb":"get"},{"id":"56d864e3-8368-4bc8-8ace-c785c4558be7","direction":"outgoing","index":124879,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=332ffc1a-8b59-4534-b24d-1fc2f9039983\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"41f52dc1-10bc-44d1-9a22-90b3e5d120d9","direction":"outgoing","index":124880,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85","verb":"get"},{"id":"b644aaa9-09de-4dba-88a5-1be8235ead4e","direction":"outgoing","index":124881,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85","verb":"get"},{"id":"5cc90298-0efc-405f-b70a-9af9fa2f7a8a","direction":"outgoing","index":124882,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85","verb":"get"},{"id":"0e8a179b-1587-46aa-ad5d-04b8dac6c7a0","direction":"outgoing","index":124883,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85","verb":"get"},{"id":"27a28b23-6ab7-4479-bc83-220535872477","direction":"outgoing","index":124884,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85","verb":"get"},{"id":"676c5988-5aa0-4849-983b-e3bee5b88085","direction":"outgoing","index":124885,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355","verb":"get"},{"id":"454d9462-3b7f-40c0-a7df-86b4ae8bafee","direction":"outgoing","index":124886,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355","verb":"get"},{"id":"903158c9-efdd-44a0-a428-4fab644a8f20","direction":"outgoing","index":124887,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355","verb":"get"},{"id":"dd340cee-61fb-449e-bc33-200fa53d426a","direction":"outgoing","index":124888,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5951fa86-804a-4f4e-b31d-29f2b945c862\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac1486d9-3de8-4bcd-81a4-e61559c59f9d","direction":"outgoing","index":124889,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355","verb":"get"},{"id":"cb2deab8-2879-4243-aa18-362ea7e96d2c","direction":"outgoing","index":124890,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355","verb":"get"},{"id":"db8e7890-3e4e-441d-bf04-3ace5b0ece58","direction":"outgoing","index":124891,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355","verb":"get"},{"id":"d394c319-9551-4250-b32b-2073465cbbf8","direction":"outgoing","index":124892,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355","verb":"get"},{"id":"93f7c9f9-13f8-4249-bddb-d619e8309b34","direction":"outgoing","index":124893,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355","verb":"get"},{"id":"79497ee5-35da-4a3a-a013-f71020d32644","direction":"outgoing","index":124894,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=907","verb":"get"},{"id":"33e45e59-6e5d-4166-a10e-098291895f69","direction":"outgoing","index":124895,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=907","verb":"get"},{"id":"edb265ee-94f0-4ad2-9147-f58a9e083711","direction":"outgoing","index":124896,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=907","verb":"get"},{"id":"1c86f7ea-5690-45f9-b6cf-cb780c116b40","direction":"outgoing","index":124897,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=907","verb":"get"},{"id":"63a1cee2-0405-4904-bcc8-0ca58c7dfc62","direction":"outgoing","index":124898,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=907","verb":"get"},{"id":"8e565e23-33fb-4463-8285-e05cd040c043","direction":"outgoing","index":124899,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=907","verb":"get"},{"id":"9a5b372c-397e-4bff-8cd8-ad1e700921b2","direction":"outgoing","index":124900,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=907","verb":"get"},{"id":"b3c6bf21-d10a-4a2b-87dd-b5099af56858","direction":"outgoing","index":124901,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=907","verb":"get"},{"id":"66259f11-e347-4838-88fc-db404f4bcca9","direction":"outgoing","index":124902,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"},{"id":"0a46bd32-f3fb-43a6-95fd-96905bcf0642","direction":"outgoing","index":124903,"result_id":"05f41aa0-e082-4f3e-a090-ab080bd57c2f","status":200,"timestamp":"2026-05-22T11:58:40.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7022a87f-bf0a-4ef2-8f7c-fecb17290c97\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:40.580-04:00"},{"id":"2d67afc5-64c6-48b5-88c9-54f5ab555785","created_at":"2026-05-22T11:58:41.344-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"abd92b49-e9ed-40af-9a16-c27cafc6dc43","direction":"outgoing","index":124904,"result_id":"2d67afc5-64c6-48b5-88c9-54f5ab555785","status":200,"timestamp":"2026-05-22T11:58:41.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85","verb":"get"},{"id":"d8c35ce1-c2c6-4244-a6b4-6fb8a3fe3627","direction":"outgoing","index":124905,"result_id":"2d67afc5-64c6-48b5-88c9-54f5ab555785","status":200,"timestamp":"2026-05-22T11:58:41.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355","verb":"get"},{"id":"7345e3d9-0833-4fac-aa4d-f6ee6974424d","direction":"outgoing","index":124906,"result_id":"2d67afc5-64c6-48b5-88c9-54f5ab555785","status":200,"timestamp":"2026-05-22T11:58:41.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_encounter_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:41.344-04:00"},{"id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","created_at":"2026-05-22T11:58:42.634-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"140bf1f9-863f-48bd-907b-e0b61f570b23","direction":"outgoing","index":124907,"result_id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","status":200,"timestamp":"2026-05-22T11:58:42.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped","verb":"get"},{"id":"9ebb8612-180f-4f1a-912f-ddb7d1186d05","direction":"outgoing","index":124908,"result_id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","status":200,"timestamp":"2026-05-22T11:58:42.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bbd0fe1-6b69-4c4d-821a-9a0eb12bcb33\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac95bea5-6006-4554-a8df-17182ebe0d4f","direction":"outgoing","index":124909,"result_id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","status":200,"timestamp":"2026-05-22T11:58:42.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped","verb":"get"},{"id":"c35090d0-d8d4-43f2-b2b9-15309c731f21","direction":"outgoing","index":124910,"result_id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","status":200,"timestamp":"2026-05-22T11:58:42.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown","verb":"get"},{"id":"76577d65-5708-478e-8801-69d491c1c0e7","direction":"outgoing","index":124911,"result_id":"4fbe8da3-374c-4c2f-b8ed-4e3105cd5a10","status":200,"timestamp":"2026-05-22T11:58:42.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=425b4693-e1c1-4605-b0f2-59530fbc869f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:42.634-04:00"},{"id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","created_at":"2026-05-22T11:58:45.069-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8151eb9e-1904-48d3-9ecf-4b3a4cf4725d","direction":"outgoing","index":124912,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"302c1cd7-b5dc-4ebd-a874-043b217ac04b","direction":"outgoing","index":124913,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"97ec4b3c-c851-4c0f-8036-34b03398329c","direction":"outgoing","index":124914,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=74a09c0a-0654-444a-9416-7c94f140e991\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59528582-d08c-4b57-9122-249f329677f8","direction":"outgoing","index":124915,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"1f66925c-327d-4c7f-a999-5ddc9ca3e569","direction":"outgoing","index":124916,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0e3372d8-aef2-40af-9f28-547d6a8006d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0857161c-2226-4320-bce6-8918d186a4a3","direction":"outgoing","index":124917,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"306f5497-6c13-455a-8275-5dd094b10c08","direction":"outgoing","index":124918,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"7d605a4c-e685-44e5-ab31-cee5a2816cb5","direction":"outgoing","index":124919,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"f93bd8ba-e548-41a2-b757-61af57259d7f","direction":"outgoing","index":124920,"result_id":"9dc0e7d4-7585-48f1-95d9-7fa63ce4c598","status":200,"timestamp":"2026-05-22T11:58:45.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_authoredon_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:45.069-04:00"},{"id":"4d4fd8bc-6e42-4521-b481-07a925c37503","created_at":"2026-05-22T11:58:45.294-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0731ead3-c8d1-4922-9603-530cd711708c","direction":"outgoing","index":124921,"result_id":"4d4fd8bc-6e42-4521-b481-07a925c37503","status":200,"timestamp":"2026-05-22T11:58:45.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:45.294-04:00"},{"id":"214d6651-a91b-40b2-aa33-91a98083528e","created_at":"2026-05-22T11:58:49.928-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"052a8dc9-92f6-431e-b649-c36c2508bf7c","direction":"outgoing","index":124922,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:49.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85","verb":"get"},{"id":"04483ab5-e0a7-48fd-99a0-926a715d522e","direction":"outgoing","index":124923,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:49.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85","verb":"get"},{"id":"979e1f93-05ec-4570-ae99-d74be6a1ba9e","direction":"outgoing","index":124924,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:49.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85","verb":"get"},{"id":"698affa7-a228-4b2a-96c3-6eaee5d91f96","direction":"outgoing","index":124925,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:49.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bbc16609-3396-431d-b087-b85200fc4834\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16efcb1b-ccb6-4a49-b3cc-834a927fe209","direction":"outgoing","index":124926,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:49.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85","verb":"get"},{"id":"41fbeec5-5d2f-4035-852c-a239366a05df","direction":"outgoing","index":124927,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85","verb":"get"},{"id":"d798736a-52c5-4e70-acb1-37ef5da83be7","direction":"outgoing","index":124928,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85","verb":"get"},{"id":"a0928f4d-c1a2-41b3-88b2-a012fff53c22","direction":"outgoing","index":124929,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85","verb":"get"},{"id":"1ca89677-3112-414c-85f7-1d59a50c058a","direction":"outgoing","index":124930,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85","verb":"get"},{"id":"954a1311-ed73-4090-9dc0-0e1c42eac41a","direction":"outgoing","index":124931,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355","verb":"get"},{"id":"5de28561-4158-466f-98fb-72da6074d97e","direction":"outgoing","index":124932,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"011bbcdd-37dd-4a5c-b5ce-207c34841afa","direction":"outgoing","index":124933,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355","verb":"get"},{"id":"50693f19-cc10-4923-9295-0820bbe96147","direction":"outgoing","index":124934,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2368584e-ffa9-466c-bd98-35e391dc9377\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e19cfdc-9b4b-4205-b3c8-33cd97eb0f22","direction":"outgoing","index":124935,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355","verb":"get"},{"id":"dca9284e-4048-44ae-93f3-2a0c74f94b1d","direction":"outgoing","index":124936,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355","verb":"get"},{"id":"55d35407-67f4-41cc-b063-c866e979d621","direction":"outgoing","index":124937,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355","verb":"get"},{"id":"1c2f4aaf-13a2-4448-8ae3-1a622cbdd09f","direction":"outgoing","index":124938,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355","verb":"get"},{"id":"f8438102-2ff6-499b-8a32-28ae2aa7a442","direction":"outgoing","index":124939,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355","verb":"get"},{"id":"f9e2d58d-7d04-4780-a1d7-462371fb28c9","direction":"outgoing","index":124940,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=907","verb":"get"},{"id":"87a7e7b4-50c8-4cf1-bf81-d066d1ed7321","direction":"outgoing","index":124941,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=907","verb":"get"},{"id":"668f4651-f842-4873-94f5-ef6159759d02","direction":"outgoing","index":124942,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=907","verb":"get"},{"id":"9919ae53-baa9-4bf1-b911-272b51ad0d8a","direction":"outgoing","index":124943,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=907","verb":"get"},{"id":"e5b0157a-500d-4eb6-98d6-fc073a650576","direction":"outgoing","index":124944,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=907","verb":"get"},{"id":"db669ce5-34a1-482e-abd1-88f76e8427cb","direction":"outgoing","index":124945,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=907","verb":"get"},{"id":"9b6637d9-9356-4852-b883-65ad75906e1e","direction":"outgoing","index":124946,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=907","verb":"get"},{"id":"5966ca7b-c353-4bdc-8a53-59ca13523827","direction":"outgoing","index":124947,"result_id":"214d6651-a91b-40b2-aa33-91a98083528e","status":200,"timestamp":"2026-05-22T11:58:50.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:49.928-04:00"},{"id":"9c8605be-ac95-4216-b489-2caf288ccceb","created_at":"2026-05-22T11:58:54.413-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#105078)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication-adherence","type":"info"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#562251)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1043400)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:54.413-04:00"},{"id":"539d6956-e159-4657-ad0d-31f65ee08671","created_at":"2026-05-22T11:58:55.058-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:55.058-04:00"},{"id":"57a35d2d-9145-40f5-a946-1e966d4900ed","created_at":"2026-05-22T11:58:55.083-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:55.083-04:00"},{"id":"96a536e4-ca80-44a9-8ead-64ac12be3412","created_at":"2026-05-22T11:58:55.349-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5779eccc-4d69-4b6e-acc1-e537722c753e","direction":"outgoing","index":124948,"result_id":"96a536e4-ca80-44a9-8ead-64ac12be3412","status":200,"timestamp":"2026-05-22T11:58:55.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"f6ed4c35-4795-4658-a17d-56fdbede4471","direction":"outgoing","index":124949,"result_id":"96a536e4-ca80-44a9-8ead-64ac12be3412","status":200,"timestamp":"2026-05-22T11:58:55.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:55.349-04:00"},{"id":"c2b5c269-62a1-43a2-9ce6-d36a1a647f81","created_at":"2026-05-22T11:58:55.383-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:55.383-04:00"},{"id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","created_at":"2026-05-22T11:58:56.112-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dca02b0b-b36e-4a6f-885e-3f9230fb8949","direction":"outgoing","index":124950,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"f97f69e7-4e52-487b-a8ca-36b29a0542a1","direction":"outgoing","index":124951,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"8e1ff4f8-56b6-4e82-b79f-5eb7f91e0b40","direction":"outgoing","index":124952,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"2ab0097a-042c-43b1-b0d8-ea134cf9bc86","direction":"outgoing","index":124953,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"5bc8357e-1f2b-4b24-8b08-bd7e2520cc16","direction":"outgoing","index":124954,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"3a48e7c8-7c06-468e-98cf-1f8c004ae118","direction":"outgoing","index":124955,"result_id":"54307973-bbde-42c3-a2e8-4b9f0b3305f7","status":200,"timestamp":"2026-05-22T11:58:56.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:56.112-04:00"},{"id":"a65810e1-1925-435a-98b2-d13184833de3","created_at":"2026-05-22T11:58:57.089-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4b205770-bf1b-4a0c-9f31-f9cb63a10f73","direction":"outgoing","index":124956,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ed14f47d-ad11-457a-998f-5c6564f8c7b0","direction":"outgoing","index":124957,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"15e9dcd1-4a9c-49cd-af5d-af790887ac75","direction":"outgoing","index":124958,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"24e7656d-3bfe-4d3d-abb2-8ddb97335ffe","direction":"outgoing","index":124959,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"dbdd29d1-8cdf-43bb-a65e-74d3181d8d37","direction":"outgoing","index":124960,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8eaf75ee-653a-416c-9d08-3cdc840679ef","direction":"outgoing","index":124961,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"313e8d36-4a5a-4981-968f-6e7de43f4ee8","direction":"outgoing","index":124962,"result_id":"a65810e1-1925-435a-98b2-d13184833de3","status":200,"timestamp":"2026-05-22T11:58:57.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:57.089-04:00"},{"id":"cd71e3e0-3ee1-4fe0-b624-b62c85f7140c","created_at":"2026-05-22T11:58:57.692-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"89de0ea2-bd04-4fc6-acdc-5a8a45453195","direction":"outgoing","index":124963,"result_id":"cd71e3e0-3ee1-4fe0-b624-b62c85f7140c","status":200,"timestamp":"2026-05-22T11:58:57.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"ed419a39-0025-47cb-9c79-55a991529082","direction":"outgoing","index":124964,"result_id":"cd71e3e0-3ee1-4fe0-b624-b62c85f7140c","status":200,"timestamp":"2026-05-22T11:58:57.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"e5130da0-8bcf-4a51-9253-7d3331a807c9","direction":"outgoing","index":124965,"result_id":"cd71e3e0-3ee1-4fe0-b624-b62c85f7140c","status":200,"timestamp":"2026-05-22T11:58:57.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"a66fa1d3-e085-4610-b853-83acec287f12","direction":"outgoing","index":124966,"result_id":"cd71e3e0-3ee1-4fe0-b624-b62c85f7140c","status":200,"timestamp":"2026-05-22T11:58:57.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:57.692-04:00"},{"id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","created_at":"2026-05-22T11:58:58.597-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9afb36b5-fdfc-467b-b759-8593536c023a","direction":"outgoing","index":124967,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"83c8d249-c17a-42d9-8dcd-03e3694fb08a","direction":"outgoing","index":124968,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"f3cb1e2a-5ece-477c-94ae-269940f3b7e2","direction":"outgoing","index":124969,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ae53b62c-6d2d-4e3b-a02e-fd0dac00e520","direction":"outgoing","index":124970,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7c048123-8bfd-4ace-b8fd-e9664db9df42","direction":"outgoing","index":124971,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8fd6ae88-1d02-4e69-ac4c-40d1c1b6c31b","direction":"outgoing","index":124972,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"65dbecb3-2e38-40cc-91f9-4ed06986ced5","direction":"outgoing","index":124973,"result_id":"fb84b7d3-f72d-44a2-868b-7cdb911267ab","status":200,"timestamp":"2026-05-22T11:58:58.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:58.597-04:00"},{"id":"c7db820a-c7d8-44fe-9266-3d8c047851f4","created_at":"2026-05-22T11:58:59.211-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2c944aa9-e222-405d-902f-7353dff70d0e","direction":"outgoing","index":124974,"result_id":"c7db820a-c7d8-44fe-9266-3d8c047851f4","status":200,"timestamp":"2026-05-22T11:58:59.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"60b07a50-fea7-448c-884a-ad02c9715556","direction":"outgoing","index":124975,"result_id":"c7db820a-c7d8-44fe-9266-3d8c047851f4","status":200,"timestamp":"2026-05-22T11:58:59.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"23845154-0115-4ae8-8ff2-2c10cbc23a1f","direction":"outgoing","index":124976,"result_id":"c7db820a-c7d8-44fe-9266-3d8c047851f4","status":200,"timestamp":"2026-05-22T11:58:59.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:59.211-04:00"},{"id":"af2cfa5c-7224-4c7b-a45e-2687e234ec04","created_at":"2026-05-22T11:58:59.384-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7acbc31d-fa60-4014-80f8-d25c1499d78f","direction":"outgoing","index":124977,"result_id":"af2cfa5c-7224-4c7b-a45e-2687e234ec04","status":200,"timestamp":"2026-05-22T11:58:59.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:59.384-04:00"},{"id":"15107ac6-67a6-4091-ab61-c402037861d1","created_at":"2026-05-22T11:58:59.923-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2ba27c57-8db6-4333-92ae-d537f90373c8","direction":"outgoing","index":124978,"result_id":"15107ac6-67a6-4091-ab61-c402037861d1","status":200,"timestamp":"2026-05-22T11:58:59.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"506e6adc-b48d-400b-a8ef-8da47f4e7849","direction":"outgoing","index":124979,"result_id":"15107ac6-67a6-4091-ab61-c402037861d1","status":200,"timestamp":"2026-05-22T11:58:59.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"f7331f8e-4057-4e65-9928-ab9bc205317d","direction":"outgoing","index":124980,"result_id":"15107ac6-67a6-4091-ab61-c402037861d1","status":200,"timestamp":"2026-05-22T11:58:59.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:58:59.923-04:00"},{"id":"6441803f-349e-4c4d-899b-16fb0d3c6c10","created_at":"2026-05-22T11:59:02.676-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:02.676-04:00"},{"id":"730a17a4-3b31-4459-9f6e-52409901b796","created_at":"2026-05-22T11:59:02.733-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:02.733-04:00"},{"id":"815238ce-62ad-4cb4-9f0b-d7d8d91d4190","created_at":"2026-05-22T11:59:03.337-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9772e6d0-3c07-492d-b181-5b490bd1c5cb","direction":"outgoing","index":124981,"result_id":"815238ce-62ad-4cb4-9f0b-d7d8d91d4190","status":200,"timestamp":"2026-05-22T11:59:03.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:03.337-04:00"},{"id":"1cc71013-17b2-43fe-ab0b-6c05413cfbef","created_at":"2026-05-22T11:59:03.369-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:03.369-04:00"},{"id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","created_at":"2026-05-22T11:59:04.188-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d951b60d-897c-4407-8e15-b30351365698","direction":"outgoing","index":124982,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"92e3edaa-2eca-4d78-ae67-5a279a312703","direction":"outgoing","index":124983,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"56d1b743-e7e4-4510-bd3d-5b1f18b3f0a6","direction":"outgoing","index":124984,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"c2f6cd6c-0fd7-40ae-a544-cbb853ba8f09","direction":"outgoing","index":124985,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"0c8a9de3-8563-464c-ac29-ab31cde4cf64","direction":"outgoing","index":124986,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"b9a6be19-03d0-4fc7-8d6d-7fa3e24172c5","direction":"outgoing","index":124987,"result_id":"af6519a1-a3d5-4fa5-af5b-22ec806d71b7","status":200,"timestamp":"2026-05-22T11:59:04.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:04.188-04:00"},{"id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","created_at":"2026-05-22T11:59:05.037-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"77480521-312e-4ca4-bc39-7a991b677ef0","direction":"outgoing","index":124988,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"8570f2e5-70da-4f12-8b6d-3423332b3f56","direction":"outgoing","index":124989,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"bd1a3444-679e-4e0d-8323-19d740b8ab70","direction":"outgoing","index":124990,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"6fb91360-bc80-42b1-9e76-214ad396e442","direction":"outgoing","index":124991,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"6bbe209a-22e5-4144-838b-8b6aa46a15b1","direction":"outgoing","index":124992,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"bf203ee1-6924-4cd6-bc35-dcb08dcf0103","direction":"outgoing","index":124993,"result_id":"e3f6d946-83d9-45a7-ba2f-68da2e59e6de","status":200,"timestamp":"2026-05-22T11:59:05.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:05.037-04:00"},{"id":"f893365f-7dac-4039-af7b-c824a87c2bc0","created_at":"2026-05-22T11:59:09.096-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d59ba762-a19b-4acb-8d0a-01eb529467ae","direction":"outgoing","index":124994,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"c65990a6-c240-43d2-bb97-2debe03118a5","direction":"outgoing","index":124995,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"648857c0-e747-47d2-aaf1-5ddba4316af4","direction":"outgoing","index":124996,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b788321e-9cba-4b5f-8abc-6cc97957c481","direction":"outgoing","index":124997,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"345ea9d3-efd1-48e6-a0c4-b6471eb8c6b1","direction":"outgoing","index":124998,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"285ee9c4-4407-4ca2-a393-a8688470522c","direction":"outgoing","index":124999,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"7f78df25-be4f-4bcd-ae82-6c647c027df5","direction":"outgoing","index":125000,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47ccba08-be49-4d52-9378-1bc494129245","direction":"outgoing","index":125001,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c4d354ba-c74c-4361-9e2c-7d5cd97ce179","direction":"outgoing","index":125002,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c995690-5634-46e8-a251-dc46e39bcaab","direction":"outgoing","index":125003,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc539765-91ac-4e5d-ade7-7b4541141e98","direction":"outgoing","index":125004,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"445a9e18-3925-4eed-a567-c459317c2d31","direction":"outgoing","index":125005,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a03d1fe1-83d7-46af-8073-21a05da0a7b9","direction":"outgoing","index":125006,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8494b77a-2bfa-4347-a781-3d27190c08e3","direction":"outgoing","index":125007,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d4573bf9-306e-4bc3-ae74-46b32aa30f27","direction":"outgoing","index":125008,"result_id":"f893365f-7dac-4039-af7b-c824a87c2bc0","status":200,"timestamp":"2026-05-22T11:59:09.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:09.096-04:00"},{"id":"0acb30f3-2e23-499f-817e-ee4b4c843767","created_at":"2026-05-22T11:59:12.319-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"40e5e5a1-3041-4cc4-b714-e811431b7ce6","direction":"outgoing","index":125009,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"96a1f9e1-c63e-4698-9c98-dc902872125c","direction":"outgoing","index":125010,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"28c6dd8b-24b9-43d8-905a-d5816057248a","direction":"outgoing","index":125011,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"8be20224-522b-4548-bce2-3c0d830b6770","direction":"outgoing","index":125012,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"c819a14d-2979-4db5-81b4-5598e2948820","direction":"outgoing","index":125013,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99089f38-ebf8-41d9-a2b1-967dab23ad52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f899e22e-fd51-4ac0-9876-9a2e239f4f7e","direction":"outgoing","index":125014,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99089f38-ebf8-41d9-a2b1-967dab23ad52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f3d6dc5-4dd3-4e19-bfa9-063235553076","direction":"outgoing","index":125015,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99089f38-ebf8-41d9-a2b1-967dab23ad52\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a6c113e-44db-4224-9e92-760eba666961","direction":"outgoing","index":125016,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99089f38-ebf8-41d9-a2b1-967dab23ad52\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cb90d70a-06ff-4527-aa45-a348e3192677","direction":"outgoing","index":125017,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"4e93541c-8775-4267-a64d-d5eb0023ed3c","direction":"outgoing","index":125018,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46501fa3-6e33-4c5b-ad5b-423748057f46\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ebf0ae8-5e4a-42b2-a5b6-a504d4d0c652","direction":"outgoing","index":125019,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46501fa3-6e33-4c5b-ad5b-423748057f46\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"823f8462-c067-472b-b3e2-b813feaa6755","direction":"outgoing","index":125020,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46501fa3-6e33-4c5b-ad5b-423748057f46\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b08e3da-fc8b-4b33-8fc4-d4f2de1d6f49","direction":"outgoing","index":125021,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=46501fa3-6e33-4c5b-ad5b-423748057f46\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"06cf5790-106b-4b5d-9546-78b8566e0f6d","direction":"outgoing","index":125022,"result_id":"0acb30f3-2e23-499f-817e-ee4b4c843767","status":200,"timestamp":"2026-05-22T11:59:12.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:12.319-04:00"},{"id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","created_at":"2026-05-22T11:59:15.077-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bd8fe6e7-d7a0-4c84-ab46-a4cd41c2b548","direction":"outgoing","index":125023,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"5cbe29cb-6838-4c20-8f62-e5cbb4428231","direction":"outgoing","index":125024,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bdf28a68-88b4-44df-b685-f11c0e81f767","direction":"outgoing","index":125025,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52dbb1aa-fe72-4064-abce-67a955927368","direction":"outgoing","index":125026,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea07f9c7-118e-4f7e-9a10-549355391411","direction":"outgoing","index":125027,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"672dc555-4c83-4a34-8f98-75eeb5d6d18e","direction":"outgoing","index":125028,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ecf6f668-d270-4370-9c91-99b82c885bd9","direction":"outgoing","index":125029,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30b133f6-a114-4b8b-9486-d80570557965","direction":"outgoing","index":125030,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce745d04-e841-40ae-8189-ef0e0fea8c24","direction":"outgoing","index":125031,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"463d34e3-0578-4888-a6b1-95cd1ddaa4d0","direction":"outgoing","index":125032,"result_id":"1174ec96-6806-4ad1-8fb6-56ca0bdb35d4","status":200,"timestamp":"2026-05-22T11:59:15.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:15.077-04:00"},{"id":"cf8ae0b0-aba4-49be-b1ff-679c4f7eee4b","created_at":"2026-05-22T11:59:15.343-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"667864e3-97fe-4a22-9b1e-096a8284519d","direction":"outgoing","index":125033,"result_id":"cf8ae0b0-aba4-49be-b1ff-679c4f7eee4b","status":200,"timestamp":"2026-05-22T11:59:15.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:15.343-04:00"},{"id":"3f7abac9-58e4-4861-9e50-822efa5d5b13","created_at":"2026-05-22T11:59:15.777-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"890e993e-5f7e-42b5-90f8-c19f0f17a0a0","direction":"outgoing","index":125034,"result_id":"3f7abac9-58e4-4861-9e50-822efa5d5b13","status":200,"timestamp":"2026-05-22T11:59:15.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=85","verb":"get"},{"id":"1359699b-5d60-40a7-a233-721d2ea2f3b9","direction":"outgoing","index":125035,"result_id":"3f7abac9-58e4-4861-9e50-822efa5d5b13","status":200,"timestamp":"2026-05-22T11:59:15.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=355","verb":"get"},{"id":"4bfec772-e2b1-413c-b622-cdbb3c76fe6a","direction":"outgoing","index":125036,"result_id":"3f7abac9-58e4-4861-9e50-822efa5d5b13","status":200,"timestamp":"2026-05-22T11:59:15.826-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:15.777-04:00"},{"id":"abfc2017-c645-487b-bab4-528b86bae8f4","created_at":"2026-05-22T11:59:16.423-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:16.423-04:00"},{"id":"68a2aa50-70a1-4769-92dd-3515d2a0829c","created_at":"2026-05-22T11:59:16.439-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:16.439-04:00"},{"id":"e3b44950-7e7e-470c-b0c2-2f5850d220ca","created_at":"2026-05-22T11:59:16.445-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:16.445-04:00"},{"id":"dfa7a146-a55e-4d23-8fd3-ef5b26115f1e","created_at":"2026-05-22T11:59:16.448-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:16.448-04:00"},{"id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","created_at":"2026-05-22T11:59:17.172-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"321097d6-8487-4bd9-afc2-6d1b15b8c312","direction":"outgoing","index":125037,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"bf147bcf-63a5-4f2e-b4d0-c14d30754def","direction":"outgoing","index":125038,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"6da966c2-e8a0-4061-a7bb-288edaa399b6","direction":"outgoing","index":125039,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"b17f3dba-8351-470f-b4ff-4d04a0e03093","direction":"outgoing","index":125040,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"d25f12bc-30b5-49ac-9dde-8ae2de39b954","direction":"outgoing","index":125041,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"5df960a0-695a-4ee5-9e5d-897827a7ccc6","direction":"outgoing","index":125042,"result_id":"12134061-cb32-40d6-a5ff-f3072ea8d9fe","status":200,"timestamp":"2026-05-22T11:59:17.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:17.172-04:00"},{"id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","created_at":"2026-05-22T11:59:18.054-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e80aeff7-cf02-4c3a-b0ca-226864ff232b","direction":"outgoing","index":125043,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"b57229c8-08fc-4951-b3fb-2ec626452c94","direction":"outgoing","index":125044,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"76d9f999-8212-4876-9b33-e9b7077590b7","direction":"outgoing","index":125045,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"66c37fd3-ce58-47d3-ac0f-d4268bead9d3","direction":"outgoing","index":125046,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"8d3d8bbf-c942-4723-9040-80fa2262b25e","direction":"outgoing","index":125047,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"7f2f3edd-d951-49dd-be90-2ed47ef78924","direction":"outgoing","index":125048,"result_id":"58d21711-f186-4df8-bd22-3f05ee1b1fa9","status":200,"timestamp":"2026-05-22T11:59:18.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:18.054-04:00"},{"id":"8441684d-8ce7-4793-81fe-683d324e116e","created_at":"2026-05-22T11:59:20.480-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7c8da441-43e4-4bf4-8295-b1b9df3809f2","direction":"outgoing","index":125049,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"d4b1cbc3-625f-46e8-852c-37d11c10ed84","direction":"outgoing","index":125050,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2863a09-8c39-43e6-8c7e-9d256ebe60ff","direction":"outgoing","index":125051,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e30d6b3-7fc3-4e57-bcce-cdeaef3c3532","direction":"outgoing","index":125052,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed67ae7b-032f-4547-bce9-4fe2e5bf7560","direction":"outgoing","index":125053,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c9183fc-e576-489a-be1d-d418b51c70cb","direction":"outgoing","index":125054,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"c43aff3c-d447-473b-b3c2-a498c58ee5d9","direction":"outgoing","index":125055,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71d40b96-e8da-4bf4-8b12-a6b0086e4c71","direction":"outgoing","index":125056,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ac3cdd0-29bb-4798-a94b-ceb03830f619","direction":"outgoing","index":125057,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"84ffc3e1-7cc5-4414-8161-17d579d7c885","direction":"outgoing","index":125058,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e04b48af-6828-4e01-92d6-d2096b6428f4","direction":"outgoing","index":125059,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"880afbca-a1ad-460b-aad7-cf26ed31f1a9","direction":"outgoing","index":125060,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed5ce9e6-8428-4d74-b75f-11e911afdcc8","direction":"outgoing","index":125061,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c8ea4841-632e-4555-b7f2-728717416f9f","direction":"outgoing","index":125062,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2cd6f754-e525-436d-b043-ffeebc130d00","direction":"outgoing","index":125063,"result_id":"8441684d-8ce7-4793-81fe-683d324e116e","status":200,"timestamp":"2026-05-22T11:59:20.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:20.480-04:00"},{"id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","created_at":"2026-05-22T11:59:23.920-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"74a593c9-9ff3-48b4-998f-cdc31c8e51e9","direction":"outgoing","index":125064,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:23.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"2fa08e6f-7b84-4fd5-be4a-0b944a5f5d15","direction":"outgoing","index":125065,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:23.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"63ea4178-1c04-4691-ab16-a77085bbbbac","direction":"outgoing","index":125066,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:23.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"5a356cc0-853a-4ec7-b375-7c87205acdb9","direction":"outgoing","index":125067,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:23.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"825dcc87-97d1-4e95-b141-bcf176fe2d2e","direction":"outgoing","index":125068,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:23.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ea885a6d-9bbf-4a16-9eb3-e40a781718e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"964fba34-5112-498f-9fc5-019edbc5a7e0","direction":"outgoing","index":125069,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.006-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ea885a6d-9bbf-4a16-9eb3-e40a781718e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9aa8cd16-44b4-4a2d-a052-7925e7e812c9","direction":"outgoing","index":125070,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.019-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ea885a6d-9bbf-4a16-9eb3-e40a781718e7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ea6b039-7a9a-4c75-a3ce-052d2b732a5e","direction":"outgoing","index":125071,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ea885a6d-9bbf-4a16-9eb3-e40a781718e7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"702803c3-ae9e-4869-ba34-fbaafadd56fc","direction":"outgoing","index":125072,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"3dc32745-ca55-455a-b79c-d55d504da2c7","direction":"outgoing","index":125073,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=beb85cc1-e614-409c-9488-71bee2a35642\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c97046b0-e11f-4fa1-a1e4-506ce7380b78","direction":"outgoing","index":125074,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=beb85cc1-e614-409c-9488-71bee2a35642\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6174535-22ab-4be3-9ef6-2432c079a161","direction":"outgoing","index":125075,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=beb85cc1-e614-409c-9488-71bee2a35642\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b253192-21cd-4db8-9429-dbeec8a0d758","direction":"outgoing","index":125076,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=beb85cc1-e614-409c-9488-71bee2a35642\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e54f153-38cf-4159-8278-8251ac31d31f","direction":"outgoing","index":125077,"result_id":"e076b7a3-6e90-4ebf-b9d7-6449ed813f6f","status":200,"timestamp":"2026-05-22T11:59:24.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:23.920-04:00"},{"id":"07647124-2328-40bf-adda-14dde68356e2","created_at":"2026-05-22T11:59:25.640-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4a492422-88ea-428d-9698-bd529dd9bbb7","direction":"outgoing","index":125078,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"5d47ef3c-5479-4562-be52-ff076e53cfdf","direction":"outgoing","index":125079,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7780aa82-b34a-4f24-a085-2ad5db83f7d5","direction":"outgoing","index":125080,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a3ae835-6979-4fbc-9c75-096a9c7742e2","direction":"outgoing","index":125081,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee85aba0-e8bf-4f95-a6ac-b826b5c04908","direction":"outgoing","index":125082,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ead1a6d-d051-43cf-8c2b-c660aeb6e939","direction":"outgoing","index":125083,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"75a3951d-bab8-4828-b614-373da203cfce","direction":"outgoing","index":125084,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b3f3ba8-efd0-421d-91ba-385c8d56c907","direction":"outgoing","index":125085,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fd48bbe-02ee-4478-b4a4-c096b2b02686","direction":"outgoing","index":125086,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"347f4cd1-87ad-4067-af65-bb36fcd3f028","direction":"outgoing","index":125087,"result_id":"07647124-2328-40bf-adda-14dde68356e2","status":200,"timestamp":"2026-05-22T11:59:25.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:25.640-04:00"},{"id":"f2c58c45-045e-45a5-a084-3b110f5d18b0","created_at":"2026-05-22T11:59:25.911-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1d4f581c-3f67-4e34-a211-86ae68c7d877","direction":"outgoing","index":125088,"result_id":"f2c58c45-045e-45a5-a084-3b110f5d18b0","status":200,"timestamp":"2026-05-22T11:59:25.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:25.911-04:00"},{"id":"fac0db9b-230a-4d62-bd6b-f6b98d90610e","created_at":"2026-05-22T11:59:26.306-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8ff3aac4-8f26-431d-88a1-d354aa452b71","direction":"outgoing","index":125089,"result_id":"fac0db9b-230a-4d62-bd6b-f6b98d90610e","status":200,"timestamp":"2026-05-22T11:59:26.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=85","verb":"get"},{"id":"f6da66eb-5dd8-4e73-bc8e-6a5f759628e5","direction":"outgoing","index":125090,"result_id":"fac0db9b-230a-4d62-bd6b-f6b98d90610e","status":200,"timestamp":"2026-05-22T11:59:26.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=355","verb":"get"},{"id":"88774ad4-a56a-49fe-be4f-032202adfa3e","direction":"outgoing","index":125091,"result_id":"fac0db9b-230a-4d62-bd6b-f6b98d90610e","status":200,"timestamp":"2026-05-22T11:59:26.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:26.306-04:00"},{"id":"c2dfd49a-d831-4420-8822-e13e532265d8","created_at":"2026-05-22T11:59:26.382-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:26.382-04:00"},{"id":"cc83e0ce-f44a-47ae-b47a-9a5bdf5c08fa","created_at":"2026-05-22T11:59:26.386-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:26.386-04:00"},{"id":"702d0466-8a96-4ba4-acb6-09b7835294f9","created_at":"2026-05-22T11:59:26.388-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:26.388-04:00"},{"id":"88c8be2e-507f-4892-8e7a-231fe48c36de","created_at":"2026-05-22T11:59:26.390-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:26.390-04:00"},{"id":"c090bb86-8856-4fa0-88c0-095c219b7101","created_at":"2026-05-22T11:59:27.183-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5f80965e-5dad-473e-8a49-0925e041967b","direction":"outgoing","index":125092,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"cfa8cf69-5e37-43a6-a818-94ba851df316","direction":"outgoing","index":125093,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"12e83cce-85b5-4bc6-bcc4-d182b12a2e53","direction":"outgoing","index":125094,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"876cf048-211b-428d-84cd-f0e960b326df","direction":"outgoing","index":125095,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"e4ba210f-91c7-4311-a395-50ee7a4ce188","direction":"outgoing","index":125096,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"0671321b-99a7-438b-8327-7eda5fa2b7c3","direction":"outgoing","index":125097,"result_id":"c090bb86-8856-4fa0-88c0-095c219b7101","status":200,"timestamp":"2026-05-22T11:59:27.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:27.183-04:00"},{"id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","created_at":"2026-05-22T11:59:28.058-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"721e440b-47bb-4d28-91e6-d9cd4672649b","direction":"outgoing","index":125098,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d9f1bb26-8945-44e3-b249-6bfee4d75b2a","direction":"outgoing","index":125099,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"68c891d8-d384-49f8-a7a9-5636ffe5894c","direction":"outgoing","index":125100,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9f140406-b05b-4d97-abf8-3ef207c02cf0","direction":"outgoing","index":125101,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"efa6bb10-fe31-4df6-9376-e2dd42bc7234","direction":"outgoing","index":125102,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0da511c5-8983-4e11-ab52-be7ca5df6523","direction":"outgoing","index":125103,"result_id":"be241e35-9b67-4c4b-aa76-6d039fd5a128","status":200,"timestamp":"2026-05-22T11:59:28.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:28.058-04:00"},{"id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","created_at":"2026-05-22T11:59:30.552-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c3aa8a42-04da-46d8-9a67-292c4eb628c3","direction":"outgoing","index":125104,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"4d8ab722-e35e-4624-8ce3-8cf657002768","direction":"outgoing","index":125105,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44f5b03d-10e1-4679-b316-eb3d3bb6c70a","direction":"outgoing","index":125106,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1edacade-0817-4774-8e66-d252590055aa","direction":"outgoing","index":125107,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1266eb0-da25-4e1b-9dc4-e64a0a0c4005","direction":"outgoing","index":125108,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56706daa-879e-46ce-bc09-89c1ce1e868a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9a6936f-6c04-4534-9504-be43ca6361dd","direction":"outgoing","index":125109,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"011c36e3-f5ec-489e-bde6-54c3b93c06de","direction":"outgoing","index":125110,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d0fa837-9032-4650-85fb-4478923bf2f3","direction":"outgoing","index":125111,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"489216fc-8114-49da-bdcb-2195f579155a","direction":"outgoing","index":125112,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8590f38d-5536-4675-9ead-108178e3a2b5","direction":"outgoing","index":125113,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebda7089-c896-420e-a49b-5d08a55520c6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"27111800-da57-4a4a-8fd7-c30dbbc5a7a9","direction":"outgoing","index":125114,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ff6a637e-61d8-4338-b084-9a618e54cd57","direction":"outgoing","index":125115,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bb9f0a18-18cc-4e20-9ec6-6c11b2eea28d","direction":"outgoing","index":125116,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b9de814-ee7d-4ae1-875e-6c062f8b951e","direction":"outgoing","index":125117,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5811c006-1bf8-4575-9c63-cfa1446863d1","direction":"outgoing","index":125118,"result_id":"db647ecf-beb5-436d-b73f-67f7d86e4f09","status":200,"timestamp":"2026-05-22T11:59:30.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=263947c6-d97d-4244-a020-01ebdfc5efc7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:30.552-04:00"},{"id":"638300a6-dd63-40c9-a597-772f6819ba3f","created_at":"2026-05-22T11:59:33.587-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e9e07ce6-87b9-4136-a70c-568968d55b36","direction":"outgoing","index":125119,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8a1ba516-3cfc-4c30-961b-db6ea26dde92","direction":"outgoing","index":125120,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"db209053-86e9-489d-b45b-93ee0d375ad4","direction":"outgoing","index":125121,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"813989a7-93be-4fe9-af96-21f7f0fa16a2","direction":"outgoing","index":125122,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"01edf7e9-fa73-40d7-914d-0f3436393c46","direction":"outgoing","index":125123,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3a6d7a12-0a04-44fc-82a3-85c953ce078e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"19967e58-1294-4150-8195-8f73104591a1","direction":"outgoing","index":125124,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3a6d7a12-0a04-44fc-82a3-85c953ce078e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf1e8d74-b545-436e-a7a2-50a26b05055c","direction":"outgoing","index":125125,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.670-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3a6d7a12-0a04-44fc-82a3-85c953ce078e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93e2a356-9959-4e98-a57e-afa7aed7506d","direction":"outgoing","index":125126,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9c7e5fb1-e96f-49f2-98dc-820e16729270","direction":"outgoing","index":125127,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=968a7416-853a-403e-b6fd-26541d07f243\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8004c8f2-d635-40d8-8d4d-29fc8ffba070","direction":"outgoing","index":125128,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=968a7416-853a-403e-b6fd-26541d07f243\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"338e313b-918c-4ef6-bff2-703276a587cb","direction":"outgoing","index":125129,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=968a7416-853a-403e-b6fd-26541d07f243\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cabfd769-9760-43f5-ba12-b767c92f92fa","direction":"outgoing","index":125130,"result_id":"638300a6-dd63-40c9-a597-772f6819ba3f","status":200,"timestamp":"2026-05-22T11:59:33.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:33.587-04:00"},{"id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","created_at":"2026-05-22T11:59:35.277-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"65a36e50-4a65-40fc-97d0-2fb20f28e48a","direction":"outgoing","index":125131,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"5448f079-19fb-4da5-b7ee-022890862725","direction":"outgoing","index":125132,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"335ed941-6638-4cff-9504-1cbc9c14f0cc","direction":"outgoing","index":125133,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"561dd8fe-14c3-4aa2-bb5f-56f859276c1b","direction":"outgoing","index":125134,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.395-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a15d0049-3b1d-44b0-8cab-d43447cfb438","direction":"outgoing","index":125135,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc974686-008e-4451-a548-c70827b15c2c","direction":"outgoing","index":125136,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"7dc06f32-c17c-4976-8d95-adcd3b8296a4","direction":"outgoing","index":125137,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62835bfe-0ad4-4ecf-b19a-9d13a92a3734","direction":"outgoing","index":125138,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ded2069f-a500-4b6a-8634-a5ab21ad7909","direction":"outgoing","index":125139,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c60b94da-15f6-4444-94e2-f47096c25b98","direction":"outgoing","index":125140,"result_id":"13251a96-a528-4db6-9fdc-9ac5888c9dd8","status":200,"timestamp":"2026-05-22T11:59:35.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=85394d5e-e42b-416c-a62f-ece7872e718d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:35.277-04:00"},{"id":"c58f1cc4-5c54-4d0c-afe3-7328f3be372f","created_at":"2026-05-22T11:59:35.594-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"034ff831-f0ea-4e7f-9b92-36a3d58ac544","direction":"outgoing","index":125141,"result_id":"c58f1cc4-5c54-4d0c-afe3-7328f3be372f","status":200,"timestamp":"2026-05-22T11:59:35.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/1c54dcaf-6414-4365-95f9-685b5e405e46","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:35.594-04:00"},{"id":"905de3b0-e671-4b75-bb84-cd6abb801cb7","created_at":"2026-05-22T11:59:36.010-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"623a0c31-1558-4334-9ad7-4aa6ea0d9224","direction":"outgoing","index":125142,"result_id":"905de3b0-e671-4b75-bb84-cd6abb801cb7","status":200,"timestamp":"2026-05-22T11:59:36.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=85","verb":"get"},{"id":"055b0539-a2fd-49c9-8947-0c2604821988","direction":"outgoing","index":125143,"result_id":"905de3b0-e671-4b75-bb84-cd6abb801cb7","status":200,"timestamp":"2026-05-22T11:59:36.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=355","verb":"get"},{"id":"e60951dc-94b3-4766-ac59-609058df484f","direction":"outgoing","index":125144,"result_id":"905de3b0-e671-4b75-bb84-cd6abb801cb7","status":200,"timestamp":"2026-05-22T11:59:36.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:36.010-04:00"},{"id":"f7dd8b6b-dadc-4ab9-b902-35cdec9d47ef","created_at":"2026-05-22T11:59:42.239-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:42.239-04:00"},{"id":"2dd55902-67a7-40a0-bf10-4813b32958bb","created_at":"2026-05-22T11:59:42.259-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:42.259-04:00"},{"id":"62e4dad2-2341-4342-93be-7ff8d1513c7d","created_at":"2026-05-22T11:59:42.267-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:42.267-04:00"},{"id":"dae9a0bb-35ef-43a2-a607-f87af2cff8a1","created_at":"2026-05-22T11:59:42.269-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:42.269-04:00"},{"id":"f0acab23-810b-43c9-a06f-279230ce2bd2","created_at":"2026-05-22T11:59:43.107-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bd27985e-20fb-4758-97c4-f2bdbc3f8da7","direction":"outgoing","index":125145,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"2318cc7d-e900-437a-acd2-66270c2f774e","direction":"outgoing","index":125146,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"4724064e-0843-4f41-96c6-fa5166e01efe","direction":"outgoing","index":125147,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"8ce130c1-d3b2-42fd-9710-652cb64badfc","direction":"outgoing","index":125148,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"cefe8093-54f6-40df-b412-543ff35a0e64","direction":"outgoing","index":125149,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.179-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"7b2e113b-f4e7-47b8-98a2-571f46f7dba6","direction":"outgoing","index":125150,"result_id":"f0acab23-810b-43c9-a06f-279230ce2bd2","status":200,"timestamp":"2026-05-22T11:59:43.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:43.107-04:00"},{"id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","created_at":"2026-05-22T11:59:43.928-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c468bad9-49fe-4a8a-9601-9c6801fb8ca5","direction":"outgoing","index":125151,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:43.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"690ba6e3-4cd1-42e2-96f7-e9c17d8df757","direction":"outgoing","index":125152,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:43.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e7496972-db92-4943-93c0-92362753676d","direction":"outgoing","index":125153,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:43.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"7c1b3ff1-369b-4e5f-8212-1bc86030d976","direction":"outgoing","index":125154,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:43.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"444b47b3-5a97-45c9-9759-cdd47d286f4d","direction":"outgoing","index":125155,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:43.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f1814faf-061a-484f-b250-5b187f9316f6","direction":"outgoing","index":125156,"result_id":"8fecca3f-b2c1-4132-b32a-7f6250f4aa52","status":200,"timestamp":"2026-05-22T11:59:44.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:43.928-04:00"},{"id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","created_at":"2026-05-22T11:59:47.120-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3e9730bd-b7ae-4854-ad9f-4b0c5b6998be","direction":"outgoing","index":125157,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"fb8fa7bb-60aa-47ee-b82a-3dc6bea26d8b","direction":"outgoing","index":125158,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5204e752-cc89-4c70-81cb-39d53a9a6b1a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5484f76-cee1-4877-9215-37c71b8ae634","direction":"outgoing","index":125159,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5204e752-cc89-4c70-81cb-39d53a9a6b1a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"66fea4de-2114-4c6a-b01f-f657b9ae250a","direction":"outgoing","index":125160,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7a99f058-1341-4e84-a77c-cc88e3fdc4db","direction":"outgoing","index":125161,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05ea70b9-721c-4e1f-85ed-fd6e3f1cb841\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"570b888b-c6fe-4501-ab6f-269f8bad91cc","direction":"outgoing","index":125162,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05ea70b9-721c-4e1f-85ed-fd6e3f1cb841\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cc8afd97-2aac-4886-ae07-ec3c7c2467c1","direction":"outgoing","index":125163,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"53b44062-65d9-427e-8895-588199dde5fe","direction":"outgoing","index":125164,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f6cbff5-2af1-4c86-81fc-72d38dce1463\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f068c68-d207-45c8-8d72-bb1bb1014de4","direction":"outgoing","index":125165,"result_id":"0e418aa2-77f7-42d6-ba1d-7a2459ef215b","status":200,"timestamp":"2026-05-22T11:59:47.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f6cbff5-2af1-4c86-81fc-72d38dce1463\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:47.120-04:00"},{"id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","created_at":"2026-05-22T11:59:50.837-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e07da0f0-d353-4b89-b678-a50527072870","direction":"outgoing","index":125166,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"45a98552-e1e6-4ac2-ad8e-081fb2a3e564","direction":"outgoing","index":125167,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"57692da9-15ad-400d-8221-8375b38feac6","direction":"outgoing","index":125168,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d0a09955-6455-489a-ae0d-4c13b48909f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09bb51fb-02cb-4af7-85cc-f7909419e396","direction":"outgoing","index":125169,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e09f36e4-a859-4bc4-a8c5-45a97895db80","direction":"outgoing","index":125170,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ce6b306-4292-48fa-93ca-bd7417ed377b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dc2ad17-4492-477f-bec1-b6757592b9c7","direction":"outgoing","index":125171,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2e6f87aa-5cad-48e6-a2c9-5e15373bcde0","direction":"outgoing","index":125172,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=16d30466-9fee-4b2a-bac4-668bd8d8cfb5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"02e2cc23-8f4b-409f-949f-890adcb22f22","direction":"outgoing","index":125173,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"921afb33-de50-4fde-b036-bbfe18d7d595","direction":"outgoing","index":125174,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:50.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=113b1d1f-7d91-4d9a-a6fc-ae498f4be2cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"101a8375-931b-4018-bcff-57926f824ab8","direction":"outgoing","index":125175,"result_id":"60f4aaaf-e0c6-4a12-941b-1beb773e7f57","status":200,"timestamp":"2026-05-22T11:59:51.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:50.837-04:00"},{"id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","created_at":"2026-05-22T11:59:53.021-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1d7528ea-759b-4429-806f-ace7b881446c","direction":"outgoing","index":125176,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"916cd1b7-6648-44cc-857a-53b0945ce1bf","direction":"outgoing","index":125177,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=199b7f54-eec3-4b37-bd9c-a53134db46cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9ffcb9-4a03-4103-aa86-881fabf4e169","direction":"outgoing","index":125178,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=199b7f54-eec3-4b37-bd9c-a53134db46cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c11751da-b2b4-4cac-a127-17add3e795f3","direction":"outgoing","index":125179,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"4b54c5af-2a87-401b-88da-2cb65b3e3f09","direction":"outgoing","index":125180,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00fdd7e0-f9b4-4fb7-bb66-18217e291931\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65aa48d8-9649-43a8-a62b-ee498975f360","direction":"outgoing","index":125181,"result_id":"d6f5a266-1239-44e7-8ea0-f483b6c53cb0","status":200,"timestamp":"2026-05-22T11:59:53.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00fdd7e0-f9b4-4fb7-bb66-18217e291931\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:53.021-04:00"},{"id":"6d5795ac-1652-44d3-a2e7-e72253bae511","created_at":"2026-05-22T11:59:53.228-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"11483c34-5557-4386-acf1-cdfb452846b1","direction":"outgoing","index":125182,"result_id":"6d5795ac-1652-44d3-a2e7-e72253bae511","status":200,"timestamp":"2026-05-22T11:59:53.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:53.228-04:00"},{"id":"efd91851-c2b4-436f-94a3-545a49c7fbe3","created_at":"2026-05-22T11:59:53.663-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c94b2fb1-b19c-43c5-9422-e51366f399f9","direction":"outgoing","index":125183,"result_id":"efd91851-c2b4-436f-94a3-545a49c7fbe3","status":200,"timestamp":"2026-05-22T11:59:53.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85","verb":"get"},{"id":"b24e2d10-dd71-44ca-831b-a186d532c55c","direction":"outgoing","index":125184,"result_id":"efd91851-c2b4-436f-94a3-545a49c7fbe3","status":200,"timestamp":"2026-05-22T11:59:53.684-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355","verb":"get"},{"id":"68772650-ab69-4219-aa7d-3a69d5f27a87","direction":"outgoing","index":125185,"result_id":"efd91851-c2b4-436f-94a3-545a49c7fbe3","status":200,"timestamp":"2026-05-22T11:59:53.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:53.663-04:00"},{"id":"cf8fd708-2a65-42da-aff8-78c806aca094","created_at":"2026-05-22T11:59:54.413-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:54.413-04:00"},{"id":"ea818c07-f26a-48a3-8649-58d2815630c8","created_at":"2026-05-22T11:59:54.440-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:54.440-04:00"},{"id":"bc417d0b-4766-4180-a55c-11e66046e361","created_at":"2026-05-22T11:59:54.446-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:54.446-04:00"},{"id":"f75d92ad-2c4d-4e63-851c-678935e161df","created_at":"2026-05-22T11:59:54.448-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T11:59:54.448-04:00"},{"id":"08de9ec6-ee17-4930-9d49-847792e5d167","created_at":"2026-05-22T12:00:04.289-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b397926f-8f69-4f8b-ad96-fc6e76a43fa3","direction":"outgoing","index":125186,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"d69ac95a-37fb-4246-933f-39a6cb90d133","direction":"outgoing","index":125187,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"130a021e-399d-4998-86bf-bb4b3cc1134b","direction":"outgoing","index":125188,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"f138c979-b9ff-4d6c-906f-e011524e206a","direction":"outgoing","index":125189,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"9e710f80-9ff4-45d6-b5d0-309bceda8920","direction":"outgoing","index":125190,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"2ae57d6b-1073-4109-bd8a-65fb65f6d43a","direction":"outgoing","index":125191,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"a416a750-a550-443d-a4ba-2964bf12a570","direction":"outgoing","index":125192,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"00e3bc7c-9049-4b6f-892a-e8517b37f7f4","direction":"outgoing","index":125193,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"bc07b0c1-d13b-47ea-b4dc-15ea2f93e00e","direction":"outgoing","index":125194,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.451-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da7d06be-20cf-4189-8ac0-608944265e22","direction":"outgoing","index":125195,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6aa204d1-5233-4220-b1e1-10ed4b79f4b3","direction":"outgoing","index":125196,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e06c176-e028-4491-8a60-b22568492453","direction":"outgoing","index":125197,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e963841-251d-46ce-a19e-226df866206b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"984d3e84-1ef9-469e-adf0-5cce9ab0c08d","direction":"outgoing","index":125198,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"a0659072-64ac-4313-806c-4bb0c0260e17","direction":"outgoing","index":125199,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"bc3cf578-a4d2-4c63-8a73-790e5a891c8c","direction":"outgoing","index":125200,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"0095b851-8adb-491b-8380-90cc8517ab41","direction":"outgoing","index":125201,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"79acbf49-9181-46af-9f34-1ab34a92ca85","direction":"outgoing","index":125202,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"e78d2093-c18a-4d72-a1c1-ba294300b72e","direction":"outgoing","index":125203,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"141c2092-1b32-4a87-9921-667fca044a1d","direction":"outgoing","index":125204,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"b50cfb8f-7fdf-4401-a0f5-e19da903d45e","direction":"outgoing","index":125205,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"d742ecca-9467-42f6-85d5-3f53303ec8cd","direction":"outgoing","index":125206,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"a9909e13-773f-4ce5-ab01-1d9ea3591340","direction":"outgoing","index":125207,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"de82a5b2-4edf-4764-92c4-38ad7ab18231","direction":"outgoing","index":125208,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"6510bffe-d5a8-412e-91ef-b4220b15110e","direction":"outgoing","index":125209,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"abb49bba-7ff3-4e1c-8eb5-662ce9705a3a","direction":"outgoing","index":125210,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"20725080-a81b-4d0f-af21-97f1402239b8","direction":"outgoing","index":125211,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.684-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"01375dbf-a2cc-4c09-a5de-966babd2f054","direction":"outgoing","index":125212,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5ca4826-afbd-4339-b0e2-c9cb970bf93f","direction":"outgoing","index":125213,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9cba95d1-63ec-445d-b099-e071542d732d","direction":"outgoing","index":125214,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ddeada3-8341-44c3-a5df-5b1bfe1a796f","direction":"outgoing","index":125215,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f040da87-bcce-43f1-b317-d0c351ccc06d","direction":"outgoing","index":125216,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c28ddb2d-1218-424e-846e-7f6ce38ff90f","direction":"outgoing","index":125217,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85909982-a2f2-4431-838f-23ccc5cdb125","direction":"outgoing","index":125218,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6357ee30-4093-4f87-b4e5-391c2aa4107d","direction":"outgoing","index":125219,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f5d9a5c-e53c-4590-a8b1-c2c8e8038d39\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d42d7c0-399b-478d-b48d-3a9ba538b5c6","direction":"outgoing","index":125220,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"9fdd0663-0b90-4b99-a163-16fa233c8c7d","direction":"outgoing","index":125221,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=199b7f54-eec3-4b37-bd9c-a53134db46cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf45655e-06cc-4877-aab8-25755cff0a7d","direction":"outgoing","index":125222,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=199b7f54-eec3-4b37-bd9c-a53134db46cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ae8da30-f9e1-4b0e-9099-45c383774c29","direction":"outgoing","index":125223,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"a4b9268c-e592-4770-979c-4fc4de43e28d","direction":"outgoing","index":125224,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"ba526e06-ae19-467e-a0f0-1e2c65f77e16","direction":"outgoing","index":125225,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"f924237b-f5b5-4187-9c4f-3c0b41c6f45f","direction":"outgoing","index":125226,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"feba74b1-fc88-41e9-9b79-67a1c60d8867","direction":"outgoing","index":125227,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"c3fb3044-c653-46fe-97b9-d0c810c01ae0","direction":"outgoing","index":125228,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"e0bf441b-217c-4c09-92fd-de9bc0963978","direction":"outgoing","index":125229,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"20dbb43f-2565-43d9-baf7-ab85672cd056","direction":"outgoing","index":125230,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"69a77cc7-9d09-473a-9a76-00f5ec4c940b","direction":"outgoing","index":125231,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"e20f10f2-59e8-47c8-8bc5-b7a0d41e55ea","direction":"outgoing","index":125232,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"bd51f5a8-3ccf-4df9-bb4b-1344a0158bc2","direction":"outgoing","index":125233,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"40d4b8bf-6e0f-4ead-82f0-4697ccd45b96","direction":"outgoing","index":125234,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:04.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"850cc57f-f52a-4e25-9d6b-98b90a4570fb","direction":"outgoing","index":125235,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"72ade5e1-83eb-4aa1-b293-003627802b79","direction":"outgoing","index":125236,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.013-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"f0810b0c-1751-48a3-9fa4-08af2b70434a","direction":"outgoing","index":125237,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"c8920c49-befe-4b6f-a7b3-bfacb60d4902","direction":"outgoing","index":125238,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"a5d6af26-70fa-4984-8154-030ce41723bb","direction":"outgoing","index":125239,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"84249a18-5d18-4c3c-b310-b18e56c7f141","direction":"outgoing","index":125240,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"e500be44-7eb5-4e50-a393-115569b89b5b","direction":"outgoing","index":125241,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"5a5eccab-4d8b-4252-b625-0d395581bf82","direction":"outgoing","index":125242,"result_id":"08de9ec6-ee17-4930-9d49-847792e5d167","status":200,"timestamp":"2026-05-22T12:00:05.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:04.289-04:00"},{"id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","created_at":"2026-05-22T12:00:06.064-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e73f1739-a931-4987-8f6f-0f18ae8c62f6","direction":"outgoing","index":125243,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"2addc244-fefd-4195-80c1-e488f3c48934","direction":"outgoing","index":125244,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"619c8401-a371-4369-9d0d-dc1482dab7e3","direction":"outgoing","index":125245,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"a101e4c3-df40-4a56-a733-8930b5d92e50","direction":"outgoing","index":125246,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e0088a0b-0db0-4407-8d75-985454c86a0b","direction":"outgoing","index":125247,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d041aeac-e216-42c5-94b9-43abaf17501f","direction":"outgoing","index":125248,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"0db8792d-6621-4ffd-a1ad-194fca68fe01","direction":"outgoing","index":125249,"result_id":"feabf37f-a2e5-42f3-9bff-b59f15e07d82","status":200,"timestamp":"2026-05-22T12:00:06.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:06.064-04:00"},{"id":"a418f761-8a2e-41d8-8ccb-38a952506868","created_at":"2026-05-22T12:00:08.728-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e4fe7898-cd09-4ea6-b840-eb79355da220","direction":"outgoing","index":125250,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"cb19405b-a197-4adb-8069-d376a83c187b","direction":"outgoing","index":125251,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"f2cebbad-1b28-435d-9f8d-697353688b79","direction":"outgoing","index":125252,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"806f9ba7-b6f8-41ae-839c-ed1611a3d544","direction":"outgoing","index":125253,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1557eb23-8561-4001-a657-937ba39119a3","direction":"outgoing","index":125254,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a62f18a-04b6-4020-b59b-63db5668b927","direction":"outgoing","index":125255,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a88e393b-abe8-42ea-8fd0-b9247eb61c60","direction":"outgoing","index":125256,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"553b32e9-07e7-414d-946d-a8cfd68a0ab9","direction":"outgoing","index":125257,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.845-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64e2acac-c881-47e6-acaf-f05a9454c982","direction":"outgoing","index":125258,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6fccf9f-059a-4af8-a6e8-8f03893aad1d","direction":"outgoing","index":125259,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9da183ab-a261-4051-a01c-ef217631f866","direction":"outgoing","index":125260,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c9fefb3c-5703-41bd-b8fb-54dc7d8b9eba","direction":"outgoing","index":125261,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ed2721d-472f-4c78-a6d0-9974f7b255d6\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26788eda-2662-4142-8c08-873805d402f9","direction":"outgoing","index":125262,"result_id":"a418f761-8a2e-41d8-8ccb-38a952506868","status":200,"timestamp":"2026-05-22T12:00:08.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:08.728-04:00"},{"id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","created_at":"2026-05-22T12:00:09.844-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"29712a67-9a1c-4803-88c1-c019aff64ee3","direction":"outgoing","index":125263,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f430515b-b5c7-407f-9445-7278278679c9","direction":"outgoing","index":125264,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"39da8ba3-1fe3-4561-9f2d-4934d22e7f9f","direction":"outgoing","index":125265,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"19ecf6a8-71b4-4471-a84c-760b85dc8d3f","direction":"outgoing","index":125266,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"7da30f32-e8a6-43e1-8b7e-897d6deb32c5","direction":"outgoing","index":125267,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"98927f25-6d63-49a4-8430-037df5a2b69b","direction":"outgoing","index":125268,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"1f1f4d74-9b69-409f-8c95-3c351cb30655","direction":"outgoing","index":125269,"result_id":"828d4239-7e2d-443d-8cd1-aa9b8bedc71e","status":200,"timestamp":"2026-05-22T12:00:09.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:09.844-04:00"},{"id":"114b48e1-8a58-4906-b54f-6cfa4ace697a","created_at":"2026-05-22T12:00:10.455-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dc8c6c65-0aa8-4316-afe9-7b4166f78ad7","direction":"outgoing","index":125270,"result_id":"114b48e1-8a58-4906-b54f-6cfa4ace697a","status":200,"timestamp":"2026-05-22T12:00:10.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"ebe072b1-b5bf-4801-833a-190b0d0f7f04","direction":"outgoing","index":125271,"result_id":"114b48e1-8a58-4906-b54f-6cfa4ace697a","status":200,"timestamp":"2026-05-22T12:00:10.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"a3a2accc-4143-4e14-8ade-3ad26e65dd64","direction":"outgoing","index":125272,"result_id":"114b48e1-8a58-4906-b54f-6cfa4ace697a","status":200,"timestamp":"2026-05-22T12:00:10.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:10.455-04:00"},{"id":"c4723d82-18e1-4c6b-839e-9ef0b93d99e4","created_at":"2026-05-22T12:00:10.616-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83d643d9-f230-4c5f-8554-a22e5606bd69","direction":"outgoing","index":125273,"result_id":"c4723d82-18e1-4c6b-839e-9ef0b93d99e4","status":200,"timestamp":"2026-05-22T12:00:10.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:10.616-04:00"},{"id":"a771e6bd-89d1-4e23-b75e-4f1713341029","created_at":"2026-05-22T12:00:21.307-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"aeca3dad-7651-47f6-b78b-a416243343f4","direction":"outgoing","index":125274,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=85","verb":"get"},{"id":"7040108c-4e7b-40d9-8d08-b75808af4c3a","direction":"outgoing","index":125275,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=85","verb":"get"},{"id":"6078f528-1017-4a4c-b420-4f71388dbec2","direction":"outgoing","index":125276,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=85","verb":"get"},{"id":"cf6196af-7f69-4c9d-a009-375bcaa80659","direction":"outgoing","index":125277,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=85","verb":"get"},{"id":"d9dee3a0-cf9a-42b2-8e5e-6644cc6a10e4","direction":"outgoing","index":125278,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"14ec882d-11ce-475c-b820-51963f5d1f25","direction":"outgoing","index":125279,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32fe122a-5777-40f1-8c2c-f4fec2c84944\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1d917a8-7863-4012-bff3-23010b830ef0","direction":"outgoing","index":125280,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32fe122a-5777-40f1-8c2c-f4fec2c84944\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09bb0ea5-f438-4dbd-9fbc-d0c5a2dd1236","direction":"outgoing","index":125281,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32fe122a-5777-40f1-8c2c-f4fec2c84944\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49153d9a-a366-4e9c-a25d-8c33f31f0a66","direction":"outgoing","index":125282,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32fe122a-5777-40f1-8c2c-f4fec2c84944\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb308b91-9c23-40c2-9732-524022f09b8c","direction":"outgoing","index":125283,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"08cd57b9-5751-40ec-afda-0a8297ce2084","direction":"outgoing","index":125284,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"095d6738-d74e-40b0-b0a4-f3c6111b5951","direction":"outgoing","index":125285,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"7a3c363f-85c2-448e-9449-78b2418783a0","direction":"outgoing","index":125286,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"c44940d6-2227-4133-b202-1f370de19c0f","direction":"outgoing","index":125287,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"f12ed490-60a3-450e-9a47-3b34c5bd5992","direction":"outgoing","index":125288,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"5bf3d798-f1ec-4d6f-8e98-a4051311e177","direction":"outgoing","index":125289,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"e0d661b3-d7ef-4e87-af93-b2254b7852f9","direction":"outgoing","index":125290,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"aa9307c0-f4a0-470f-910d-5edd5b451e31","direction":"outgoing","index":125291,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=355","verb":"get"},{"id":"6531fa1b-2b3e-41ef-8787-ceb324f541c8","direction":"outgoing","index":125292,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=355","verb":"get"},{"id":"d39b877e-899b-49ab-a25e-d221382e5f79","direction":"outgoing","index":125293,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=355","verb":"get"},{"id":"26477055-e52b-4df7-a2f9-5c95b62209e5","direction":"outgoing","index":125294,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=355","verb":"get"},{"id":"7f64381f-720b-44ad-bb9a-cec39fc6ebec","direction":"outgoing","index":125295,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.602-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"8e46ad78-dbd6-4c71-8f43-bba11638fad3","direction":"outgoing","index":125296,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f806775-3de8-4b14-a1ef-1aca34f065ce","direction":"outgoing","index":125297,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"caf93288-f2ab-43da-94bf-f840921f76fa","direction":"outgoing","index":125298,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3338097-77c4-43b1-9490-bdd2944f8076","direction":"outgoing","index":125299,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8b112b65-984f-453b-aa09-c01f25ef0736","direction":"outgoing","index":125300,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.664-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1aca1778-5eee-4df6-aca0-52ecb4af865d","direction":"outgoing","index":125301,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83a5ba0a-398c-4f7d-835e-43afbcb94df6","direction":"outgoing","index":125302,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"172ebf9e-97e3-4e63-9ffd-0f6dd3d9db03","direction":"outgoing","index":125303,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6f55197a-8b54-4e81-b28f-34e9a7a62826","direction":"outgoing","index":125304,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=301a5195-beed-46f8-9a13-83cc5390eb2d\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e310f59d-d290-472d-9852-9681222a6d9a","direction":"outgoing","index":125305,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"910625b0-90d2-492c-886d-e1e948498c91","direction":"outgoing","index":125306,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bb7d3ab-322c-49b9-b269-6c5be135c32b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07c89cb5-ac14-4260-aa22-6a998015e602","direction":"outgoing","index":125307,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bb7d3ab-322c-49b9-b269-6c5be135c32b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39ad931f-df34-44c7-bc70-6068dfff0fef","direction":"outgoing","index":125308,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"fe842dd5-5869-42cb-8ea5-61d21b7eaad3","direction":"outgoing","index":125309,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"3c95ead5-65b1-4ca9-8226-3c446ab3799c","direction":"outgoing","index":125310,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"bc9c2a41-24cd-4a54-a284-90547272776c","direction":"outgoing","index":125311,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"66b03d75-d5b6-48d3-ae17-fe8d01d35fb5","direction":"outgoing","index":125312,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"39242090-409b-4e4d-86b7-92f9d7cd3c84","direction":"outgoing","index":125313,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"66b17c43-8e5c-4140-9cfe-5daeef78ee71","direction":"outgoing","index":125314,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"9ccdb666-f070-4961-b3ca-b1dcce17d936","direction":"outgoing","index":125315,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=907","verb":"get"},{"id":"743a4af2-ee69-427a-85d2-60c96bc7e2d8","direction":"outgoing","index":125316,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=907","verb":"get"},{"id":"83e6b283-a4ab-4980-96f3-3638e582d75f","direction":"outgoing","index":125317,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=907","verb":"get"},{"id":"a26a7426-7f13-4979-8809-85358e162911","direction":"outgoing","index":125318,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=907","verb":"get"},{"id":"23cf6cad-e5ad-44f9-901f-c85ba36c2a26","direction":"outgoing","index":125319,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=907","verb":"get"},{"id":"f9dc6590-6fb1-4d9f-8283-e2818f87066c","direction":"outgoing","index":125320,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.919-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"f75020fa-bce0-478d-8008-9cec8356fa4b","direction":"outgoing","index":125321,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"ca2cc6d1-c4f5-4f51-b5dc-46429a657786","direction":"outgoing","index":125322,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:21.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"bf31cad0-cb5d-4218-9677-a42d2583760c","direction":"outgoing","index":125323,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:22.006-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"5134a545-1792-49cc-ae7d-16977d67d2d3","direction":"outgoing","index":125324,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:22.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"},{"id":"81cc007a-1acd-44fc-a07e-b711b615e0ed","direction":"outgoing","index":125325,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:22.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"96a4a537-2624-409f-a191-b9e3f599dec7","direction":"outgoing","index":125326,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:22.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"1c5443f7-5396-4720-bd7a-7e566ab9f979","direction":"outgoing","index":125327,"result_id":"a771e6bd-89d1-4e23-b75e-4f1713341029","status":200,"timestamp":"2026-05-22T12:00:22.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:21.307-04:00"},{"id":"4df95eaa-b85c-42a3-8199-0300c29b65f8","created_at":"2026-05-22T12:00:44.220-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#401201003)","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#741062008)","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.performer[0]: A Reference without an actual reference or identifier should have a display","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:44.220-04:00"},{"id":"4c0a7c0b-f644-4a88-82b4-17e6344c5a1a","created_at":"2026-05-22T12:00:44.871-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:44.871-04:00"},{"id":"3498b72c-6adf-4251-bd4f-9a72628715cb","created_at":"2026-05-22T12:00:44.984-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4f0f2da6-94f4-49ef-802f-10f41f23e225","direction":"outgoing","index":125328,"result_id":"3498b72c-6adf-4251-bd4f-9a72628715cb","status":200,"timestamp":"2026-05-22T12:00:44.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:44.984-04:00"},{"id":"4efbffb0-5719-4e06-8a66-086e54cca5b1","created_at":"2026-05-22T12:00:45.006-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:45.006-04:00"},{"id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","created_at":"2026-05-22T12:00:45.804-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9706cdbf-55bc-44c7-98c0-c9643c94859f","direction":"outgoing","index":125329,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"0a71ed79-147d-42f3-b2fd-045f07bc9e1b","direction":"outgoing","index":125330,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"a20568c4-9d7b-43fe-8365-b6a6c964f515","direction":"outgoing","index":125331,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"7d2e7281-1cd3-4542-99c4-d565df3e804c","direction":"outgoing","index":125332,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"19e84c9e-55b6-4ad0-b41e-c12995f23725","direction":"outgoing","index":125333,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"7e374f6a-d56d-4356-a3fd-773b90591336","direction":"outgoing","index":125334,"result_id":"8422c593-4f8a-4a5f-967c-e9f9169fd304","status":200,"timestamp":"2026-05-22T12:00:45.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:45.804-04:00"},{"id":"f811873a-0ca5-4518-9610-966b460551c9","created_at":"2026-05-22T12:00:46.726-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cd950f67-aab2-45d3-86e3-8f446ef63f1d","direction":"outgoing","index":125335,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"193d0e88-42b0-4572-ad65-ceec7fbf242a","direction":"outgoing","index":125336,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"946dcb26-02df-4025-8b9d-950ea7d5036d","direction":"outgoing","index":125337,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a00bc6a2-5261-4735-abef-1060599e4c49","direction":"outgoing","index":125338,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"28dad4ab-8b0d-4e03-bdb6-19b8287962c7","direction":"outgoing","index":125339,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2b251ab7-a5ce-4c1a-bdf0-6ca63ced7596","direction":"outgoing","index":125340,"result_id":"f811873a-0ca5-4518-9610-966b460551c9","status":200,"timestamp":"2026-05-22T12:00:46.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:46.726-04:00"},{"id":"38197389-6423-4c35-96e3-4a36074f08a2","created_at":"2026-05-22T12:00:49.886-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"66bee233-c78b-45af-adc1-01a4f517fc5d","direction":"outgoing","index":125341,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"40f37983-31ba-412a-bed7-504b13551cda","direction":"outgoing","index":125342,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcd529f9-64c5-48ed-b489-13720953389a","direction":"outgoing","index":125343,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c48094f4-7e25-4064-94ec-52a966398c33","direction":"outgoing","index":125344,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b08a6ad6-e942-487a-9bee-2c7ed8b811dd","direction":"outgoing","index":125345,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a2570d2-1347-464e-980e-0c968a2f60e5","direction":"outgoing","index":125346,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"541ce624-402e-464c-af82-9b7e1234c85d","direction":"outgoing","index":125347,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:49.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"371b061c-9c55-4a94-8309-dc2ff54d703c","direction":"outgoing","index":125348,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:50.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a96ace6-bb43-48ba-868b-58b4b08295d9","direction":"outgoing","index":125349,"result_id":"38197389-6423-4c35-96e3-4a36074f08a2","status":200,"timestamp":"2026-05-22T12:00:50.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:49.886-04:00"},{"id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","created_at":"2026-05-22T12:00:52.799-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"44f5188f-561d-43c6-8bfd-51836781724b","direction":"outgoing","index":125350,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"df9081ca-0df1-4d04-b617-51ae7909cd5b","direction":"outgoing","index":125351,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"61ef7217-215c-4842-b7fa-30345315d8ed","direction":"outgoing","index":125352,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e7a72339-10d6-4897-a11e-4c110138934c","direction":"outgoing","index":125353,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"61d7c7d1-47ff-474c-8763-f65b3c3bd3e5","direction":"outgoing","index":125354,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=82ea1ed5-74da-408b-b2fa-c717833861a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e174817e-f0b3-4235-8d8e-def6d095d1d8","direction":"outgoing","index":125355,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=82ea1ed5-74da-408b-b2fa-c717833861a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd365048-7b44-486b-b165-6522ba0d6396","direction":"outgoing","index":125356,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6fe6f2b9-5093-44d1-be3a-9716771aa241","direction":"outgoing","index":125357,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e15c5014-2b60-410b-a288-13c5646a8cf4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"548b5ef3-08f4-41f1-9ef3-75c741d01cb2","direction":"outgoing","index":125358,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e15c5014-2b60-410b-a288-13c5646a8cf4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e2e5ab2-d784-4832-8dff-ff7282267246","direction":"outgoing","index":125359,"result_id":"f55ef14d-68c9-4687-a7dd-074190e6db4c","status":200,"timestamp":"2026-05-22T12:00:52.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:52.799-04:00"},{"id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","created_at":"2026-05-22T12:00:55.124-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2f58742d-e2d0-4926-be9e-85f57f2a6aa0","direction":"outgoing","index":125360,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ffa18608-83cb-43c5-b0e4-441763f150ba","direction":"outgoing","index":125361,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93bfc909-8444-40b8-8622-20d62a53e3d8","direction":"outgoing","index":125362,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09308350-7369-4bba-915c-c32e485329f3","direction":"outgoing","index":125363,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"595dd95f-4036-4648-89ac-bfc061caba99","direction":"outgoing","index":125364,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"604f8229-0e4c-4fec-8d32-7ca54c0cc692","direction":"outgoing","index":125365,"result_id":"9d434c4a-b497-4200-93fd-5252ff80fdb5","status":200,"timestamp":"2026-05-22T12:00:55.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.124-04:00"},{"id":"03e5c1f0-bdf4-42f8-8018-d45c51069435","created_at":"2026-05-22T12:00:55.345-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0f778d9c-92aa-4ba7-be49-93e7d2712769","direction":"outgoing","index":125366,"result_id":"03e5c1f0-bdf4-42f8-8018-d45c51069435","status":200,"timestamp":"2026-05-22T12:00:55.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.345-04:00"},{"id":"3607f221-0006-4d5f-9ca3-fa8346ca03c4","created_at":"2026-05-22T12:00:55.782-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"217f9125-bdbb-4023-88bf-cca3576b7ecf","direction":"outgoing","index":125367,"result_id":"3607f221-0006-4d5f-9ca3-fa8346ca03c4","status":200,"timestamp":"2026-05-22T12:00:55.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85","verb":"get"},{"id":"5bdc5592-6253-41b2-a03e-e398e9e22b31","direction":"outgoing","index":125368,"result_id":"3607f221-0006-4d5f-9ca3-fa8346ca03c4","status":200,"timestamp":"2026-05-22T12:00:55.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355","verb":"get"},{"id":"7377c29e-e929-43d5-ab2b-916e48d98509","direction":"outgoing","index":125369,"result_id":"3607f221-0006-4d5f-9ca3-fa8346ca03c4","status":200,"timestamp":"2026-05-22T12:00:55.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.782-04:00"},{"id":"290c1505-43b0-439e-8960-725dfd2cd8c8","created_at":"2026-05-22T12:00:55.907-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.907-04:00"},{"id":"661e1be5-85e7-41d9-9017-f1fc1ee4dd08","created_at":"2026-05-22T12:00:55.919-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.919-04:00"},{"id":"3021fc4f-2bf3-474e-a8f4-09ecab53d790","created_at":"2026-05-22T12:00:55.922-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.922-04:00"},{"id":"d1775d37-cc7f-44d4-b772-5ee04eeb9847","created_at":"2026-05-22T12:00:55.923-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:55.923-04:00"},{"id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","created_at":"2026-05-22T12:00:56.691-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d071d8e9-4dc6-4ee1-a29e-1d4a5c1982bd","direction":"outgoing","index":125370,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"231fae4d-bf81-4c38-b6de-05b09de15a57","direction":"outgoing","index":125371,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"5c39a856-a2c9-41e9-9e01-381c87bc8e5c","direction":"outgoing","index":125372,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"7a6e3366-770f-40f8-acf4-6cba2d876d06","direction":"outgoing","index":125373,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"1ffdca9b-6d46-466d-be93-7b9470e048ab","direction":"outgoing","index":125374,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"9d9942e6-684a-45be-a40f-407565dfbe93","direction":"outgoing","index":125375,"result_id":"0c857a28-c3a7-4c4e-abc6-1097818babfc","status":200,"timestamp":"2026-05-22T12:00:56.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:56.691-04:00"},{"id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","created_at":"2026-05-22T12:00:57.619-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2ce5292a-92a6-4dff-97e1-674f063376f1","direction":"outgoing","index":125376,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7ffc82f3-0cfc-42c3-8599-f31d80c60a72","direction":"outgoing","index":125377,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f6737352-fa61-45cb-94e9-e5b0245dbd54","direction":"outgoing","index":125378,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.664-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d66138e0-2531-4be2-b9e4-ae682b904562","direction":"outgoing","index":125379,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fba54788-47ed-48e1-830c-854c0813c1a0","direction":"outgoing","index":125380,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"23abaf9b-e9f9-44b9-b479-a0b958c7d71c","direction":"outgoing","index":125381,"result_id":"4f23b998-c1ae-4f77-a0c6-f47174e6b37a","status":200,"timestamp":"2026-05-22T12:00:57.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:57.619-04:00"},{"id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","created_at":"2026-05-22T12:00:59.212-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9269f80d-5c03-4271-8d0d-4d0a2ca100ac","direction":"outgoing","index":125382,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"dcef93ab-5384-4c31-89d2-e1c5d85290d4","direction":"outgoing","index":125383,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"afe3ebaa-3d96-486b-8697-382290709241","direction":"outgoing","index":125384,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a3e3162-ef4c-4b91-8e59-9bee8e9218e7","direction":"outgoing","index":125385,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"49660dbb-e637-4fbf-b380-c2ac5745ac26","direction":"outgoing","index":125386,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88e91745-3bf5-44f4-b5c4-bc80a63af5ee","direction":"outgoing","index":125387,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35743c7b-a70e-4ce8-82d6-bdb8682a8f70","direction":"outgoing","index":125388,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"88de1cfa-7900-431c-9356-e45be7ddbd72","direction":"outgoing","index":125389,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d4a66a0-021a-4cc0-a950-4999846495d0","direction":"outgoing","index":125390,"result_id":"229baee3-25f2-48f0-80b0-715b6fbb2c59","status":200,"timestamp":"2026-05-22T12:00:59.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:00:59.212-04:00"},{"id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","created_at":"2026-05-22T12:01:02.136-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c3c5816d-6e9d-4d65-ba3f-1b5a3e846273","direction":"outgoing","index":125391,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8a5e5314-5ae2-4f1c-b540-bb50cbe79724","direction":"outgoing","index":125392,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"27435a9c-5f24-498e-bd3e-aff1c6345c90","direction":"outgoing","index":125393,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4de905fc-345d-4cfa-b428-369f598dab9d","direction":"outgoing","index":125394,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c11d1e08-bea5-4050-b5da-f14fb391abd6","direction":"outgoing","index":125395,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b63aa850-969b-4684-8225-af2481ca0bd5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"517b3f07-5056-4abd-8cef-0976fa1e4aa8","direction":"outgoing","index":125396,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b63aa850-969b-4684-8225-af2481ca0bd5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f81cddb-e96b-4540-a043-aeb1224b4fb9","direction":"outgoing","index":125397,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"87047499-f2e4-4358-9d8b-5465eabd2e93","direction":"outgoing","index":125398,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7cbb88d0-cb1d-43a5-9910-fd842d9c1030\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e9d42689-3285-4d7c-9de6-1d384e4d27c5","direction":"outgoing","index":125399,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7cbb88d0-cb1d-43a5-9910-fd842d9c1030\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8a16b2f5-79a1-4513-a783-2ccac4eef544","direction":"outgoing","index":125400,"result_id":"6719e0e9-d52b-4907-bbf6-a9a9f54532fc","status":200,"timestamp":"2026-05-22T12:01:02.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:02.136-04:00"},{"id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","created_at":"2026-05-22T12:01:03.223-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"445d1bfd-edb9-43b3-b360-3302116a20c4","direction":"outgoing","index":125401,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8b082e4f-8eca-48c4-ac62-73245122c07f","direction":"outgoing","index":125402,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"491746f7-c2fd-43f5-890d-1697ce42cb4c","direction":"outgoing","index":125403,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"193ca9cb-841d-4745-9918-de51cd9b78a0","direction":"outgoing","index":125404,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"b133934e-4405-4745-84fb-978a52658c84","direction":"outgoing","index":125405,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7f203a5-8b4a-4bae-8403-b2641addc9e9","direction":"outgoing","index":125406,"result_id":"7b22c2a6-52f7-4a1e-a66a-c716f0fc4048","status":200,"timestamp":"2026-05-22T12:01:03.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:03.223-04:00"},{"id":"e082a4a1-f07c-42c7-a001-f90438cbe74e","created_at":"2026-05-22T12:01:03.429-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6acf765e-19d9-4f2e-ba1b-af5b1690b8c1","direction":"outgoing","index":125407,"result_id":"e082a4a1-f07c-42c7-a001-f90438cbe74e","status":200,"timestamp":"2026-05-22T12:01:03.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:03.429-04:00"},{"id":"29ba7653-ba3c-474d-a6f6-23bbd1c5b4b7","created_at":"2026-05-22T12:01:03.894-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2ec2d39f-fb90-4d98-9d07-8e371958120d","direction":"outgoing","index":125408,"result_id":"29ba7653-ba3c-474d-a6f6-23bbd1c5b4b7","status":200,"timestamp":"2026-05-22T12:01:03.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85","verb":"get"},{"id":"a76088d2-a48f-44f5-b81a-46f0ce85000a","direction":"outgoing","index":125409,"result_id":"29ba7653-ba3c-474d-a6f6-23bbd1c5b4b7","status":200,"timestamp":"2026-05-22T12:01:03.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355","verb":"get"},{"id":"4780d6be-f3a5-48d5-a280-c241f20aa990","direction":"outgoing","index":125410,"result_id":"29ba7653-ba3c-474d-a6f6-23bbd1c5b4b7","status":200,"timestamp":"2026-05-22T12:01:03.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:03.894-04:00"},{"id":"d3fdf2fc-42f6-498b-bc26-a7747b3ca25f","created_at":"2026-05-22T12:01:04.006-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:04.006-04:00"},{"id":"700a66c6-492e-4885-a385-4bb114e2838c","created_at":"2026-05-22T12:01:04.020-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:04.020-04:00"},{"id":"4c595b3d-e660-4ff1-a6a8-704ba185a0c4","created_at":"2026-05-22T12:01:04.024-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:04.024-04:00"},{"id":"d66ebfde-2056-44fe-b92d-f71d9c0ba177","created_at":"2026-05-22T12:01:04.025-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:04.025-04:00"},{"id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","created_at":"2026-05-22T12:01:04.821-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"53039242-f17f-4def-8b6a-741b54cafe45","direction":"outgoing","index":125411,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.826-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"1ad36b42-4765-4b9c-9f18-fc40f148585a","direction":"outgoing","index":125412,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"df524214-9d33-4a17-85d0-3538439173c2","direction":"outgoing","index":125413,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"efd1cf51-15ec-47ed-b9e4-6409eac41d1f","direction":"outgoing","index":125414,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"75a7211c-d7b7-433a-a7f8-f410888199e5","direction":"outgoing","index":125415,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.889-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"dc75cd55-0c9f-4e99-aecd-270494060da6","direction":"outgoing","index":125416,"result_id":"cdcca7a6-b2a0-4476-a637-adcace0b3e51","status":200,"timestamp":"2026-05-22T12:01:04.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:04.821-04:00"},{"id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","created_at":"2026-05-22T12:01:05.704-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6a50b852-12fb-4b5a-b39c-fcd137c76eca","direction":"outgoing","index":125417,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7b3680c5-133f-416c-9173-956f88e6333b","direction":"outgoing","index":125418,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ccdb7c21-c4b6-4de6-b87a-e4635b734769","direction":"outgoing","index":125419,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"61b82a59-bd73-4a0e-bcec-c7c249a47d1e","direction":"outgoing","index":125420,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9f51631e-eace-4077-aadf-7fbe9a64c705","direction":"outgoing","index":125421,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b129f407-03cf-45cc-a54d-ea809f3593c3","direction":"outgoing","index":125422,"result_id":"313886d3-c300-4a12-ad46-bd9cfa4d74c5","status":200,"timestamp":"2026-05-22T12:01:05.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:05.704-04:00"},{"id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","created_at":"2026-05-22T12:01:07.290-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"41a3cadd-a0dd-45ba-8021-17818e40ce02","direction":"outgoing","index":125423,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.296-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a95fc802-f796-4d49-a917-c8d4f6f9f584","direction":"outgoing","index":125424,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd5a99be-011e-43e7-9cd9-9caad6fd9b2d","direction":"outgoing","index":125425,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=08475dfc-8d3f-4b33-b97f-1e6931d5077e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c97b340a-b943-4f5c-8c33-68e651324290","direction":"outgoing","index":125426,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"c1005d28-0658-45ab-9e53-556d89c55f42","direction":"outgoing","index":125427,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb66218e-7e28-4387-a3c2-6c87e5f5d6a8","direction":"outgoing","index":125428,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7d9efd33-222f-4a37-a216-5ed6e5143e91\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"651e4aa9-9df3-4c23-8963-366d5e82e2f5","direction":"outgoing","index":125429,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2ec54369-c8c8-4af7-9836-1739576ab393","direction":"outgoing","index":125430,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aca7ad27-b107-4f4e-83c6-203159aca89d","direction":"outgoing","index":125431,"result_id":"5307e386-1c08-42ca-baaf-de3a5d91a26b","status":200,"timestamp":"2026-05-22T12:01:07.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a0662a3-2836-4d0d-bd4d-62cff05570a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:07.290-04:00"},{"id":"f4487318-a634-42b7-ac93-545f99015dbb","created_at":"2026-05-22T12:01:10.089-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1baa6e4f-764d-40df-a06b-32bf454d8cd5","direction":"outgoing","index":125432,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2625b1ad-eeb7-40b1-9b5c-f5127e5941b0","direction":"outgoing","index":125433,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d76fc90d-fcc8-455d-a1e9-052b29467c79","direction":"outgoing","index":125434,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f5d5290-e6e8-4141-84c0-df9fd02967d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ac8c7a7-6458-4459-9617-e08ad29991a5","direction":"outgoing","index":125435,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0f5d5290-e6e8-4141-84c0-df9fd02967d6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f9777e7-2c7d-40f3-824e-3ef3a41d20b1","direction":"outgoing","index":125436,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ab37f7d5-a19a-44f0-b528-be4d95901a21","direction":"outgoing","index":125437,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7afc20ed-b831-4e0c-b575-aadf582cac1c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac949e76-2646-4fdf-9ab8-3a9e4128f706","direction":"outgoing","index":125438,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7afc20ed-b831-4e0c-b575-aadf582cac1c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0197381-8994-40d5-81d9-be4c918eb4e8","direction":"outgoing","index":125439,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"67d5b227-3aec-4fe7-8048-d13b47726c8a","direction":"outgoing","index":125440,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cf40b6f5-8b3b-4df0-baac-0fb6ee628873","direction":"outgoing","index":125441,"result_id":"f4487318-a634-42b7-ac93-545f99015dbb","status":200,"timestamp":"2026-05-22T12:01:10.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:10.089-04:00"},{"id":"96453442-2e98-4051-94aa-1a3f51991ee5","created_at":"2026-05-22T12:01:11.329-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9f663442-30bb-49a0-ae19-6cc73b9e78f0","direction":"outgoing","index":125442,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"79521f5b-ed79-42a5-8b68-4692d5a45c70","direction":"outgoing","index":125443,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f84d3dc2-141e-4cf9-b43c-81148085cb71","direction":"outgoing","index":125444,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21d65add-d7b6-4d01-8494-24de34f557df\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d5fa8f7-6b92-4545-a017-f3e5690dd27b","direction":"outgoing","index":125445,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"4e33ed91-96de-4d7b-9b62-bd8efa446df0","direction":"outgoing","index":125446,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3974ffb3-d3cf-4876-ac08-39fddc70ed16","direction":"outgoing","index":125447,"result_id":"96453442-2e98-4051-94aa-1a3f51991ee5","status":200,"timestamp":"2026-05-22T12:01:11.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8d1fdf57-ef63-4edc-a0c6-1aa14bb432c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:11.329-04:00"},{"id":"46246fd7-ab2e-4b19-883a-5e7921c703de","created_at":"2026-05-22T12:01:11.525-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3e73bcdd-5df3-44ae-8e64-6863a2e9dba4","direction":"outgoing","index":125448,"result_id":"46246fd7-ab2e-4b19-883a-5e7921c703de","status":200,"timestamp":"2026-05-22T12:01:11.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:11.525-04:00"},{"id":"5b88d7f9-f47c-4f63-ac97-d73afc0cb827","created_at":"2026-05-22T12:01:11.980-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"315b06df-d70a-48a9-b5ac-cf31a1a12da5","direction":"outgoing","index":125449,"result_id":"5b88d7f9-f47c-4f63-ac97-d73afc0cb827","status":200,"timestamp":"2026-05-22T12:01:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85","verb":"get"},{"id":"b386e5b2-6081-47c5-b425-0400f5bf9424","direction":"outgoing","index":125450,"result_id":"5b88d7f9-f47c-4f63-ac97-d73afc0cb827","status":200,"timestamp":"2026-05-22T12:01:11.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355","verb":"get"},{"id":"63d003fb-c6de-4202-8c14-05158d80ec2a","direction":"outgoing","index":125451,"result_id":"5b88d7f9-f47c-4f63-ac97-d73afc0cb827","status":200,"timestamp":"2026-05-22T12:01:12.006-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:11.980-04:00"},{"id":"cd85cb50-de06-43f5-b5b8-dbaca38b4f03","created_at":"2026-05-22T12:01:12.060-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:12.060-04:00"},{"id":"c49c1c43-e9c6-4713-b598-a83959d0dacd","created_at":"2026-05-22T12:01:12.068-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:12.068-04:00"},{"id":"1145be03-6a49-4b5a-a19c-6c00f892af04","created_at":"2026-05-22T12:01:12.070-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:12.070-04:00"},{"id":"e6a974c8-a42d-43db-89fb-033380f30f6f","created_at":"2026-05-22T12:01:12.071-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:12.071-04:00"},{"id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","created_at":"2026-05-22T12:01:13.319-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"01e53846-c366-4b03-acda-72274794d5dc","direction":"outgoing","index":125452,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"682e74c5-b1aa-46f7-9a9c-192751df9cba","direction":"outgoing","index":125453,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"0675caf6-218b-4bd9-b22e-f16981094772","direction":"outgoing","index":125454,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"84820e20-16d1-4670-af13-f8354367d616","direction":"outgoing","index":125455,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"89dd7a59-7e9c-4f33-8670-6847ea452df7","direction":"outgoing","index":125456,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"9d8430af-591f-4227-b58b-741799d458cf","direction":"outgoing","index":125457,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"08fc707b-1984-4626-b37e-29a5ef2dd144","direction":"outgoing","index":125458,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"04623b66-90c2-48e0-8ba7-ca41d160f63d","direction":"outgoing","index":125459,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"79a46c13-5f15-4972-9277-f84e5a9d0a3c","direction":"outgoing","index":125460,"result_id":"f807cd4e-e420-4b22-ac95-99d73364e8e5","status":200,"timestamp":"2026-05-22T12:01:13.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:13.319-04:00"},{"id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","created_at":"2026-05-22T12:01:14.303-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"22027932-199b-475f-9299-9f23594f7f0e","direction":"outgoing","index":125461,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"add54c74-b3ae-4316-92d8-dea734bdbf02","direction":"outgoing","index":125462,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"e9e70839-ba0a-448e-aef5-d17ad3446c98","direction":"outgoing","index":125463,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"56e06932-4abc-402a-b588-1befda9bed25","direction":"outgoing","index":125464,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"7208841d-a968-46ee-ac54-a3d90019be9c","direction":"outgoing","index":125465,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"5a77f7d5-83d7-4b25-b7e4-76c6594835cf","direction":"outgoing","index":125466,"result_id":"64bd4596-1205-4d43-ae3a-4de23a03dc8a","status":200,"timestamp":"2026-05-22T12:01:14.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:14.303-04:00"},{"id":"5ce4b374-1819-437b-b0a5-8ca1ef23e5b8","created_at":"2026-05-22T12:01:14.827-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"acd15871-55b6-4c27-ba32-f5109218620b","direction":"outgoing","index":125467,"result_id":"5ce4b374-1819-437b-b0a5-8ca1ef23e5b8","status":200,"timestamp":"2026-05-22T12:01:14.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"04766095-f04a-4145-8eaf-6207d4a9992a","direction":"outgoing","index":125468,"result_id":"5ce4b374-1819-437b-b0a5-8ca1ef23e5b8","status":200,"timestamp":"2026-05-22T12:01:14.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"51e943f6-46c9-48de-ab13-9e2ba85057ef","direction":"outgoing","index":125469,"result_id":"5ce4b374-1819-437b-b0a5-8ca1ef23e5b8","status":200,"timestamp":"2026-05-22T12:01:14.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:14.827-04:00"},{"id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","created_at":"2026-05-22T12:01:15.880-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6b13463a-b618-42b3-8b4e-6a8e0cb4edb9","direction":"outgoing","index":125470,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3af6b351-b25f-4bc9-a9da-f7548da6801e","direction":"outgoing","index":125471,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"fcab3144-1961-4d2f-bce5-fcca10e9d5c4","direction":"outgoing","index":125472,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"e3b086fe-720a-4dff-bdb7-37fb257ad482","direction":"outgoing","index":125473,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"d213d60e-79a3-4ef1-b8d4-99e12e18cfb5","direction":"outgoing","index":125474,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"10abcb24-9bd5-472e-8968-34c8cc70aff6","direction":"outgoing","index":125475,"result_id":"3bf50e9c-99a0-4302-9375-4be506bdbe2a","status":200,"timestamp":"2026-05-22T12:01:15.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:15.880-04:00"},{"id":"37e159e0-42e5-4d81-86d4-41fde9162a98","created_at":"2026-05-22T12:01:16.249-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c57f57d4-5afe-4ec2-ab08-3813931588a6","direction":"outgoing","index":125476,"result_id":"37e159e0-42e5-4d81-86d4-41fde9162a98","status":200,"timestamp":"2026-05-22T12:01:16.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"b2da9aca-b303-47aa-b959-f0adc14af8af","direction":"outgoing","index":125477,"result_id":"37e159e0-42e5-4d81-86d4-41fde9162a98","status":200,"timestamp":"2026-05-22T12:01:16.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:16.249-04:00"},{"id":"53139b8f-192e-40ac-a561-beb3b4eaa429","created_at":"2026-05-22T12:01:16.388-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"961dc49d-df99-4b06-b1cf-135a0eb422e5","direction":"outgoing","index":125478,"result_id":"53139b8f-192e-40ac-a561-beb3b4eaa429","status":200,"timestamp":"2026-05-22T12:01:16.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:16.388-04:00"},{"id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","created_at":"2026-05-22T12:01:17.301-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f218d4f2-4293-4b5e-a4f8-fdf9120356e1","direction":"outgoing","index":125479,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85","verb":"get"},{"id":"06544a93-166c-475a-a3b7-6beb6a50a16f","direction":"outgoing","index":125480,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85","verb":"get"},{"id":"6569e49f-334d-4eb2-91a0-d3c224be7d0d","direction":"outgoing","index":125481,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355","verb":"get"},{"id":"741d4b7b-c508-4700-8c69-e897e6d1ae1b","direction":"outgoing","index":125482,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355","verb":"get"},{"id":"30700d89-1c8f-4c25-af43-7ae69708066d","direction":"outgoing","index":125483,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=907","verb":"get"},{"id":"1dc17b75-dbee-43b9-831c-e1dc9d2df815","direction":"outgoing","index":125484,"result_id":"9fec4804-b8ca-426b-b644-7f83e8cbce17","status":200,"timestamp":"2026-05-22T12:01:17.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:17.301-04:00"},{"id":"94309f44-de6f-4a62-886f-93c9e4495406","created_at":"2026-05-22T12:01:17.511-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:17.511-04:00"},{"id":"75c4cd62-1704-4100-a64f-8650551e22ab","created_at":"2026-05-22T12:01:17.534-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:17.534-04:00"},{"id":"e3530f30-c8b6-460b-a5b6-3301f9daea1b","created_at":"2026-05-22T12:01:17.538-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:17.538-04:00"},{"id":"bb72b6a5-582a-4451-80ec-4e7079f0225a","created_at":"2026-05-22T12:01:17.540-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:17.540-04:00"},{"id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","created_at":"2026-05-22T12:01:23.989-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d29b6cc-6bde-4b07-9de4-9601b35040b6","direction":"outgoing","index":125485,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:23.991-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"4af70caf-f504-4e66-b1e1-c4b840f1edb5","direction":"outgoing","index":125486,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"527f599d-f4e9-4b81-a6df-496763b76817","direction":"outgoing","index":125487,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.019-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d4c5460-c439-4adf-a0b1-87afe795fb8d","direction":"outgoing","index":125488,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e49312c-ad87-482b-b007-77ca2bc137a6","direction":"outgoing","index":125489,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"e98deeb0-5112-4f8e-91f5-4112c3686768","direction":"outgoing","index":125490,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7aa056dd-fbd0-4f6d-9eef-f4523d91fb99","direction":"outgoing","index":125491,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"017a6a62-ea60-4289-a7f4-c608db82ea7c","direction":"outgoing","index":125492,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ae7a289-6176-49eb-a629-224fc2a504fb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"453ef502-4514-4490-ae9b-fac4e3205709","direction":"outgoing","index":125493,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"954dabf1-0ac9-4027-aede-e3dcffbb7ef5","direction":"outgoing","index":125494,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=017c6b19-d12e-4c4d-a76d-094205941e2a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75dc8c13-7d5e-4e62-b8e0-d510b4be5cbe","direction":"outgoing","index":125495,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=017c6b19-d12e-4c4d-a76d-094205941e2a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e561d925-c217-4ebc-8f7f-7302f8d1707c","direction":"outgoing","index":125496,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=017c6b19-d12e-4c4d-a76d-094205941e2a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd66ce32-9449-4ad8-9686-c2e7c05b4157","direction":"outgoing","index":125497,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"91321107-f5c2-4ca5-a41b-d07a75e53fb6","direction":"outgoing","index":125498,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d530773-0060-4e3a-b304-73e59900b302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d722117f-618e-4e8a-ab2d-f9ae9393a045","direction":"outgoing","index":125499,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d530773-0060-4e3a-b304-73e59900b302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e841158a-76bb-4060-8bc0-2e3831228db4","direction":"outgoing","index":125500,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d530773-0060-4e3a-b304-73e59900b302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8ede6ab-a4a8-44b5-a7bc-9c8fd0f6bf2a","direction":"outgoing","index":125501,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"bc9e270a-fe36-4e70-9cdc-77f3c82cb40f","direction":"outgoing","index":125502,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83e8b09d-f3f0-4481-ac6a-8aa75060d99b","direction":"outgoing","index":125503,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c8cdbf5f-6800-45ae-bdf2-22e656de7ebf","direction":"outgoing","index":125504,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"802ccd79-b767-4707-81a0-0ca108dc9d99","direction":"outgoing","index":125505,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8341e070-efbe-4a42-a7e7-e62b26731cae","direction":"outgoing","index":125506,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8bd3705-013f-423a-a050-be73f1343adb","direction":"outgoing","index":125507,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.272-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc2a50a8-dad9-4db4-8021-96a0faba2e96","direction":"outgoing","index":125508,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2137e066-3f82-4c76-ab48-2bb272692ff4","direction":"outgoing","index":125509,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9423fa59-3ddb-41ff-93a8-9f84672ebe2a","direction":"outgoing","index":125510,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3fe65f34-fe28-4bf9-9067-c9c71c6135e7\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3d3e043-e8da-4cae-addb-e87f79c41588","direction":"outgoing","index":125511,"result_id":"f11c7ff8-8a30-471d-8057-bf506cdab4ed","status":200,"timestamp":"2026-05-22T12:01:24.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:23.989-04:00"},{"id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","created_at":"2026-05-22T12:01:27.360-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0dca3774-c069-4e8b-8e5d-c3ba8732288f","direction":"outgoing","index":125512,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"73e34935-b2c4-4567-8d3a-8a8d9a6733fe","direction":"outgoing","index":125513,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"655a7774-caf5-4a6f-9604-2541ff4f9152","direction":"outgoing","index":125514,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9c7d340-f290-45c0-b668-db9949682ebf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3632bdd-1f72-452c-9d78-982bd0ad4e71","direction":"outgoing","index":125515,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9c7d340-f290-45c0-b668-db9949682ebf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"475b6f45-0d96-4013-978d-b2a88eb94e9a","direction":"outgoing","index":125516,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9c7d340-f290-45c0-b668-db9949682ebf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7533b443-316d-4652-83d1-6d841aa88778","direction":"outgoing","index":125517,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"eb017164-a727-4fb9-9a1d-c998930c6772","direction":"outgoing","index":125518,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7d04487-6e0c-4fbd-950a-a723636ce017\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad1198e4-fe9a-4c81-831a-32cb4c9c604c","direction":"outgoing","index":125519,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7d04487-6e0c-4fbd-950a-a723636ce017\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"946057eb-0beb-48e4-a8ec-a1416d5055b0","direction":"outgoing","index":125520,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7d04487-6e0c-4fbd-950a-a723636ce017\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d6096a8-2aec-4649-a250-12c9ffc9e1d9","direction":"outgoing","index":125521,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"73436f82-c831-41cd-abe9-6a397a0d48e2","direction":"outgoing","index":125522,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"026cacb7-a976-4651-8224-efbde54d13b7","direction":"outgoing","index":125523,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"97b28128-3b07-4e97-abe7-a9979f7d3928","direction":"outgoing","index":125524,"result_id":"2560f0ce-e1ed-4726-bbc5-a161b3096505","status":200,"timestamp":"2026-05-22T12:01:27.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:27.360-04:00"},{"id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","created_at":"2026-05-22T12:01:33.941-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"81b1811e-0d22-4c35-9351-e8c60f3c402f","direction":"outgoing","index":125525,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:33.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"bbdf80a7-f8ff-409e-bab1-ae7dd62be130","direction":"outgoing","index":125526,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:33.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb194c02-3334-44b4-bf44-9087fb8e81f4","direction":"outgoing","index":125527,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:33.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e80099c1-41b3-4d15-8a38-7f0385100d1d","direction":"outgoing","index":125528,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:33.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b87172f-4dbd-4411-827c-e5b922b15f00","direction":"outgoing","index":125529,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b45b924a-9238-4309-aafe-b8296bfbc361","direction":"outgoing","index":125530,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"3bd92f84-8fc4-4698-b467-c7368ca0d357","direction":"outgoing","index":125531,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.027-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e026ede-41ae-48ba-828f-9c7eb607ef1c","direction":"outgoing","index":125532,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4165d52c-dd97-435d-a99c-c05c1e9c6d14","direction":"outgoing","index":125533,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d497941-3106-4aa8-87a3-aeb46a124d19","direction":"outgoing","index":125534,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b4568ec-d48d-4712-8e1b-609d48960f1b","direction":"outgoing","index":125535,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"336b3080-34d8-450d-ae19-de06889e8651","direction":"outgoing","index":125536,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91e3d547-a214-4a5d-9704-435e3a59f520","direction":"outgoing","index":125537,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e5f4132-aee9-4312-a4b2-91d76adfaaed","direction":"outgoing","index":125538,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2cd47240-5af8-4971-8048-55a086362253","direction":"outgoing","index":125539,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"428fd3e9-025e-4d5e-b672-cb87c3cfe9b4","direction":"outgoing","index":125540,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd133567-5a21-4682-a34c-30284dbdfd53","direction":"outgoing","index":125541,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cb3a3d00-7df1-47a7-a4fd-b73d03a466ce","direction":"outgoing","index":125542,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7878e172-3af3-4bc7-bb49-f591e2156e2d","direction":"outgoing","index":125543,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ee6994e-32a9-497c-8114-53904c7d1d79","direction":"outgoing","index":125544,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dddac398-8385-445e-8d55-36ee1ee3bba1","direction":"outgoing","index":125545,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"6a68eaab-3dc6-4a0d-80d6-2151985fa583","direction":"outgoing","index":125546,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0a1fe1b-df7e-4ebb-bc62-ddc205837258\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8fea6bdb-93ef-4109-b1ab-95e3c5343f01","direction":"outgoing","index":125547,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0a1fe1b-df7e-4ebb-bc62-ddc205837258\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1a12bd4-56d5-444b-8119-b5942c11988a","direction":"outgoing","index":125548,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0a1fe1b-df7e-4ebb-bc62-ddc205837258\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81d42131-4052-47e2-afff-baee648266d0","direction":"outgoing","index":125549,"result_id":"2764ebf4-cb25-4c7b-8add-13916ff82d39","status":200,"timestamp":"2026-05-22T12:01:34.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c0a1fe1b-df7e-4ebb-bc62-ddc205837258\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:33.941-04:00"},{"id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","created_at":"2026-05-22T12:01:37.613-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3306abc0-a275-4139-9b5a-dad8c3edd05e","direction":"outgoing","index":125550,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"0a8b872c-a6e7-4122-856f-3ee772709392","direction":"outgoing","index":125551,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"cf2bd119-a847-45b0-a38a-ed11274de9fa","direction":"outgoing","index":125552,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ce22a39-c3ae-4512-97e5-79b380e01b9c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b878ee2b-5ce9-44a0-a6cd-1e27a214da8f","direction":"outgoing","index":125553,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ce22a39-c3ae-4512-97e5-79b380e01b9c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82f7c0bb-2270-4374-8aea-00a7d1f9f696","direction":"outgoing","index":125554,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ce22a39-c3ae-4512-97e5-79b380e01b9c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb991339-773f-4648-8f9e-d861805c9632","direction":"outgoing","index":125555,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ce22a39-c3ae-4512-97e5-79b380e01b9c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c0fea0c-d5b4-4ed1-99d7-e519ff1ac03e","direction":"outgoing","index":125556,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"29942503-17c3-4a8d-aeaf-c3deaaec1fc5","direction":"outgoing","index":125557,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c5bebef5-2b8c-4b06-903d-bad27d0160e6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49dee2bf-8957-4203-98e3-9fc54944fe20","direction":"outgoing","index":125558,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c5bebef5-2b8c-4b06-903d-bad27d0160e6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be9c97ad-755e-4995-8dad-f0cbbbe9b2bd","direction":"outgoing","index":125559,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c5bebef5-2b8c-4b06-903d-bad27d0160e6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5c22637c-ba5f-49de-9fc0-88e929c37b69","direction":"outgoing","index":125560,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c5bebef5-2b8c-4b06-903d-bad27d0160e6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44e00c18-33a0-44b6-bcbe-eb719a52a935","direction":"outgoing","index":125561,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9e256384-03ba-4a7d-8af1-9e75cf5f44c6","direction":"outgoing","index":125562,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"032f00a7-2658-4ab2-9f4c-d985f214e0ec","direction":"outgoing","index":125563,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"1cde2ad0-81cc-49b2-8ac7-9bc2045fb58b","direction":"outgoing","index":125564,"result_id":"e38ce72c-a685-47e0-91d3-64e98a4418e7","status":200,"timestamp":"2026-05-22T12:01:37.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:37.613-04:00"},{"id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","created_at":"2026-05-22T12:01:42.820-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d59e0833-89f7-47d9-a69b-d93432608f24","direction":"outgoing","index":125565,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.826-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"ba6f235b-6eb7-4e5f-9a0e-e6f41ee6e57a","direction":"outgoing","index":125566,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e52dd2d2-3965-4255-a970-d72a594a26c6","direction":"outgoing","index":125567,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f736947-0d25-4c41-9ed2-c3fd246cfc55","direction":"outgoing","index":125568,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bbfab53c-0266-48a5-b2f2-e6bb1798d890","direction":"outgoing","index":125569,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18874779-243b-4210-a6d6-d2c0bacfe205","direction":"outgoing","index":125570,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"774e62ab-d705-4469-aa4f-66a739b9d959","direction":"outgoing","index":125571,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09fe17b9-f486-4714-b8ca-9191600b8ad2","direction":"outgoing","index":125572,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1becd1b7-23a5-4d0b-b4dc-aeea330c06a6","direction":"outgoing","index":125573,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dc72e45f-6674-402c-a3d3-5783e6a1af5e","direction":"outgoing","index":125574,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f458af5c-3fe8-4680-a9cc-6de092d7d249","direction":"outgoing","index":125575,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"9e2a590a-3228-4bfd-ba62-0c35ec03e7b7","direction":"outgoing","index":125576,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c749c0d0-7e3e-4a16-b0b8-264f67e86ffa","direction":"outgoing","index":125577,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dabfdd9-2793-40c4-88eb-8be18333a66d","direction":"outgoing","index":125578,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:42.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a4ac47b-c8c0-40af-b744-39cdba8d26b9","direction":"outgoing","index":125579,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42cfc120-0df1-4ce2-8d85-7737e88d5f07","direction":"outgoing","index":125580,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e1be782a-af88-46d8-8459-07e826dd32b3","direction":"outgoing","index":125581,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a77b8e6c-9014-4f2a-908f-0a495516f0d6","direction":"outgoing","index":125582,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4b270ac7-24ed-42c7-acae-a7a4593e086c","direction":"outgoing","index":125583,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5403c43-dfdd-47d4-820e-a6830bdc9ba6","direction":"outgoing","index":125584,"result_id":"e69dda7b-6611-4ce9-a7fc-2a31d6b745cb","status":200,"timestamp":"2026-05-22T12:01:43.066-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3df7be0a-3b0f-4753-a112-cd9d166152f9\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:42.820-04:00"},{"id":"d4d1ecb0-a15f-4bf5-8de9-a468906a71a8","created_at":"2026-05-22T12:01:43.189-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ddbbc405-b28b-4a0d-a41b-76c013dd8bf4","direction":"outgoing","index":125585,"result_id":"d4d1ecb0-a15f-4bf5-8de9-a468906a71a8","status":200,"timestamp":"2026-05-22T12:01:43.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/a230c57b-b261-471c-88ed-9871547378df","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:43.189-04:00"},{"id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","created_at":"2026-05-22T12:01:47.100-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"de69ba29-394c-4bad-af9d-b5cbf402cf18","direction":"outgoing","index":125586,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85","verb":"get"},{"id":"de42f07b-a549-4085-a512-05fa002c8836","direction":"outgoing","index":125587,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c81843df-ccc1-477e-87d7-371c2e1a0655\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7fa671e4-971c-420e-ab80-87ea5a8b7fe7","direction":"outgoing","index":125588,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c81843df-ccc1-477e-87d7-371c2e1a0655\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96e06b1f-3d7e-4d53-b99a-961c92bdf88d","direction":"outgoing","index":125589,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c81843df-ccc1-477e-87d7-371c2e1a0655\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1a2bfb-53cc-4d72-97bf-9e667264f3fb","direction":"outgoing","index":125590,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355","verb":"get"},{"id":"af9d31c3-c082-4295-abeb-67863a71c9f6","direction":"outgoing","index":125591,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47353566-d177-4921-bbbc-c8131317d5f7","direction":"outgoing","index":125592,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78ce03c6-fd3d-4c33-8ed1-6452e98efb33","direction":"outgoing","index":125593,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7fbfe21-6dfd-430a-9e5e-d03a2f89df90","direction":"outgoing","index":125594,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f07e624-ef2b-4209-a2a4-874bc078565e","direction":"outgoing","index":125595,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af7c4b3c-5991-4d0d-a1fb-31ce782b4cd3","direction":"outgoing","index":125596,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d457333-a42d-4086-bb46-c8225eff23b9","direction":"outgoing","index":125597,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"064c29cb-971c-4947-9ff3-33c05284cb85","direction":"outgoing","index":125598,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"328f584c-d889-4c22-a744-ede77f0f89e0","direction":"outgoing","index":125599,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5359e811-215e-4f34-9627-96b9c4a97bf5\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"538fc2f1-1575-4bd7-91b6-23a66bf8c865","direction":"outgoing","index":125600,"result_id":"5c19a409-12ae-4902-92c6-3f4d2b08883e","status":200,"timestamp":"2026-05-22T12:01:47.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:47.100-04:00"},{"id":"4c033cbe-aef9-4520-ae12-5f9c7b7bb422","created_at":"2026-05-22T12:01:50.013-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:50.013-04:00"},{"id":"ca0b54d3-e37c-460c-bfac-e9e8dacf6770","created_at":"2026-05-22T12:01:50.273-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:50.273-04:00"},{"id":"7245c419-550c-46a2-bebe-7ae7c921ecf9","created_at":"2026-05-22T12:01:50.276-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:50.276-04:00"},{"id":"3e4a3271-77d5-42b8-9ab8-a455e4fbc9cc","created_at":"2026-05-22T12:01:50.277-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:50.277-04:00"},{"id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","created_at":"2026-05-22T12:01:51.055-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c45f6876-f14e-4f9c-96fb-9ad16bef3606","direction":"outgoing","index":125601,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"3b8aded2-c7e1-4a1b-abfa-a9aeb971160b","direction":"outgoing","index":125602,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"2bd785c0-fbc1-4b61-bbd5-546da7747ec7","direction":"outgoing","index":125603,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"87df68bd-580c-49cf-9a61-d2c407bee1a3","direction":"outgoing","index":125604,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"0b7a5696-fe30-4dc3-8506-a9dcdd3ec3a8","direction":"outgoing","index":125605,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"01525ee6-09f2-4fa4-8451-b6b4ce4bfc5d","direction":"outgoing","index":125606,"result_id":"02ac39b0-6c30-4e98-9dcc-d383a1014c2d","status":200,"timestamp":"2026-05-22T12:01:51.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:51.055-04:00"},{"id":"c21cf35d-d365-4a06-bdec-0598ff69633e","created_at":"2026-05-22T12:01:52.082-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"efdfd71e-03fe-45f5-93e6-f14f4cf65044","direction":"outgoing","index":125607,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"22921c51-f4d7-4704-8457-fa92b6e1c29d","direction":"outgoing","index":125608,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"058e1cbf-c580-4ad7-a437-41a1ac0483db","direction":"outgoing","index":125609,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5e2106ed-75ad-4631-9b10-3121f7fcd7cd","direction":"outgoing","index":125610,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"a4322344-210c-4db2-9c68-da1ba5c11326","direction":"outgoing","index":125611,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"395111b1-ffb5-4df3-8f89-713680b50053","direction":"outgoing","index":125612,"result_id":"c21cf35d-d365-4a06-bdec-0598ff69633e","status":200,"timestamp":"2026-05-22T12:01:52.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:52.082-04:00"},{"id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","created_at":"2026-05-22T12:01:55.038-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b7b954e0-5f02-4926-bea8-610b5353ff46","direction":"outgoing","index":125613,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"03a6dd26-938e-4375-bbb0-fc7d224438e7","direction":"outgoing","index":125614,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"337b53c7-ee63-480e-b918-0c3917eed1e5","direction":"outgoing","index":125615,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31eeaa2c-3c33-4afe-a8d8-122d3f36fbb0","direction":"outgoing","index":125616,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11e2479e-f45b-4575-bf40-3dfe078d625b","direction":"outgoing","index":125617,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b655bd1f-5738-4455-a5dd-5d2ed92bb823\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7196ac1f-cad1-4920-8b23-e880b819863e","direction":"outgoing","index":125618,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"c886bc01-b59d-4651-8621-469bda6372c4","direction":"outgoing","index":125619,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b269077f-4e38-4678-9b6f-e2a666992fe9","direction":"outgoing","index":125620,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2781eb9-b9ba-4ca3-a4bf-7287c70db730","direction":"outgoing","index":125621,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b07efea6-943b-4710-8a4a-893a9f1dd329","direction":"outgoing","index":125622,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ffb213e4-19b1-4d36-945a-da00a73933ef\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d021f64d-b227-4436-aceb-f8b424e93153","direction":"outgoing","index":125623,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"487ff8ad-347f-4f8e-a123-0c60a6256f1e","direction":"outgoing","index":125624,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=231ec932-ef32-43d2-ad06-1d05430dd92a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75b3ef34-5f17-45cb-b012-2189650bc6ff","direction":"outgoing","index":125625,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=231ec932-ef32-43d2-ad06-1d05430dd92a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"615f73a0-8f80-4593-96c4-2f66fd2ebafa","direction":"outgoing","index":125626,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=231ec932-ef32-43d2-ad06-1d05430dd92a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e09bd1e8-4678-4be8-94f3-cdef6c8c0e83","direction":"outgoing","index":125627,"result_id":"dba67c6b-6295-46b0-a1e8-cae2ec35fe81","status":200,"timestamp":"2026-05-22T12:01:55.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=231ec932-ef32-43d2-ad06-1d05430dd92a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:55.038-04:00"},{"id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","created_at":"2026-05-22T12:01:59.125-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"03201369-3245-41ad-9b18-9e8bd997e714","direction":"outgoing","index":125628,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"40106fe4-8514-4386-b4bf-eeb2a4b942d0","direction":"outgoing","index":125629,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"de70aef3-1bb5-40c3-a2f6-700caf5ffd39","direction":"outgoing","index":125630,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"37a3c146-17a4-4af6-8298-6eeeb30b00f5","direction":"outgoing","index":125631,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"9b906529-0558-4fc8-ab81-8efc59396539","direction":"outgoing","index":125632,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2ee35cb3-5c1b-4cdb-b504-e21e1cf36980\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ebb23cac-bd22-4114-b168-8e80151380cb","direction":"outgoing","index":125633,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2ee35cb3-5c1b-4cdb-b504-e21e1cf36980\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1300eb34-0fd9-4185-987d-1e61b4ef415e","direction":"outgoing","index":125634,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2ee35cb3-5c1b-4cdb-b504-e21e1cf36980\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be882c2b-15f3-4838-b5ab-bdb562f04df7","direction":"outgoing","index":125635,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"4e62bea3-5219-4c72-a4f1-8926bdb109c0","direction":"outgoing","index":125636,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81c7cbe6-3570-4357-a565-b1fa230776f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e9f885a3-9e78-42a7-9736-2bb0ddce40c0","direction":"outgoing","index":125637,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81c7cbe6-3570-4357-a565-b1fa230776f1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"260b1759-8227-495d-be2c-69687048f6a4","direction":"outgoing","index":125638,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81c7cbe6-3570-4357-a565-b1fa230776f1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76b85208-6587-4b7a-a81f-ea045e964634","direction":"outgoing","index":125639,"result_id":"1e0a8c74-f29d-4aac-8563-64c20abc0cea","status":200,"timestamp":"2026-05-22T12:01:59.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:01:59.125-04:00"},{"id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","created_at":"2026-05-22T12:02:00.673-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d633be47-525f-4fcc-9c64-b3d61eadf74d","direction":"outgoing","index":125640,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"6ff9cc8e-bb1a-4d29-9901-a38393a8f9dd","direction":"outgoing","index":125641,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17cd1b3d-74e7-436a-8cc7-915c5b883dab","direction":"outgoing","index":125642,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.710-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12b04814-0a07-4098-b65a-288ffdcf65d5","direction":"outgoing","index":125643,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9cd80db9-de6c-4d95-9300-516235c2d951","direction":"outgoing","index":125644,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0908ada2-e606-49f4-b61b-d688730e1e08\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c6326f9-86e6-4596-a1eb-494756024720","direction":"outgoing","index":125645,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"5abb04dc-4193-4542-825b-323230e60f80","direction":"outgoing","index":125646,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0bcd26f-ee63-4458-8fd6-f28eb0d4034b","direction":"outgoing","index":125647,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"23b15602-3ec6-4a18-ba71-8791d3706964","direction":"outgoing","index":125648,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"608614bb-c17f-478b-9179-ee6944034438","direction":"outgoing","index":125649,"result_id":"c5de586e-3fa1-4c18-88ef-9401dbfb7145","status":200,"timestamp":"2026-05-22T12:02:00.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=65b27a2f-7723-4d60-80b9-a66d77142d25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:00.673-04:00"},{"id":"2282f2dc-9389-4e8a-8186-14b562d2277c","created_at":"2026-05-22T12:02:00.937-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"399a8a5b-6b6d-45d4-afc4-1c4a0e0f6f6c","direction":"outgoing","index":125650,"result_id":"2282f2dc-9389-4e8a-8186-14b562d2277c","status":200,"timestamp":"2026-05-22T12:02:00.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:00.937-04:00"},{"id":"c0ad0e18-90d5-482f-bc79-4368c5814a41","created_at":"2026-05-22T12:02:01.339-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"818e8b55-5a40-4c8f-903e-a73bfc083506","direction":"outgoing","index":125651,"result_id":"c0ad0e18-90d5-482f-bc79-4368c5814a41","status":200,"timestamp":"2026-05-22T12:02:01.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=85","verb":"get"},{"id":"0f799b96-a178-4099-8cd6-a5514b499cc9","direction":"outgoing","index":125652,"result_id":"c0ad0e18-90d5-482f-bc79-4368c5814a41","status":200,"timestamp":"2026-05-22T12:02:01.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=355","verb":"get"},{"id":"02c1013a-ee63-48fe-a767-5a6eeafd67fd","direction":"outgoing","index":125653,"result_id":"c0ad0e18-90d5-482f-bc79-4368c5814a41","status":200,"timestamp":"2026-05-22T12:02:01.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:01.339-04:00"},{"id":"577f12d6-0652-49b7-a5aa-a4b4fcc6885c","created_at":"2026-05-22T12:02:01.433-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:01.433-04:00"},{"id":"08218ecb-a1f9-4791-9c1e-c38638f4d4ae","created_at":"2026-05-22T12:02:01.438-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:01.438-04:00"},{"id":"5d611bf9-d281-416d-9087-80ea41e4fc5e","created_at":"2026-05-22T12:02:01.441-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:01.441-04:00"},{"id":"e34fc843-6dec-49f3-900e-29c950537617","created_at":"2026-05-22T12:02:01.442-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:01.442-04:00"},{"id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","created_at":"2026-05-22T12:02:02.267-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fd0e5438-7fca-4a04-b223-1167bab037f4","direction":"outgoing","index":125654,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"09beaca3-00b6-47a7-9fdb-c53d065f9633","direction":"outgoing","index":125655,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"8585c5d1-0188-438c-88ff-4a3bb3c4c34a","direction":"outgoing","index":125656,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"345ff286-4645-4792-9c61-073ddd6ae6af","direction":"outgoing","index":125657,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"aef9160f-2f3c-489a-a84b-0bb51f78fb23","direction":"outgoing","index":125658,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"af7ee15a-c461-48fb-9ab8-4449880a75b1","direction":"outgoing","index":125659,"result_id":"dc6281b0-aed4-4943-8b7c-deb7b556ae4c","status":200,"timestamp":"2026-05-22T12:02:02.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:02.267-04:00"},{"id":"93031b46-da5d-4335-9002-ec4f6b43aa26","created_at":"2026-05-22T12:02:03.058-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"48a1ac85-421f-4bb1-907c-69a468ce9361","direction":"outgoing","index":125660,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"f79b4663-030a-45ad-a709-bc9a8f3e1c4b","direction":"outgoing","index":125661,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d4b46be1-899a-452d-98fc-502f011fe192","direction":"outgoing","index":125662,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"95fd4ef7-0bde-46af-bda4-854b9d22d31b","direction":"outgoing","index":125663,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"35291aff-ffcb-46bd-b022-69e1cc51c6d9","direction":"outgoing","index":125664,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"e69791be-44bc-4310-992a-63e226ac66b7","direction":"outgoing","index":125665,"result_id":"93031b46-da5d-4335-9002-ec4f6b43aa26","status":200,"timestamp":"2026-05-22T12:02:03.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:03.058-04:00"},{"id":"b5e017d7-cf42-45ea-a648-5b618077591c","created_at":"2026-05-22T12:02:03.517-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9f7ab50f-6d1c-4250-a831-ca3c04a0e2d0","direction":"outgoing","index":125666,"result_id":"b5e017d7-cf42-45ea-a648-5b618077591c","status":200,"timestamp":"2026-05-22T12:02:03.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"16303fe8-0d3f-4e81-aefc-965261fea2a5","direction":"outgoing","index":125667,"result_id":"b5e017d7-cf42-45ea-a648-5b618077591c","status":200,"timestamp":"2026-05-22T12:02:03.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"c1303ea7-9b4b-42d9-91f1-958a842b3235","direction":"outgoing","index":125668,"result_id":"b5e017d7-cf42-45ea-a648-5b618077591c","status":200,"timestamp":"2026-05-22T12:02:03.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:03.517-04:00"},{"id":"3d190781-2f00-425a-b5bb-63686defd14b","created_at":"2026-05-22T12:02:04.323-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3b3cf4b1-d65f-4e18-9bfa-134567c05dce","direction":"outgoing","index":125669,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"bf511795-de81-4711-8eb4-422c1fb4ae8d","direction":"outgoing","index":125670,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"f6109c4b-2ed5-43c7-bd96-f8829af692ef","direction":"outgoing","index":125671,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"838c7af2-f4b7-4a3e-8795-065c10445c8a","direction":"outgoing","index":125672,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"1212bd67-5a6d-46e2-91f4-43ad770271da","direction":"outgoing","index":125673,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"7c8a2cba-ccff-4906-b306-ff7a11ce7803","direction":"outgoing","index":125674,"result_id":"3d190781-2f00-425a-b5bb-63686defd14b","status":200,"timestamp":"2026-05-22T12:02:04.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:04.323-04:00"},{"id":"baae3056-c1c3-45d6-befe-a519f62f4d70","created_at":"2026-05-22T12:02:04.737-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3bf8878c-dbb1-4362-a0d2-1fc792e3b924","direction":"outgoing","index":125675,"result_id":"baae3056-c1c3-45d6-befe-a519f62f4d70","status":200,"timestamp":"2026-05-22T12:02:04.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"7872e2ab-2428-4e34-a2f8-a3b2765fe128","direction":"outgoing","index":125676,"result_id":"baae3056-c1c3-45d6-befe-a519f62f4d70","status":200,"timestamp":"2026-05-22T12:02:04.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:04.737-04:00"},{"id":"e51ebfdd-57b9-43f9-bbbd-796797925c3b","created_at":"2026-05-22T12:02:04.883-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"79d30583-e5fa-455a-b7a9-373d0b530810","direction":"outgoing","index":125677,"result_id":"e51ebfdd-57b9-43f9-bbbd-796797925c3b","status":200,"timestamp":"2026-05-22T12:02:04.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:04.883-04:00"},{"id":"4d2b1244-8628-4d47-95dc-291fd346ac84","created_at":"2026-05-22T12:02:05.322-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a416a6a-6057-495e-ad59-295d70b60a69","direction":"outgoing","index":125678,"result_id":"4d2b1244-8628-4d47-95dc-291fd346ac84","status":200,"timestamp":"2026-05-22T12:02:05.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85","verb":"get"},{"id":"ac86f378-7cf3-48e5-a612-a68f5cb1c1f2","direction":"outgoing","index":125679,"result_id":"4d2b1244-8628-4d47-95dc-291fd346ac84","status":200,"timestamp":"2026-05-22T12:02:05.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355","verb":"get"},{"id":"df3aada4-abe4-42ed-a996-a999bd4377f6","direction":"outgoing","index":125680,"result_id":"4d2b1244-8628-4d47-95dc-291fd346ac84","status":200,"timestamp":"2026-05-22T12:02:05.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:05.322-04:00"},{"id":"77ad84f1-b236-49aa-a550-11a6570a216e","created_at":"2026-05-22T12:02:05.466-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:05.466-04:00"},{"id":"ee24c28d-4cf5-4318-b579-b326a640a208","created_at":"2026-05-22T12:02:05.474-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:05.474-04:00"},{"id":"d22a11bf-022e-4aea-80cd-36b835dad7c0","created_at":"2026-05-22T12:02:05.476-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:05.476-04:00"},{"id":"958b4aba-8681-4497-acb5-fdb436768f75","created_at":"2026-05-22T12:02:05.478-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:05.478-04:00"},{"id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","created_at":"2026-05-22T12:02:06.279-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"627df608-2aba-48f8-8071-9774801cd684","direction":"outgoing","index":125681,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"b2039e4f-82b8-48c5-98ee-792de5437f63","direction":"outgoing","index":125682,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"03d735e1-efe0-40d3-b752-442f6446a900","direction":"outgoing","index":125683,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"5e9faae9-5ded-499b-93f6-93ae4b680158","direction":"outgoing","index":125684,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.344-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"97c4a77d-9013-46cd-89f4-eff46913db44","direction":"outgoing","index":125685,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.355-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"c3f0311e-3f5d-45b2-a201-ee87b0269e3e","direction":"outgoing","index":125686,"result_id":"c5a0aaf5-edf3-4f87-bd9d-321d8073938e","status":200,"timestamp":"2026-05-22T12:02:06.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:06.279-04:00"},{"id":"4d490660-2f9d-4182-ad6b-34d01532d98e","created_at":"2026-05-22T12:02:07.145-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d5dd471f-fdd5-4a52-b372-cd2ae028da61","direction":"outgoing","index":125687,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"93fbe578-1bce-4107-8777-67c9275bfd21","direction":"outgoing","index":125688,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"af1e4ca3-4232-4c0d-a3ae-8e750d1efba6","direction":"outgoing","index":125689,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"64767484-44d1-4f4c-a8e9-352aea6ba778","direction":"outgoing","index":125690,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"58181c5f-281d-4d90-bdfb-aa6ab9ccd2d4","direction":"outgoing","index":125691,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9db78a5d-7cf5-4cf9-bab6-a8bb9e2f10a8","direction":"outgoing","index":125692,"result_id":"4d490660-2f9d-4182-ad6b-34d01532d98e","status":200,"timestamp":"2026-05-22T12:02:07.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:07.145-04:00"},{"id":"b0ba2564-6a77-43d4-8361-d5e79596a282","created_at":"2026-05-22T12:02:10.195-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"80a585e6-83b9-4915-b522-397bdad6a598","direction":"outgoing","index":125693,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"d1a7e138-f4c1-4184-821f-dd6786ec4b95","direction":"outgoing","index":125694,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2ab45f3-4a73-41ab-96d9-192079f252ed","direction":"outgoing","index":125695,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"540c6454-1a91-4931-aa52-cd6c8ddd0dc4","direction":"outgoing","index":125696,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7bcb5e6f-9176-4412-8ad6-029812fafc2f","direction":"outgoing","index":125697,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eddfe04e-ec4a-454a-a479-c22da9da065f","direction":"outgoing","index":125698,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56f65aea-37db-4542-b642-ad5f892cbc1a","direction":"outgoing","index":125699,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6037e4c2-fc00-4947-ae82-67c44545bb34","direction":"outgoing","index":125700,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6668250f-b336-4dde-a188-2af9f6a65bab","direction":"outgoing","index":125701,"result_id":"b0ba2564-6a77-43d4-8361-d5e79596a282","status":200,"timestamp":"2026-05-22T12:02:10.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:10.195-04:00"},{"id":"033ab30c-947f-4983-8ec9-48476202cef8","created_at":"2026-05-22T12:02:12.700-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"04f7893b-8ac5-406d-a719-32715e1d3644","direction":"outgoing","index":125702,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1a4569be-3bb7-4a34-ad2e-074de01878d0","direction":"outgoing","index":125703,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a414d389-4067-4f66-babb-f1fe6f242fc3","direction":"outgoing","index":125704,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56a70d63-b25b-4549-8ef0-64497509bdcb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17e8cd36-bb8a-4cc2-bcdb-c9a89168c703","direction":"outgoing","index":125705,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9b07faf9-661f-4bde-9efa-36c4471444ec","direction":"outgoing","index":125706,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d26688a-7ef5-46ff-a28e-4ed5960ede2a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed483a56-ec75-4c8f-8c2a-fe451c4e64c9","direction":"outgoing","index":125707,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"eeef24cb-6c2d-4b6a-8de3-74a2d1d1b0b0","direction":"outgoing","index":125708,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fcf1c33f-a4ce-4301-aaef-98b5c5cbb2f1","direction":"outgoing","index":125709,"result_id":"033ab30c-947f-4983-8ec9-48476202cef8","status":200,"timestamp":"2026-05-22T12:02:12.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:12.700-04:00"},{"id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","created_at":"2026-05-22T12:02:14.860-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d57c4dd9-943e-4b10-9ef3-a3ebf56e5f45","direction":"outgoing","index":125710,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"78961f6d-bdb2-4227-ac8c-e47bfe21077c","direction":"outgoing","index":125711,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2bb38184-b3c7-4290-8be4-e2cf013fe6bd","direction":"outgoing","index":125712,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0bc624e-3b97-418a-b3af-5f4e1b838734","direction":"outgoing","index":125713,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"1a7e775d-24db-4b6c-b28d-b330d425c4df","direction":"outgoing","index":125714,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9a7d99ed-233a-4d44-ab50-8479016201cd","direction":"outgoing","index":125715,"result_id":"1a920d02-083c-4e5b-8391-d4fb6de0d48c","status":200,"timestamp":"2026-05-22T12:02:14.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:14.860-04:00"},{"id":"6fb7d46d-2a3e-4baa-bd17-2f9be9e6fde6","created_at":"2026-05-22T12:02:15.050-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dfc69076-f179-4771-95d4-7b5f70d78b5d","direction":"outgoing","index":125716,"result_id":"6fb7d46d-2a3e-4baa-bd17-2f9be9e6fde6","status":200,"timestamp":"2026-05-22T12:02:15.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.050-04:00"},{"id":"a72783e1-b9bc-479b-bf8f-9d63b2ec30a0","created_at":"2026-05-22T12:02:15.487-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0c6ad4c8-276d-4148-bdde-40687b702d19","direction":"outgoing","index":125717,"result_id":"a72783e1-b9bc-479b-bf8f-9d63b2ec30a0","status":200,"timestamp":"2026-05-22T12:02:15.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85","verb":"get"},{"id":"3503f675-0e89-4aa4-a5ee-e91ddccc84fe","direction":"outgoing","index":125718,"result_id":"a72783e1-b9bc-479b-bf8f-9d63b2ec30a0","status":200,"timestamp":"2026-05-22T12:02:15.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355","verb":"get"},{"id":"170ed6dd-2a9d-4e01-a190-8bfab1c80b33","direction":"outgoing","index":125719,"result_id":"a72783e1-b9bc-479b-bf8f-9d63b2ec30a0","status":200,"timestamp":"2026-05-22T12:02:15.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.487-04:00"},{"id":"c574e906-1df5-45c3-b1b4-014038788585","created_at":"2026-05-22T12:02:15.826-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.826-04:00"},{"id":"ce67a5d0-367f-492c-9f1b-200705114e4b","created_at":"2026-05-22T12:02:15.852-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.852-04:00"},{"id":"796c9aa7-7959-47c1-b771-9ffff6605849","created_at":"2026-05-22T12:02:15.856-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.856-04:00"},{"id":"993fe253-2cfc-4d9b-80a7-fb8060d80b59","created_at":"2026-05-22T12:02:15.858-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:15.858-04:00"},{"id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","created_at":"2026-05-22T12:02:16.670-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"de666f60-c2b3-4015-8ffa-f60d7004cde8","direction":"outgoing","index":125720,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"ea3992c8-17f8-4c49-8d90-b36463d68d3d","direction":"outgoing","index":125721,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"7748e02d-4fe8-47c6-a45a-4efe351b9b5e","direction":"outgoing","index":125722,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"5d1cd734-0da9-4483-9a1f-a5ee707708d2","direction":"outgoing","index":125723,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"b86ecd85-7d37-4d51-aab6-cba763421761","direction":"outgoing","index":125724,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"b8ff5b03-f1e5-4770-b338-c2cb0a80f7a3","direction":"outgoing","index":125725,"result_id":"ee4fcd2b-9e0d-4978-b9ad-8e78d1836efa","status":200,"timestamp":"2026-05-22T12:02:16.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:16.670-04:00"},{"id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","created_at":"2026-05-22T12:02:17.583-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4bcb4817-53fe-48c3-a88f-a9c9d5997a8f","direction":"outgoing","index":125726,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"eebb63f1-008d-4c38-a8c6-de4fa792c967","direction":"outgoing","index":125727,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"869925d3-cad4-420e-bfa2-f26e21392a04","direction":"outgoing","index":125728,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b8b338fe-f6d6-44c2-b8f8-aa6586f7410d","direction":"outgoing","index":125729,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"81aa0f92-40eb-478d-b020-b588ba9a0196","direction":"outgoing","index":125730,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"112a87ca-a516-437e-9075-b92ee9ebe996","direction":"outgoing","index":125731,"result_id":"b6aaf1e4-a684-4669-b563-50f4e2da3905","status":200,"timestamp":"2026-05-22T12:02:17.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:17.583-04:00"},{"id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","created_at":"2026-05-22T12:02:19.090-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"786999ee-da05-4d51-bd2f-2be0300ab6d1","direction":"outgoing","index":125732,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"75fd9e5a-462f-4f12-9ccf-ae579fb9dadb","direction":"outgoing","index":125733,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91178954-4188-44ce-9080-b1f3f4c1e4be","direction":"outgoing","index":125734,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ba63ad6-d6bb-47fb-9cef-39e2efce1059","direction":"outgoing","index":125735,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f708a93c-1a0b-4ecb-b08c-1ca02d1c464f","direction":"outgoing","index":125736,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ba6381b-ad78-42de-9c8c-e5206a3ab990","direction":"outgoing","index":125737,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e740900c-23d2-42cf-820a-2420c72671f1","direction":"outgoing","index":125738,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"007b8f77-531e-472c-ac6c-364339f285ce","direction":"outgoing","index":125739,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccaafa21-142b-4690-ac48-a5426392a5ee","direction":"outgoing","index":125740,"result_id":"0eb74b77-eec9-4a1b-a79b-a2bbac29124e","status":200,"timestamp":"2026-05-22T12:02:19.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:19.090-04:00"},{"id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","created_at":"2026-05-22T12:02:21.846-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9b0c171e-fe1e-46e0-bede-64ecbaeda57f","direction":"outgoing","index":125741,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"eeed793e-aaab-464f-bdb4-888704e39136","direction":"outgoing","index":125742,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"78e253a1-1ef6-45b2-9cb5-2744af0c72cb","direction":"outgoing","index":125743,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7d860775-25c9-4439-83d3-4941a827ad4f","direction":"outgoing","index":125744,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3d92e500-ce2c-4c41-a2c9-ea2b65eff087","direction":"outgoing","index":125745,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7225a79f-6771-4249-bed4-4bebd7a2d064\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0609a4c4-e65d-4166-944b-a658e514ec19","direction":"outgoing","index":125746,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7225a79f-6771-4249-bed4-4bebd7a2d064\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1176b10-726b-49e9-9a98-e3a87d22bf29","direction":"outgoing","index":125747,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2b914356-69ea-46ef-8766-755b9101f2d9","direction":"outgoing","index":125748,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8047e57-b521-44c2-85ef-fac1da598c56\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce97f7cb-7724-40db-991f-2b99ee68b9c9","direction":"outgoing","index":125749,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8047e57-b521-44c2-85ef-fac1da598c56\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2f0729f-7f94-43a5-a840-2f7b721570fd","direction":"outgoing","index":125750,"result_id":"f0ffd9b7-cca4-4c42-a8e0-98e8ca492f59","status":200,"timestamp":"2026-05-22T12:02:21.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:21.846-04:00"},{"id":"51106e21-46c8-47ff-accf-27918bd8c01e","created_at":"2026-05-22T12:02:23.118-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"353e20eb-299a-4bf5-9414-eb877695ea93","direction":"outgoing","index":125751,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"088d9220-6fb4-4047-9cc0-26522c48d026","direction":"outgoing","index":125752,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7004c74b-808b-43e4-bb21-992d1dff2cc0","direction":"outgoing","index":125753,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"00198b2d-5bab-4563-9f49-3e4c3f3f1776","direction":"outgoing","index":125754,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"591bd140-51a0-4ef9-9652-42f48de61ad6","direction":"outgoing","index":125755,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b376c461-79aa-4100-8d14-a8ebb4ce874e","direction":"outgoing","index":125756,"result_id":"51106e21-46c8-47ff-accf-27918bd8c01e","status":200,"timestamp":"2026-05-22T12:02:23.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:23.118-04:00"},{"id":"25729801-75e5-4de4-9413-47134187206f","created_at":"2026-05-22T12:02:23.326-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8d71679c-2616-4517-acc8-d60df2f0c204","direction":"outgoing","index":125757,"result_id":"25729801-75e5-4de4-9413-47134187206f","status":200,"timestamp":"2026-05-22T12:02:23.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:23.326-04:00"},{"id":"41ab7d4d-54fc-4ec5-a708-d9808f4e959d","created_at":"2026-05-22T12:02:23.814-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d9e8f306-065d-4a08-af47-44e7182702a5","direction":"outgoing","index":125758,"result_id":"41ab7d4d-54fc-4ec5-a708-d9808f4e959d","status":200,"timestamp":"2026-05-22T12:02:23.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85","verb":"get"},{"id":"86c013dd-6f2f-402a-9253-f263b90aa026","direction":"outgoing","index":125759,"result_id":"41ab7d4d-54fc-4ec5-a708-d9808f4e959d","status":200,"timestamp":"2026-05-22T12:02:23.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355","verb":"get"},{"id":"45e9f26a-5347-4bda-b6a5-ddc23cb52ca5","direction":"outgoing","index":125760,"result_id":"41ab7d4d-54fc-4ec5-a708-d9808f4e959d","status":200,"timestamp":"2026-05-22T12:02:23.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:23.814-04:00"},{"id":"2d9e23a9-1455-4c4d-9ba7-259abf76ff01","created_at":"2026-05-22T12:02:24.233-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:24.233-04:00"},{"id":"6cd6d08c-089a-406a-9197-a9ef558ce0d0","created_at":"2026-05-22T12:02:24.252-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:24.252-04:00"},{"id":"cfd01914-6e38-49b2-8e05-2cd58944e5f2","created_at":"2026-05-22T12:02:24.256-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:24.256-04:00"},{"id":"2f567f41-9cce-4aee-94c7-d3cf544049ef","created_at":"2026-05-22T12:02:24.259-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:24.259-04:00"},{"id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","created_at":"2026-05-22T12:02:25.151-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d838a4a-4cfd-4d13-88f6-08df54caa04a","direction":"outgoing","index":125761,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"233740c4-356d-4a61-8ca5-00404e1e1888","direction":"outgoing","index":125762,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"34c18874-3931-4200-9250-24263f33e995","direction":"outgoing","index":125763,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"368b989d-96c6-46d5-8d90-11120ce4da70","direction":"outgoing","index":125764,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"49906ed9-0e46-4f25-8d43-01ee09ecb43e","direction":"outgoing","index":125765,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"de283aed-d9df-49e1-8301-06fc891cd35d","direction":"outgoing","index":125766,"result_id":"1dc1ffa0-0805-4751-bdb0-8fb24577027d","status":200,"timestamp":"2026-05-22T12:02:25.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:25.151-04:00"},{"id":"02e920be-ecee-4e70-a9df-d217e738894c","created_at":"2026-05-22T12:02:26.263-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"99a55be6-7c6b-4c86-8e12-3d1723112c6a","direction":"outgoing","index":125767,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"994e9b08-3a07-4afd-8f2f-e09d98d4de27","direction":"outgoing","index":125768,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4b9a2371-55bb-4507-9cd4-d578b6a4e98f","direction":"outgoing","index":125769,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"a6a95a39-0218-4cb6-9fcf-a970e2d0b2e4","direction":"outgoing","index":125770,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c718cfb6-3ab5-4481-b42f-e1e700a58e5c","direction":"outgoing","index":125771,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"10eca853-4d84-4758-9dec-826f2d06cf37","direction":"outgoing","index":125772,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"dfe209cc-f343-4cd6-9bbb-bb288ee7a4c4","direction":"outgoing","index":125773,"result_id":"02e920be-ecee-4e70-a9df-d217e738894c","status":200,"timestamp":"2026-05-22T12:02:26.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:26.263-04:00"},{"id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","created_at":"2026-05-22T12:02:28.300-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"80bc13e0-daa3-4f3f-bc9a-fdcd7d953c43","direction":"outgoing","index":125774,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"a65bf829-15b3-4828-a274-4397d16c1fda","direction":"outgoing","index":125775,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"79390589-ae68-4708-85ae-3e70bab4b8b4","direction":"outgoing","index":125776,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"252960f3-0683-4197-b858-ca489d4189f2","direction":"outgoing","index":125777,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b38b8819-bb0e-4724-b9f4-2077b21d8ab9","direction":"outgoing","index":125778,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ae53f5e-7cd5-4a6a-b8a3-e129374985af","direction":"outgoing","index":125779,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5fcac62-3789-422c-aff5-726e97259aaf","direction":"outgoing","index":125780,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de000dd9-5e15-417e-b9c9-19f715737903","direction":"outgoing","index":125781,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bb98089c-11c0-4486-b613-5f385d3df753","direction":"outgoing","index":125782,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a377e3e0-bdea-4b6f-ad54-e179856b7efa","direction":"outgoing","index":125783,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e4b0fb2e-93c6-476a-9156-f2a594ba2269","direction":"outgoing","index":125784,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe4ea602-de12-4d40-8b67-f2252d30444b","direction":"outgoing","index":125785,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee434d93-ddcd-4ef9-9ed8-c12a2d6fd329\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc5f4090-4a73-40cf-ba79-45b497f672e2","direction":"outgoing","index":125786,"result_id":"e0bcaf09-f68f-410e-9aef-7d2d3ede97f6","status":200,"timestamp":"2026-05-22T12:02:28.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:28.300-04:00"},{"id":"b705497c-fcae-4d81-8336-a7f29a7bea81","created_at":"2026-05-22T12:02:29.473-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1f001088-3f87-4d46-b88c-603f79303f5e","direction":"outgoing","index":125787,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"062c300b-96af-4278-83ab-f6b254a610df","direction":"outgoing","index":125788,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"708ff2f3-e18c-49a8-98a6-63434f05741c","direction":"outgoing","index":125789,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"25b863f9-86b1-4724-8675-49c8ca32464a","direction":"outgoing","index":125790,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"fb2075ef-860b-4814-8fab-d5a346e16884","direction":"outgoing","index":125791,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"352e8bb8-16cb-4829-9988-2f460aa9afb7","direction":"outgoing","index":125792,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.554-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"cba5358a-cc51-49a3-a975-308051475ba0","direction":"outgoing","index":125793,"result_id":"b705497c-fcae-4d81-8336-a7f29a7bea81","status":200,"timestamp":"2026-05-22T12:02:29.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:29.473-04:00"},{"id":"d185459b-7c18-43fc-9116-4d3cfeb19036","created_at":"2026-05-22T12:02:29.953-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"831a98fe-bd9a-4b46-91b1-5e4d76e1394c","direction":"outgoing","index":125794,"result_id":"d185459b-7c18-43fc-9116-4d3cfeb19036","status":200,"timestamp":"2026-05-22T12:02:29.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"44ddb65a-b87e-44ad-90b8-fbbddf9bb3ad","direction":"outgoing","index":125795,"result_id":"d185459b-7c18-43fc-9116-4d3cfeb19036","status":200,"timestamp":"2026-05-22T12:02:29.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"2caf40b9-8978-4a55-a3d8-853260869360","direction":"outgoing","index":125796,"result_id":"d185459b-7c18-43fc-9116-4d3cfeb19036","status":200,"timestamp":"2026-05-22T12:02:29.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:29.953-04:00"},{"id":"3143fe57-71b1-4040-9fe0-3c9789c4e088","created_at":"2026-05-22T12:02:30.133-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9d717f40-5280-446f-b637-7726c6d49c48","direction":"outgoing","index":125797,"result_id":"3143fe57-71b1-4040-9fe0-3c9789c4e088","status":200,"timestamp":"2026-05-22T12:02:30.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:30.133-04:00"},{"id":"a0a59043-57c9-462c-8ca1-5cd1cf8e74f3","created_at":"2026-05-22T12:02:30.628-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c551a313-daf4-4d00-86b9-4f32f585e83e","direction":"outgoing","index":125798,"result_id":"a0a59043-57c9-462c-8ca1-5cd1cf8e74f3","status":200,"timestamp":"2026-05-22T12:02:30.631-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"68fa8ab9-80b3-40d6-ae54-559f9f20fe37","direction":"outgoing","index":125799,"result_id":"a0a59043-57c9-462c-8ca1-5cd1cf8e74f3","status":200,"timestamp":"2026-05-22T12:02:30.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"173678f3-448f-484b-b75b-e5ebb2ee5450","direction":"outgoing","index":125800,"result_id":"a0a59043-57c9-462c-8ca1-5cd1cf8e74f3","status":200,"timestamp":"2026-05-22T12:02:30.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:30.628-04:00"},{"id":"e6d2021e-9996-4fcd-b813-ddf747d289f8","created_at":"2026-05-22T12:02:31.329-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:31.329-04:00"},{"id":"efcf79c9-1553-4b94-87e0-351b89f5b65d","created_at":"2026-05-22T12:02:31.374-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:31.374-04:00"},{"id":"ce4c5990-1964-4928-929e-f2e5e6984fe0","created_at":"2026-05-22T12:02:31.889-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9bd999af-c3bf-4f91-8526-3c6025e22f15","direction":"outgoing","index":125801,"result_id":"ce4c5990-1964-4928-929e-f2e5e6984fe0","status":200,"timestamp":"2026-05-22T12:02:31.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/be5b9ebc-6416-42be-abbf-c99363774f10","verb":"get"},{"id":"67da65bd-7bb1-4c79-a345-033083004f99","direction":"outgoing","index":125802,"result_id":"ce4c5990-1964-4928-929e-f2e5e6984fe0","status":200,"timestamp":"2026-05-22T12:02:31.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"cfd897a6-81d2-43c6-975b-cb7f1c94877e","direction":"outgoing","index":125803,"result_id":"ce4c5990-1964-4928-929e-f2e5e6984fe0","status":200,"timestamp":"2026-05-22T12:02:31.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:31.889-04:00"},{"id":"d449a395-a8a4-456e-9ced-a58c72bd8c8e","created_at":"2026-05-22T12:02:31.954-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:31.954-04:00"},{"id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","created_at":"2026-05-22T12:02:32.895-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7062b8f5-4fbf-41ea-81af-1d9aaabf2025","direction":"outgoing","index":125804,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"75d19666-138e-41ef-bbf1-371eebb1ce7b","direction":"outgoing","index":125805,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"41cf8f0d-8927-4c2d-b8c3-727139036972","direction":"outgoing","index":125806,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"dccad899-d1b9-44cd-b4d6-5daf2e4dffe1","direction":"outgoing","index":125807,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"6c576cf3-acb1-46e1-9b7d-fcb1dcc00615","direction":"outgoing","index":125808,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"f00e3ce1-77e3-4015-a37d-5e0574955cb7","direction":"outgoing","index":125809,"result_id":"e38c3e27-e42d-4d99-aebb-efb52fcec3ae","status":200,"timestamp":"2026-05-22T12:02:32.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:32.895-04:00"},{"id":"e350c784-6632-46df-ae66-630e5373c0ba","created_at":"2026-05-22T12:02:33.818-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bda255d0-9c6d-41cd-bfb7-731163d0be85","direction":"outgoing","index":125810,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"876cefd9-0b79-4166-ac2c-ccb884a7f21c","direction":"outgoing","index":125811,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a6420cfa-4806-42cf-b56c-826a996300c6","direction":"outgoing","index":125812,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.842-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"08047b1f-f340-4221-a748-fd605fff07a4","direction":"outgoing","index":125813,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"07f4d3bb-aa31-46c2-a60f-72339e43eb64","direction":"outgoing","index":125814,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"47d4a23e-b708-44a9-a64a-8045566d1808","direction":"outgoing","index":125815,"result_id":"e350c784-6632-46df-ae66-630e5373c0ba","status":200,"timestamp":"2026-05-22T12:02:33.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:33.818-04:00"},{"id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","created_at":"2026-05-22T12:02:35.440-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cc86494a-d8d0-4037-a46a-d9ad78899298","direction":"outgoing","index":125816,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"06a1fc6a-3de7-4754-9a0b-dcba777e32f9","direction":"outgoing","index":125817,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1e5f475-069e-4e83-8ff6-8482eb03074a","direction":"outgoing","index":125818,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2a77e526-ad01-4c12-97f8-793a3a1dddf9","direction":"outgoing","index":125819,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"28c89e04-1dd9-4055-9e43-910960cc4f9a","direction":"outgoing","index":125820,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"70c9129d-2780-4a18-b6e4-fa9d389916d7","direction":"outgoing","index":125821,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07be8709-37df-4e15-b15a-830ca62d14f9","direction":"outgoing","index":125822,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"c8da59f9-5166-443c-9d4c-fecb237f6184","direction":"outgoing","index":125823,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76b48178-725a-402e-a7d0-ea0ce7daf82d","direction":"outgoing","index":125824,"result_id":"7428db2a-7f3e-49b2-aed7-d3b783c2e90a","status":200,"timestamp":"2026-05-22T12:02:35.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:35.440-04:00"},{"id":"db2b2715-a962-4cff-bac7-df917758b160","created_at":"2026-05-22T12:02:38.928-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fbda6c16-12f4-40f5-932b-bd9e049c29f0","direction":"outgoing","index":125825,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"86641634-8dd9-438b-b31a-a08580381e8c","direction":"outgoing","index":125826,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f30d4bb2-d02c-48b6-b382-5e465b7a0b19","direction":"outgoing","index":125827,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d37617e2-0a49-4dc6-aedd-0d056f144169\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"681c8162-c58c-44e6-bf76-7be3c5517ffa","direction":"outgoing","index":125828,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e4418a5d-6d5f-4cf2-a204-a2944835f416","direction":"outgoing","index":125829,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=666f7470-e0ca-4f9f-9b9a-30ba73ff44c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6aacec9-0aed-4a35-8ea9-0b9357a3b53c","direction":"outgoing","index":125830,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"bec0b861-1cbe-4fef-b934-a36b58909212","direction":"outgoing","index":125831,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:39.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29c5eaa7-5277-40f4-aab3-e7df800b2e0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26752d94-8fc7-4722-98cf-f73725be2c81","direction":"outgoing","index":125832,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:39.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"97c296af-216c-45d0-b1c8-58d57d819173","direction":"outgoing","index":125833,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:39.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9176c79d-28ba-41ad-8082-82059f4a3b00\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e30c9e4c-d2c2-4725-b588-2dba4c934476","direction":"outgoing","index":125834,"result_id":"db2b2715-a962-4cff-bac7-df917758b160","status":200,"timestamp":"2026-05-22T12:02:39.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:38.928-04:00"},{"id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","created_at":"2026-05-22T12:02:39.936-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ed8d2fad-6fd8-4217-a1bd-4b9a3c8d437c","direction":"outgoing","index":125835,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:39.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"66598e95-d975-4fd3-8a4d-e4f74f7ac434","direction":"outgoing","index":125836,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:39.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7feda1b-aba4-415e-af54-6cbed775680c","direction":"outgoing","index":125837,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:40.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a79d2aca-0541-4a94-9295-1725fde66455","direction":"outgoing","index":125838,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:40.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"518ab902-c07c-4bce-8029-1a647adfae6f","direction":"outgoing","index":125839,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:40.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50d57d33-65f8-4b09-864c-7a49e995ed74","direction":"outgoing","index":125840,"result_id":"d30895dc-d1b2-4445-9efc-7f4ab353fb62","status":200,"timestamp":"2026-05-22T12:02:40.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:39.936-04:00"},{"id":"ba074ce9-da55-452d-a683-ead8733fd3f2","created_at":"2026-05-22T12:02:40.296-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"47350cf4-1108-4f05-a845-d86bab655cd7","direction":"outgoing","index":125841,"result_id":"ba074ce9-da55-452d-a683-ead8733fd3f2","status":200,"timestamp":"2026-05-22T12:02:40.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:40.296-04:00"},{"id":"02208ade-49f8-4758-9941-a2d2b3799b69","created_at":"2026-05-22T12:02:40.759-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3d327c3f-fbf7-45d1-8691-28d4669345e1","direction":"outgoing","index":125842,"result_id":"02208ade-49f8-4758-9941-a2d2b3799b69","status":200,"timestamp":"2026-05-22T12:02:40.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85","verb":"get"},{"id":"6baff63e-2b79-4d93-9fb1-b1963e0025eb","direction":"outgoing","index":125843,"result_id":"02208ade-49f8-4758-9941-a2d2b3799b69","status":200,"timestamp":"2026-05-22T12:02:40.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355","verb":"get"},{"id":"c1e29c8c-e526-491c-9807-e464afcb77c9","direction":"outgoing","index":125844,"result_id":"02208ade-49f8-4758-9941-a2d2b3799b69","status":200,"timestamp":"2026-05-22T12:02:40.798-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:40.759-04:00"},{"id":"9066dbe8-0f70-4310-a621-202f1477f419","created_at":"2026-05-22T12:02:42.067-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:42.067-04:00"},{"id":"0c2f8dd4-73be-4315-afc4-2bee906e9f56","created_at":"2026-05-22T12:02:42.101-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:42.101-04:00"},{"id":"ac80093f-9d7d-4df1-a414-1b4ea4bdaf91","created_at":"2026-05-22T12:02:42.104-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:42.104-04:00"},{"id":"e1dda9ea-a619-45a0-87c4-b1f9156cab75","created_at":"2026-05-22T12:02:42.105-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:42.105-04:00"},{"id":"43f3752a-213f-42f3-b63a-3b50b5472e12","created_at":"2026-05-22T12:02:46.192-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"deef6395-2080-400c-9f44-e5f97326876e","direction":"outgoing","index":125845,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"9de1c560-55a8-4062-ab82-26fecc4233ab","direction":"outgoing","index":125846,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"21e94d1e-c10f-4274-b250-39b7db089c32","direction":"outgoing","index":125847,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"ef2d22b9-9c14-49f2-8c57-4903ff40b9e6","direction":"outgoing","index":125848,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"1ce5bbb7-bb77-426d-b4cc-233496ab8369","direction":"outgoing","index":125849,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"71aede9b-db9c-4cc2-a109-0df44839dd4c","direction":"outgoing","index":125850,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.287-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"68e5c6fd-9384-4709-abab-0624bf9d5704","direction":"outgoing","index":125851,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"57ba60ae-6fdb-4afa-b484-6f55a59bcc50","direction":"outgoing","index":125852,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"be404216-73ab-4f26-8f1c-c48a3b179b46","direction":"outgoing","index":125853,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"5d9846d2-934f-465b-ba9a-3552b1db185e","direction":"outgoing","index":125854,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"4e85d9f6-7844-4459-baaf-575fa5f96b97","direction":"outgoing","index":125855,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"2d8a8887-0519-43ab-a09b-53d6db031ca1","direction":"outgoing","index":125856,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b09ea3ac-ab1e-47d7-bd29-f690e34b8eb2","direction":"outgoing","index":125857,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"3f6cd50a-9880-41aa-921f-a9afcf36e489","direction":"outgoing","index":125858,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"ee8e6d82-fee0-49f4-b0e6-9d02a79b0ac4","direction":"outgoing","index":125859,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"8680b831-c84c-400b-aa38-2489954fa30f","direction":"outgoing","index":125860,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ab5f7d17-e7ce-4f02-945f-0b2e6ea9f183","direction":"outgoing","index":125861,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14b1512c-4fc7-427c-acd6-cd36d11bfe85","direction":"outgoing","index":125862,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d8adc9e-0833-4e2a-b4d1-2745942e2ff0","direction":"outgoing","index":125863,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.546-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"8819458d-bcab-428b-8567-16591ce30e37","direction":"outgoing","index":125864,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"d99b56a7-885b-4dd4-b7dd-d847f7784d11","direction":"outgoing","index":125865,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"d426886f-1899-4479-9538-466bf6105c1a","direction":"outgoing","index":125866,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7d2fe3dc-ecd4-4742-b6c9-7fc3fc639fd0","direction":"outgoing","index":125867,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"9ab9717a-d33c-4c66-b937-1932f8126f52","direction":"outgoing","index":125868,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"8dea0526-cabc-485c-a180-6e40b6cde190","direction":"outgoing","index":125869,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"2ce1c531-1fee-411d-ab2c-38447d4a2cca","direction":"outgoing","index":125870,"result_id":"43f3752a-213f-42f3-b63a-3b50b5472e12","status":200,"timestamp":"2026-05-22T12:02:46.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:46.192-04:00"},{"id":"3c152876-58fa-4a53-9c60-80a92064f5ef","created_at":"2026-05-22T12:02:47.575-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a484b2b7-c331-411a-97c9-a47966d49651","direction":"outgoing","index":125871,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"215ee674-9851-4844-9338-9fedbaa5da68","direction":"outgoing","index":125872,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"495c8cd0-7297-4b95-9eff-74e902739e4f","direction":"outgoing","index":125873,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"f07c820b-37e9-45ad-8d6d-9a1e97c04c22","direction":"outgoing","index":125874,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cd539105-9ba1-4971-ab82-427f4a63fc04","direction":"outgoing","index":125875,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"06b627bf-b4c5-4fb8-8052-2aa1b3c6eac7","direction":"outgoing","index":125876,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"30c97b1b-0f95-4f54-8068-6f50fff5460b","direction":"outgoing","index":125877,"result_id":"3c152876-58fa-4a53-9c60-80a92064f5ef","status":200,"timestamp":"2026-05-22T12:02:47.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:47.575-04:00"},{"id":"cbd705af-258f-4332-bc99-4378f7b19d6c","created_at":"2026-05-22T12:02:48.225-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c8e25a56-03c9-465f-9845-b9b5ac9c6c0f","direction":"outgoing","index":125878,"result_id":"cbd705af-258f-4332-bc99-4378f7b19d6c","status":200,"timestamp":"2026-05-22T12:02:48.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"0b2aa70e-8d86-4470-8211-dbc167399cc3","direction":"outgoing","index":125879,"result_id":"cbd705af-258f-4332-bc99-4378f7b19d6c","status":200,"timestamp":"2026-05-22T12:02:48.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"d890fa7a-21e5-423a-b7de-422adb38fed9","direction":"outgoing","index":125880,"result_id":"cbd705af-258f-4332-bc99-4378f7b19d6c","status":200,"timestamp":"2026-05-22T12:02:48.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"ff3593ee-1219-42cf-9a2c-5c33129e160f","direction":"outgoing","index":125881,"result_id":"cbd705af-258f-4332-bc99-4378f7b19d6c","status":200,"timestamp":"2026-05-22T12:02:48.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:48.225-04:00"},{"id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","created_at":"2026-05-22T12:02:49.279-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a8c2aaec-aa5f-43ad-8aa8-65db041115e4","direction":"outgoing","index":125882,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2b9ce284-6938-45a0-a03c-c913eb31370a","direction":"outgoing","index":125883,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9f794b11-1adb-4f0a-b0be-e6a42f1ad713","direction":"outgoing","index":125884,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1d01b808-3c58-4af2-addf-9c21c5c125d0","direction":"outgoing","index":125885,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9847e26c-0054-4f96-aff3-8e182a502ab1","direction":"outgoing","index":125886,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.341-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e1d59980-9a6f-4104-9e9e-5bfda3a17cfb","direction":"outgoing","index":125887,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"90bd89f4-aafa-4d57-a134-f8780040660a","direction":"outgoing","index":125888,"result_id":"c9f506bf-c2fd-46c8-9fd0-8cc2237de3e3","status":200,"timestamp":"2026-05-22T12:02:49.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:49.279-04:00"},{"id":"e9450f88-66b2-41e6-ae03-b8a4d11f7638","created_at":"2026-05-22T12:02:49.724-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c2904a2e-c250-43cb-9e5d-4e9432bc3412","direction":"outgoing","index":125889,"result_id":"e9450f88-66b2-41e6-ae03-b8a4d11f7638","status":200,"timestamp":"2026-05-22T12:02:49.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"4ca38926-b2a4-4660-aa7c-ed04f0c4833f","direction":"outgoing","index":125890,"result_id":"e9450f88-66b2-41e6-ae03-b8a4d11f7638","status":200,"timestamp":"2026-05-22T12:02:49.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"4d82f11e-17d8-4842-9618-188dc110c213","direction":"outgoing","index":125891,"result_id":"e9450f88-66b2-41e6-ae03-b8a4d11f7638","status":200,"timestamp":"2026-05-22T12:02:49.749-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:49.724-04:00"},{"id":"1a1b9e08-af5b-4a74-b7c9-21ffe003a0ad","created_at":"2026-05-22T12:02:49.870-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ef33b7a5-9001-4b59-b9bc-d0880c187237","direction":"outgoing","index":125892,"result_id":"1a1b9e08-af5b-4a74-b7c9-21ffe003a0ad","status":200,"timestamp":"2026-05-22T12:02:49.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:49.870-04:00"},{"id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","created_at":"2026-05-22T12:02:54.123-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7e93b3c7-4f86-4055-ba04-6a4e773318bb","direction":"outgoing","index":125893,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"e321f4c2-3fa5-4958-aaa9-6da71ad0980a","direction":"outgoing","index":125894,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"c0fda954-be94-4029-9709-09efcc5da218","direction":"outgoing","index":125895,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"ea716ef8-9794-4478-94cd-102654c5f4b2","direction":"outgoing","index":125896,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"515e3d23-8529-4e07-95e6-b1948b4692e1","direction":"outgoing","index":125897,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"def4113f-bdbd-491c-832f-bfdfe82a67a5","direction":"outgoing","index":125898,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"4106c818-9733-40f0-b9ad-87ba7f5ada76","direction":"outgoing","index":125899,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"a4c5307d-6ea5-45c9-a045-a5299485b9f4","direction":"outgoing","index":125900,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"19608f7e-3a4c-400a-bfec-733d558b1780","direction":"outgoing","index":125901,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"990a9bed-8b8a-42f2-96bb-942a50785f12","direction":"outgoing","index":125902,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"7eec2ddb-bd12-443a-a3b8-b1732ca18642","direction":"outgoing","index":125903,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"d60d93d3-b8e1-4bac-888d-55f4ab9d863a","direction":"outgoing","index":125904,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"2e61aa27-8e98-4c22-b5e4-43935fb5d6d4","direction":"outgoing","index":125905,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"fb28e116-a3e4-4b8b-86c8-3324ccc22980","direction":"outgoing","index":125906,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4924408a-de53-46c6-8116-be82aa6ba497\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d387b1c0-aaf3-4665-ac19-e72c175e7e6f","direction":"outgoing","index":125907,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4924408a-de53-46c6-8116-be82aa6ba497\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9fe3d42-7e92-4884-8573-0be3434364c9","direction":"outgoing","index":125908,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"ec1949c3-86a1-4611-b275-8fafb4878a4a","direction":"outgoing","index":125909,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"9f4cd2c0-36bc-44bf-a361-27874b5b90ea","direction":"outgoing","index":125910,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"e6352410-e243-4c85-9385-fd798686fe1c","direction":"outgoing","index":125911,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"0ba4545c-5b51-4379-bfbf-8a36c79bdc22","direction":"outgoing","index":125912,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"8b5c27ab-4d8f-4515-a3ac-a5f0ce98c5c1","direction":"outgoing","index":125913,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"8e429e70-3f85-44f2-9b4d-36cc56c3dfe9","direction":"outgoing","index":125914,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"f63f2687-9e34-4e16-b2a1-5df797b0e966","direction":"outgoing","index":125915,"result_id":"6957f4e1-8aac-4e91-b0f1-267658f7cbd5","status":200,"timestamp":"2026-05-22T12:02:54.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:54.123-04:00"},{"id":"afbbe33a-4f9b-4133-a41a-9370340b0ce4","created_at":"2026-05-22T12:02:56.071-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:56.071-04:00"},{"id":"8ae5ce6f-6ba4-416f-b7da-90b6f714ccd3","created_at":"2026-05-22T12:02:56.242-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:56.242-04:00"},{"id":"c760a832-f985-4f3b-9240-b0e7fc2c74ce","created_at":"2026-05-22T12:02:56.244-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:56.244-04:00"},{"id":"1e2225e1-4e8d-4a5c-aea7-1571424618ad","created_at":"2026-05-22T12:02:56.245-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:56.245-04:00"},{"id":"81379721-c090-4513-81ce-884ebd388594","created_at":"2026-05-22T12:02:57.024-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4e62bbcf-3a9c-4e73-bbd5-0b707fb7037a","direction":"outgoing","index":125916,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"bb379da9-ac22-41d8-9341-b4821db39214","direction":"outgoing","index":125917,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"b33a72c0-cb3e-493e-83f5-ceaaf3f604b1","direction":"outgoing","index":125918,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"f2c678a3-1bb1-489f-a53a-2edf577d21c0","direction":"outgoing","index":125919,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"560d89fa-9ba5-4765-bf9a-90957c8ee1ba","direction":"outgoing","index":125920,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"0ee2c321-5993-4601-b091-35c60baaa798","direction":"outgoing","index":125921,"result_id":"81379721-c090-4513-81ce-884ebd388594","status":200,"timestamp":"2026-05-22T12:02:57.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:57.024-04:00"},{"id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","created_at":"2026-05-22T12:02:57.919-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cbc2a55c-aab2-47b1-8e0b-bdda050080e5","direction":"outgoing","index":125922,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:57.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0bcbc7e9-3385-4795-98f8-d158fa91535c","direction":"outgoing","index":125923,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:57.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a16a3250-4af5-44a6-b1c3-959151f6fd2e","direction":"outgoing","index":125924,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:57.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5ce19f8d-dcd5-47c6-882d-c6b45de9aa6c","direction":"outgoing","index":125925,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:57.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"56914de0-af62-4011-99de-81e4c82d8df7","direction":"outgoing","index":125926,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:57.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"53105fe6-e98d-48f8-93d3-c2141780f09f","direction":"outgoing","index":125927,"result_id":"cd4fcbc2-c06b-4b2c-aba4-0973e1405ac8","status":200,"timestamp":"2026-05-22T12:02:58.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:57.919-04:00"},{"id":"f39c9253-9674-43ec-94ea-dab2434dcd42","created_at":"2026-05-22T12:02:59.453-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"aa488ca1-1c28-4b7d-923b-d39671256a53","direction":"outgoing","index":125928,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b052c0ef-bb8a-4da5-b5b1-d5625506b686","direction":"outgoing","index":125929,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"999d9b76-9fa3-4d3d-abe7-3d265e0b7664","direction":"outgoing","index":125930,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e18c977-7570-4cd4-b424-8ae78f70ce99","direction":"outgoing","index":125931,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f53c0ea5-f88c-4306-a193-775293f33efa","direction":"outgoing","index":125932,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c078697d-945b-43b7-96b4-b99fbe8d7018","direction":"outgoing","index":125933,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c2d42e2-3503-4f73-8c26-71faa8188a2a","direction":"outgoing","index":125934,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"4fbba287-1426-486f-b1f6-3a82793f06ff","direction":"outgoing","index":125935,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c3d0b76-e122-4e69-9f85-4c0e3394e208","direction":"outgoing","index":125936,"result_id":"f39c9253-9674-43ec-94ea-dab2434dcd42","status":200,"timestamp":"2026-05-22T12:02:59.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:02:59.453-04:00"},{"id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","created_at":"2026-05-22T12:03:02.197-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"17923c75-593d-417a-a0f9-0531c3de7ea9","direction":"outgoing","index":125937,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"da167f25-9e33-497e-bbc0-a826e41eff0e","direction":"outgoing","index":125938,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"32295bf1-118b-46d4-aa60-674bd19d2d2e","direction":"outgoing","index":125939,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3793ca7f-d148-4cda-a8af-27928b5bb26e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83b05706-ee10-4492-86d8-87627a551194","direction":"outgoing","index":125940,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3793ca7f-d148-4cda-a8af-27928b5bb26e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2098b9a6-9051-40f8-8bdb-331d0311e699","direction":"outgoing","index":125941,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4e0db4e4-b6d0-48f5-afe2-53cb21134a4f","direction":"outgoing","index":125942,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba6e7143-0b60-4bfc-b228-5e3ed2ef8c74\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c3f0624-93cb-42e3-af5c-52a1c6f6c7d7","direction":"outgoing","index":125943,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba6e7143-0b60-4bfc-b228-5e3ed2ef8c74\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"08eef748-b6cb-4614-bb24-86e66af7eb9a","direction":"outgoing","index":125944,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c41a9112-5d7e-4bf9-9ede-3c8e9f2b25e0","direction":"outgoing","index":125945,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"685d5833-c377-4b87-83a9-bf0e7694b8ec","direction":"outgoing","index":125946,"result_id":"e89b746c-4e24-42d5-ad35-9e2df05a015c","status":200,"timestamp":"2026-05-22T12:03:02.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:02.197-04:00"},{"id":"3328fadf-9b30-4887-8779-3f91c97b2944","created_at":"2026-05-22T12:03:03.525-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d50056cb-f6d7-4ba4-a0f4-0271bf13ff82","direction":"outgoing","index":125947,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"856fea12-ec7c-4fdb-97ad-e441d2ea4483","direction":"outgoing","index":125948,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff5f8fc-0256-4e9a-9feb-7d89ce275192","direction":"outgoing","index":125949,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0700092b-518f-40a4-ba78-a0e9bc91d3d4","direction":"outgoing","index":125950,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"560f8c1b-eed3-4c91-ba7a-4f8b057e7d39","direction":"outgoing","index":125951,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17b1a6c5-597d-48ab-bfe9-05d2d7a4894d","direction":"outgoing","index":125952,"result_id":"3328fadf-9b30-4887-8779-3f91c97b2944","status":200,"timestamp":"2026-05-22T12:03:03.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:03.525-04:00"},{"id":"09bcec8c-d0cc-44d9-981f-0ffab42ebe6c","created_at":"2026-05-22T12:03:03.742-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ebd978fe-015d-4aad-8045-b96a51166720","direction":"outgoing","index":125953,"result_id":"09bcec8c-d0cc-44d9-981f-0ffab42ebe6c","status":200,"timestamp":"2026-05-22T12:03:03.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:03.742-04:00"},{"id":"40701f00-99d2-4d9a-989c-b7953b31176d","created_at":"2026-05-22T12:03:04.200-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dcc3454b-3a35-4f76-8227-ee83fa721ce5","direction":"outgoing","index":125954,"result_id":"40701f00-99d2-4d9a-989c-b7953b31176d","status":200,"timestamp":"2026-05-22T12:03:04.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85","verb":"get"},{"id":"b9b75b78-0427-4519-80c7-63ec2b0d1322","direction":"outgoing","index":125955,"result_id":"40701f00-99d2-4d9a-989c-b7953b31176d","status":200,"timestamp":"2026-05-22T12:03:04.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355","verb":"get"},{"id":"3bfb85a0-fc6f-4e8b-beb5-f9c01c65421a","direction":"outgoing","index":125956,"result_id":"40701f00-99d2-4d9a-989c-b7953b31176d","status":200,"timestamp":"2026-05-22T12:03:04.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:04.200-04:00"},{"id":"6cbd0c05-5659-4021-b1df-874af0b22b3c","created_at":"2026-05-22T12:03:04.324-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:04.324-04:00"},{"id":"c55cb80f-136c-49a8-893c-0d15f4e0c635","created_at":"2026-05-22T12:03:04.331-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:04.331-04:00"},{"id":"46a18a98-ea3e-43ec-8920-1b6052c58d8d","created_at":"2026-05-22T12:03:04.333-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:04.333-04:00"},{"id":"1be10195-8198-4de8-9632-22379e9b3e73","created_at":"2026-05-22T12:03:04.335-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:04.335-04:00"},{"id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","created_at":"2026-05-22T12:03:05.132-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4d7b26ad-5c5d-4704-8391-9fcf9401415d","direction":"outgoing","index":125957,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"a9c56439-2464-4dab-8628-06c3e757559e","direction":"outgoing","index":125958,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"7a4bee7d-640a-445c-bb3d-3d3ae4882e4b","direction":"outgoing","index":125959,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"9d6cb640-d15e-4110-98d6-38c887233585","direction":"outgoing","index":125960,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"548989d4-b8de-4c45-a900-aabf5c8268aa","direction":"outgoing","index":125961,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"6ad03935-8ee1-4958-9a2e-21936472d3f2","direction":"outgoing","index":125962,"result_id":"3388ff8a-f63d-4d43-9550-9ae02f877e0e","status":200,"timestamp":"2026-05-22T12:03:05.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:05.132-04:00"},{"id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","created_at":"2026-05-22T12:03:06.041-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"efafc5b6-1324-4c29-b747-c1ba83aad06f","direction":"outgoing","index":125963,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"17f6428e-044b-430f-a2bf-c317e63463fc","direction":"outgoing","index":125964,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"736522fa-0963-4a9c-ac5d-12a7f419eda4","direction":"outgoing","index":125965,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"bd5481b8-fe24-4897-ae6d-32f33d4e59e7","direction":"outgoing","index":125966,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"cd450b13-9db8-4ccd-aa52-ab2f45356ca6","direction":"outgoing","index":125967,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2231d187-3046-450c-87f1-35131e9b8753","direction":"outgoing","index":125968,"result_id":"d31a0257-1541-4ca0-8fdf-0f5976d20b1d","status":200,"timestamp":"2026-05-22T12:03:06.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:06.041-04:00"},{"id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","created_at":"2026-05-22T12:03:07.716-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8cc5e519-e593-4b81-a318-5509a96dc610","direction":"outgoing","index":125969,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8c993edd-077b-41f4-984d-3aea8e27eb3d","direction":"outgoing","index":125970,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64dbd571-ad01-4082-a099-376477077296","direction":"outgoing","index":125971,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8a53332-b540-4ace-984f-2dc2ca5b0a6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd6bac8f-39f9-4aec-801e-c28972bb553d","direction":"outgoing","index":125972,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2b82a6ec-6b4a-4f26-8a4f-71e436e7fe28","direction":"outgoing","index":125973,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d8cef43-3589-47fd-ad05-33f268043a05","direction":"outgoing","index":125974,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=915000db-bbfc-4327-8f0e-a0e34738f3b4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2dfa066-a344-4b14-a2f7-e1c2bb6ea5ff","direction":"outgoing","index":125975,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"90482331-eb29-47ac-9085-0dcfb622ba55","direction":"outgoing","index":125976,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9359b25f-79ad-4cdd-a972-655ba07dcbf4","direction":"outgoing","index":125977,"result_id":"5fe97e3d-d09a-404f-98e6-7a7ba878c28c","status":200,"timestamp":"2026-05-22T12:03:07.845-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ee7b499-e23f-47b7-973f-257d27bd4245\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:07.716-04:00"},{"id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","created_at":"2026-05-22T12:03:10.521-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"77b3ae96-0bdd-45c5-8073-846ba4fb607c","direction":"outgoing","index":125978,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5990d4ec-9a61-40a9-9af4-b2316aa212d5","direction":"outgoing","index":125979,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0da32fe1-c51c-43e3-a527-c47118561a35","direction":"outgoing","index":125980,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00c5820e-2bf9-48bc-b61f-a6e452ada451\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74f270b0-1156-4e35-b0a4-3712f265a723","direction":"outgoing","index":125981,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=00c5820e-2bf9-48bc-b61f-a6e452ada451\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2e8c962-a228-403c-a636-76ded75b3a0b","direction":"outgoing","index":125982,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2c133e7f-004a-4a28-8dc9-f103915e3746","direction":"outgoing","index":125983,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=89b99c47-dee8-4b8f-b6e2-9f1b0f9a12f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cdbec590-f52f-4c24-8a7d-095b6d4f189c","direction":"outgoing","index":125984,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=89b99c47-dee8-4b8f-b6e2-9f1b0f9a12f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72e6a456-1ad7-4e53-8170-927f11987ee4","direction":"outgoing","index":125985,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2906d2ed-6aa9-42e4-9c35-b7ec500172fa","direction":"outgoing","index":125986,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"8ae0a652-f0fe-45b7-b6d4-b5752b42aa06","direction":"outgoing","index":125987,"result_id":"7d3ab2fd-234b-4dd2-8e5c-aea5de34537f","status":200,"timestamp":"2026-05-22T12:03:10.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:10.521-04:00"},{"id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","created_at":"2026-05-22T12:03:11.647-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8ba9f9ba-a6a3-4f7c-8770-0f795012b366","direction":"outgoing","index":125988,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2bc673cc-bf2a-4b63-88fe-dce8f29a2924","direction":"outgoing","index":125989,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81982135-1b36-4c93-8970-4913876b8cba","direction":"outgoing","index":125990,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9189a85f-1d0e-4d27-9eda-13f3f0d3f742\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e24b69cf-ff19-47cc-bb77-19274977476b","direction":"outgoing","index":125991,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"c3d657d7-fa76-48ac-bb34-30d1c9fbac17","direction":"outgoing","index":125992,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96bc615e-00b2-4400-9a56-f6bf24b2826b","direction":"outgoing","index":125993,"result_id":"3bee3d9d-93ff-426a-abcc-0e551ba12c4d","status":200,"timestamp":"2026-05-22T12:03:11.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b8c6d76-1e27-43d3-a770-2ca3cd936714\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:11.647-04:00"},{"id":"2facfd82-83a1-44ea-973d-bdf9b07ea384","created_at":"2026-05-22T12:03:11.855-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"78e9d91a-02f4-4bda-a53a-78c72390d083","direction":"outgoing","index":125994,"result_id":"2facfd82-83a1-44ea-973d-bdf9b07ea384","status":200,"timestamp":"2026-05-22T12:03:11.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:11.855-04:00"},{"id":"46a81367-4046-48cb-93ab-d25cd45410c7","created_at":"2026-05-22T12:03:12.330-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"92d00afa-d155-4fed-a435-ced29c6b78d4","direction":"outgoing","index":125995,"result_id":"46a81367-4046-48cb-93ab-d25cd45410c7","status":200,"timestamp":"2026-05-22T12:03:12.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85","verb":"get"},{"id":"46ec0783-7f61-4ed0-94c7-66c760a60333","direction":"outgoing","index":125996,"result_id":"46a81367-4046-48cb-93ab-d25cd45410c7","status":200,"timestamp":"2026-05-22T12:03:12.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355","verb":"get"},{"id":"3646d5ad-8385-47ed-a1db-a0ab187d0488","direction":"outgoing","index":125997,"result_id":"46a81367-4046-48cb-93ab-d25cd45410c7","status":200,"timestamp":"2026-05-22T12:03:12.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:12.330-04:00"},{"id":"8cf79e77-5db7-4892-9e13-502705dd5e26","created_at":"2026-05-22T12:03:12.451-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:12.451-04:00"},{"id":"33bb9923-c3d8-499f-baca-e82b6eac0bd5","created_at":"2026-05-22T12:03:12.462-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:12.462-04:00"},{"id":"8bae216d-e23b-47e0-bede-8b0f83df8cbd","created_at":"2026-05-22T12:03:12.464-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:12.464-04:00"},{"id":"1b0d59f4-e2b9-402f-b734-f301ecaa0b32","created_at":"2026-05-22T12:03:12.465-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:12.465-04:00"},{"id":"2cada463-e2ba-425d-850e-f76011757754","created_at":"2026-05-22T12:03:13.399-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e0a399a6-3576-4fc2-8819-307db39ed839","direction":"outgoing","index":125998,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"4df9c74e-2f26-4e6a-aa71-77095f78ec70","direction":"outgoing","index":125999,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"2addf52e-543e-4c72-9d3b-cc01c3cc4216","direction":"outgoing","index":126000,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"777ec380-78ea-4cbf-bfbf-c4e5506c5c70","direction":"outgoing","index":126001,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"94d15837-e5a9-4e86-a2f6-4ebd44d8836d","direction":"outgoing","index":126002,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"6154e393-3789-4d7c-bda3-5b01f68f4121","direction":"outgoing","index":126003,"result_id":"2cada463-e2ba-425d-850e-f76011757754","status":200,"timestamp":"2026-05-22T12:03:13.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:13.399-04:00"},{"id":"4eed7f26-ec10-45b1-9161-51469ba166ad","created_at":"2026-05-22T12:03:14.290-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"78a8eec2-30e4-467d-a310-7cc75a5184c5","direction":"outgoing","index":126004,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4174c2a3-a36c-475b-8ec1-8a4072803fc0","direction":"outgoing","index":126005,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"91f28d73-9cff-4a59-afd8-31a17809de40","direction":"outgoing","index":126006,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"fd820a57-f5d1-44a7-a63e-73371cc29188","direction":"outgoing","index":126007,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b8cfa9ef-613b-4bbd-ab9f-cc783324e8d8","direction":"outgoing","index":126008,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"493fe7b9-cf96-41fd-8fb2-3befd7ca8e3f","direction":"outgoing","index":126009,"result_id":"4eed7f26-ec10-45b1-9161-51469ba166ad","status":200,"timestamp":"2026-05-22T12:03:14.370-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:14.290-04:00"},{"id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","created_at":"2026-05-22T12:03:17.425-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5416855e-d785-46da-9364-291344fbe390","direction":"outgoing","index":126010,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"23405e99-b538-4fa4-a294-f1edc3510ffb","direction":"outgoing","index":126011,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4898afd3-0f31-4ca3-8083-2ae86395c863\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d40c5701-976a-462f-bb7f-9096d8968fd8","direction":"outgoing","index":126012,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4898afd3-0f31-4ca3-8083-2ae86395c863\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7298a918-b6a4-4d45-a00c-8b27c42d7d79","direction":"outgoing","index":126013,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"e30ac36e-e8ee-476c-b29b-02bb5773b9dd","direction":"outgoing","index":126014,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=78333277-66ff-4d0c-aac0-c5953353e47f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1d1f58f7-efc5-4bbc-9bf2-87ccb2d60b53","direction":"outgoing","index":126015,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=78333277-66ff-4d0c-aac0-c5953353e47f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b52bbba9-d52f-4f08-9602-4e5e3c441c73","direction":"outgoing","index":126016,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"7cbae23d-eeb6-4a21-a1d3-b1ef53bc3e2f","direction":"outgoing","index":126017,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=def32776-fe84-4d52-93ea-1486028b8a79\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43b10761-9966-43b2-92d2-f0e2e0ee12a5","direction":"outgoing","index":126018,"result_id":"0419bfe7-c2a4-49e1-950f-fd3434a6b7a7","status":200,"timestamp":"2026-05-22T12:03:17.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=def32776-fe84-4d52-93ea-1486028b8a79\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:17.425-04:00"},{"id":"ffc840c7-751f-458e-808b-8dd183819cc8","created_at":"2026-05-22T12:03:21.110-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"27decfde-4488-4070-8c25-388945d3039e","direction":"outgoing","index":126019,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"96bd9794-0e6b-4f74-9824-eb250b82db14","direction":"outgoing","index":126020,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"a8c55ab9-9c9f-4079-afe9-b6ae9f24217c","direction":"outgoing","index":126021,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=53b1a029-8846-4b9c-8718-59193d276c9a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"932af52b-402e-48e2-a90d-0ff1851ce5f3","direction":"outgoing","index":126022,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"a6a5b25a-ae92-49fd-9bef-c7c2761c067c","direction":"outgoing","index":126023,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=538f8d59-dc20-4cb4-9e42-84b8c37d5367\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2fae112-8a2e-479f-bbae-788428a8d525","direction":"outgoing","index":126024,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"1e9441d9-018b-43de-97d7-07aa925223bd","direction":"outgoing","index":126025,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=318f1cec-ba5c-4ef5-bc19-c84c680000a2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c6e9eeb-057c-4b24-a1f5-93807ea48ad2","direction":"outgoing","index":126026,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f4cc65a9-a2f0-4d4c-9fbf-ec2814d5f52a","direction":"outgoing","index":126027,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2742792a-bed3-48f6-885e-4959342ecfc4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5940971-efb7-47eb-870f-c598ebec089c","direction":"outgoing","index":126028,"result_id":"ffc840c7-751f-458e-808b-8dd183819cc8","status":200,"timestamp":"2026-05-22T12:03:21.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:21.110-04:00"},{"id":"f8487481-98b8-4a14-be81-c610a2c69c26","created_at":"2026-05-22T12:03:23.291-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7d13d244-6d8a-4a89-b945-e26e8afe7151","direction":"outgoing","index":126029,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"031605c3-9ab3-4fe2-8b79-f827b4529717","direction":"outgoing","index":126030,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31614e2f-cf70-49f8-b3bc-0860130b4cc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30ef27c2-c41e-4bbb-ab01-0725db9fc5f0","direction":"outgoing","index":126031,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31614e2f-cf70-49f8-b3bc-0860130b4cc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"776a9ed1-cec7-4f75-bd3a-a14edf3245eb","direction":"outgoing","index":126032,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"adaa0ffa-e80d-4af2-a9c5-66868dfb6d50","direction":"outgoing","index":126033,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91f9ee60-0826-4b2e-8463-1e539f6403a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a93c613e-c53b-44ed-9939-34ac21ddba35","direction":"outgoing","index":126034,"result_id":"f8487481-98b8-4a14-be81-c610a2c69c26","status":200,"timestamp":"2026-05-22T12:03:23.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91f9ee60-0826-4b2e-8463-1e539f6403a7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:23.291-04:00"},{"id":"8c48925a-4229-4656-a093-b94415b81c25","created_at":"2026-05-22T12:03:23.636-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3be5336c-6d3d-4ed5-a879-a8fe970fe6dc","direction":"outgoing","index":126035,"result_id":"8c48925a-4229-4656-a093-b94415b81c25","status":200,"timestamp":"2026-05-22T12:03:23.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:23.636-04:00"},{"id":"28169ed6-3453-44c9-9b1e-6c32e4e064c1","created_at":"2026-05-22T12:03:24.110-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3ef22894-97d1-46d8-abad-35292f87439a","direction":"outgoing","index":126036,"result_id":"28169ed6-3453-44c9-9b1e-6c32e4e064c1","status":200,"timestamp":"2026-05-22T12:03:24.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85","verb":"get"},{"id":"2af9e9bd-c574-4db8-8397-714a9deed76e","direction":"outgoing","index":126037,"result_id":"28169ed6-3453-44c9-9b1e-6c32e4e064c1","status":200,"timestamp":"2026-05-22T12:03:24.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355","verb":"get"},{"id":"43f24951-ab7d-4f54-857e-3175e0d534b4","direction":"outgoing","index":126038,"result_id":"28169ed6-3453-44c9-9b1e-6c32e4e064c1","status":200,"timestamp":"2026-05-22T12:03:24.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:24.110-04:00"},{"id":"6ea2cbc1-883c-4dee-99bb-5ba0e884e641","created_at":"2026-05-22T12:03:24.598-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:24.598-04:00"},{"id":"4023238a-76cc-466a-a40f-8f3d29f89e19","created_at":"2026-05-22T12:03:24.624-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:24.624-04:00"},{"id":"7af23c6c-36f0-4773-9e1e-ee94562d29b6","created_at":"2026-05-22T12:03:24.631-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:24.631-04:00"},{"id":"063f9d26-e1b9-40ca-8ff8-9fbf226ac84b","created_at":"2026-05-22T12:03:24.632-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:24.632-04:00"},{"id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","created_at":"2026-05-22T12:03:27.429-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2df9499e-c214-46b8-9fbe-9ed8e0a34046","direction":"outgoing","index":126039,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85","verb":"get"},{"id":"039640e3-6674-4438-b3f8-f1b8d358b748","direction":"outgoing","index":126040,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88d4d19f-27dc-4645-8fc4-98b5e33f596e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed208949-9c51-46c2-b516-78bdd17d2c72","direction":"outgoing","index":126041,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/_search","verb":"post"},{"id":"132dafa0-6f53-43f3-b562-d15f6c23dd38","direction":"outgoing","index":126042,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88d4d19f-27dc-4645-8fc4-98b5e33f596e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87690efd-77d7-4009-aa15-421d72426c0b","direction":"outgoing","index":126043,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85","verb":"get"},{"id":"1928e46c-f1e1-444e-9ad7-a0558c9d29a6","direction":"outgoing","index":126044,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a227e2fd-0612-412a-a098-c9cda7ef9a2e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2585ad3-c8dc-450d-abb4-c48de2664e76","direction":"outgoing","index":126045,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355","verb":"get"},{"id":"8068c51b-1ae0-4bbd-a62d-0f9559033a82","direction":"outgoing","index":126046,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c8ae45ee-48a3-40ae-84c2-37103c95d237\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f65f3dd6-8cab-411c-a3c9-b665de367357","direction":"outgoing","index":126047,"result_id":"b5cbf7c9-6176-4208-98ab-2ccde6f48354","status":200,"timestamp":"2026-05-22T12:03:27.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:27.429-04:00"},{"id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","created_at":"2026-05-22T12:03:28.484-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bb9e23fc-7357-446f-8ab9-5e8658791379","direction":"outgoing","index":126048,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a751af93-89de-4933-bef9-2a669f084d3a","direction":"outgoing","index":126049,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e86bc9e7-932e-4f4d-a2fc-193c43a46e0d","direction":"outgoing","index":126050,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"65b1fe0d-a1f3-406f-98ff-7917251fa263","direction":"outgoing","index":126051,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"76577b93-84d0-44cd-8d12-76aa846abb0f","direction":"outgoing","index":126052,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4c8dfc0b-7d0a-4031-9583-f7034a4a6db6","direction":"outgoing","index":126053,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.554-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c8e4ce81-9a43-4b33-8927-3e14f55acf6f","direction":"outgoing","index":126054,"result_id":"b24b51e1-c3d3-45b5-b768-c2a601c19e77","status":200,"timestamp":"2026-05-22T12:03:28.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_code_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:28.484-04:00"},{"id":"1c668391-9e50-4066-836b-4a4fca9fccf3","created_at":"2026-05-22T12:03:31.099-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8c9b1b3e-022b-4a51-ba23-220544052e07","direction":"outgoing","index":126055,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed","verb":"get"},{"id":"341e67fc-a6d7-4a7a-8415-07d32320afb9","direction":"outgoing","index":126056,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.272-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b8321b0a-206c-405a-92b5-2de79650054b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5098c03e-97f6-4f64-8acc-3cdb8c42dde9","direction":"outgoing","index":126057,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed","verb":"get"},{"id":"aea9d25e-c524-42b4-ac12-d99257a18c8e","direction":"outgoing","index":126058,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0dc638f1-38e5-469d-82c5-dc7b9404ce18\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"121f0466-e6dc-4103-8de0-da5f2dd06e4f","direction":"outgoing","index":126059,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown","verb":"get"},{"id":"6b8c26aa-05ea-414d-8488-16a81a42aad3","direction":"outgoing","index":126060,"result_id":"1c668391-9e50-4066-836b-4a4fca9fccf3","status":200,"timestamp":"2026-05-22T12:03:31.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6fc78c35-3452-4e9b-a339-a70fc011d6ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:31.099-04:00"},{"id":"376147e1-51b8-47b7-9265-45301d25650c","created_at":"2026-05-22T12:03:33.866-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b07e5df0-5813-457a-8e4c-d62f07ee6010","direction":"outgoing","index":126061,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"49df4434-8f19-4dda-9d67-d6cfb54dfcc4","direction":"outgoing","index":126062,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=778b9ecc-cb92-4304-8c15-6b0f208e6e91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a4866c2-2f8f-4d91-bfc6-1a0346712d5c","direction":"outgoing","index":126063,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"0f9f4b38-535a-4381-8492-0d440f5bb608","direction":"outgoing","index":126064,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.912-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=778b9ecc-cb92-4304-8c15-6b0f208e6e91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9b13222-cbee-4946-92ec-50d645fd2ce9","direction":"outgoing","index":126065,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ba496470-2d9a-4302-b7d6-4cadc86e8213","direction":"outgoing","index":126066,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9137be71-3a5d-4159-8404-d8730326b031\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16f13399-516d-47b9-9bf6-01b9c38a6471","direction":"outgoing","index":126067,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a8293d23-b1b2-4ac4-a11e-7ecc321453bb","direction":"outgoing","index":126068,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"5a6124cb-6c00-4e0a-bf85-4fe0543f88c7","direction":"outgoing","index":126069,"result_id":"376147e1-51b8-47b7-9265-45301d25650c","status":200,"timestamp":"2026-05-22T12:03:33.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:33.866-04:00"},{"id":"d5010786-ed4d-42d4-92db-447b7efd0534","created_at":"2026-05-22T12:03:34.106-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e5727726-9cc6-4b46-8b26-8374a9beb02c","direction":"outgoing","index":126070,"result_id":"d5010786-ed4d-42d4-92db-447b7efd0534","status":200,"timestamp":"2026-05-22T12:03:34.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:34.106-04:00"},{"id":"41903323-b84d-4b5c-883b-5c56de82489e","created_at":"2026-05-22T12:03:36.092-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f000ba17-6b0f-4655-8042-acb84b4a2b89","direction":"outgoing","index":126071,"result_id":"41903323-b84d-4b5c-883b-5c56de82489e","status":200,"timestamp":"2026-05-22T12:03:36.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"4cda541e-1840-41b5-a892-d9f2e44ebf00","direction":"outgoing","index":126072,"result_id":"41903323-b84d-4b5c-883b-5c56de82489e","status":200,"timestamp":"2026-05-22T12:03:36.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31836b66-8223-437a-a862-762ae5e4f7a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f37257b-bba9-436b-8121-24b6789a013c","direction":"outgoing","index":126073,"result_id":"41903323-b84d-4b5c-883b-5c56de82489e","status":200,"timestamp":"2026-05-22T12:03:36.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"7a220610-c285-49c7-b293-f3a0474bc991","direction":"outgoing","index":126074,"result_id":"41903323-b84d-4b5c-883b-5c56de82489e","status":200,"timestamp":"2026-05-22T12:03:36.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=019b54bd-302e-47b2-9373-514094c1678b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"219b5c16-043e-4cd4-b975-8d01e1172177","direction":"outgoing","index":126075,"result_id":"41903323-b84d-4b5c-883b-5c56de82489e","status":200,"timestamp":"2026-05-22T12:03:36.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:36.092-04:00"},{"id":"8b2e0821-442a-4f97-bfd6-3ce243c3a00e","created_at":"2026-05-22T12:03:39.878-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:39.878-04:00"},{"id":"7fb49764-65b4-4969-997e-2c6b1d237573","created_at":"2026-05-22T12:03:39.938-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:39.938-04:00"},{"id":"66d4a4ff-06cc-4809-a58d-8ac8e512dfcc","created_at":"2026-05-22T12:03:40.050-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"45e40d9f-aa20-4821-930e-83fb137e7434","direction":"outgoing","index":126076,"result_id":"66d4a4ff-06cc-4809-a58d-8ac8e512dfcc","status":200,"timestamp":"2026-05-22T12:03:40.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.050-04:00"},{"id":"0b06b3a7-9f7b-4802-a983-76af0a6f0fb9","created_at":"2026-05-22T12:03:40.069-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.069-04:00"},{"id":"5505f588-07db-4cb9-97b3-3a2e448c8bc2","created_at":"2026-05-22T12:03:40.428-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bbcb28ad-367a-4a09-9b01-5651f32c36e7","direction":"outgoing","index":126077,"result_id":"5505f588-07db-4cb9-97b3-3a2e448c8bc2","status":200,"timestamp":"2026-05-22T12:03:40.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=85","verb":"get"},{"id":"983dd313-5803-4159-8862-c290ffb4254f","direction":"outgoing","index":126078,"result_id":"5505f588-07db-4cb9-97b3-3a2e448c8bc2","status":200,"timestamp":"2026-05-22T12:03:40.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=355","verb":"get"},{"id":"e93516e6-0761-4f64-b06e-cc9a029b2279","direction":"outgoing","index":126079,"result_id":"5505f588-07db-4cb9-97b3-3a2e448c8bc2","status":200,"timestamp":"2026-05-22T12:03:40.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=907","verb":"get"}],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.428-04:00"},{"id":"58485a5c-4301-4c5b-83d7-0447509a70a1","created_at":"2026-05-22T12:03:40.482-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `_id`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.482-04:00"},{"id":"0bdc2ad4-ccaf-444d-a96c-fce284ad1a8f","created_at":"2026-05-22T12:03:40.485-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `questionnaire`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_questionnaire_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.485-04:00"},{"id":"e606996c-456f-4785-92a1-c031a859218f","created_at":"2026-05-22T12:03:40.486-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `authored`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_authored_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.486-04:00"},{"id":"3c42078e-9eb4-4367-aca3-f524d31b14ce","created_at":"2026-05-22T12:03:40.488-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `status`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.488-04:00"},{"id":"2ef00804-35b7-4e71-b86e-7a7bde901cf3","created_at":"2026-05-22T12:03:40.489-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.489-04:00"},{"id":"9abe684a-76af-475d-824e-18c128fc322a","created_at":"2026-05-22T12:03:40.830-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6d67356b-eb3c-400a-baa3-ccdb40d5c3c5","direction":"outgoing","index":126080,"result_id":"9abe684a-76af-475d-824e-18c128fc322a","status":200,"timestamp":"2026-05-22T12:03:40.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"0c15d8df-069d-47e0-8ec7-3d4af358e8de","direction":"outgoing","index":126081,"result_id":"9abe684a-76af-475d-824e-18c128fc322a","status":200,"timestamp":"2026-05-22T12:03:40.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"896d8f8e-76c1-4615-a054-3967afb50214","direction":"outgoing","index":126082,"result_id":"9abe684a-76af-475d-824e-18c128fc322a","status":200,"timestamp":"2026-05-22T12:03:40.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"skip","result_message":"No Provenance resources appear to be available. Please use patients with more information","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.830-04:00"},{"id":"e9b0171e-05d1-48fc-8bb0-351a4d7872bd","created_at":"2026-05-22T12:03:40.896-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-questionnaireresponse profile were returned","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.896-04:00"},{"id":"7932058c-30ea-4388-b800-e35a25d948d9","created_at":"2026-05-22T12:03:40.898-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources were found","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.898-04:00"},{"id":"b359b1fd-182c-411e-add8-17be7f6437b1","created_at":"2026-05-22T12:03:40.900-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.900-04:00"},{"id":"93b96f24-07e5-4d58-b4cd-fadebe0e185e","created_at":"2026-05-22T12:03:40.902-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:40.902-04:00"},{"id":"6aa65199-f802-436f-9e11-d84c0579cc31","created_at":"2026-05-22T12:03:41.551-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"261333f0-15ba-410b-a295-c8cf6dab7494","direction":"outgoing","index":126083,"result_id":"6aa65199-f802-436f-9e11-d84c0579cc31","status":200,"timestamp":"2026-05-22T12:03:41.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=85","verb":"get"},{"id":"dd5193de-38ac-403a-af08-001f6a7b8d40","direction":"outgoing","index":126084,"result_id":"6aa65199-f802-436f-9e11-d84c0579cc31","status":200,"timestamp":"2026-05-22T12:03:41.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355","verb":"get"},{"id":"2ee01cb3-0f6c-4714-9e7b-4744be3abe9a","direction":"outgoing","index":126085,"result_id":"6aa65199-f802-436f-9e11-d84c0579cc31","status":200,"timestamp":"2026-05-22T12:03:41.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/_search","verb":"post"},{"id":"4b8cb894-147a-417a-8707-26fcb6dbb616","direction":"outgoing","index":126086,"result_id":"6aa65199-f802-436f-9e11-d84c0579cc31","status":200,"timestamp":"2026-05-22T12:03:41.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=Patient/355","verb":"get"},{"id":"3d421b26-e90b-41e2-b19e-c1ba68c41be3","direction":"outgoing","index":126087,"result_id":"6aa65199-f802-436f-9e11-d84c0579cc31","status":200,"timestamp":"2026-05-22T12:03:41.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:41.551-04:00"},{"id":"d442a643-a618-4635-8b3d-80abba7cf935","created_at":"2026-05-22T12:03:41.766-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"93dbbc5e-e057-45b6-9fa3-87d9f6ba6115","direction":"outgoing","index":126088,"result_id":"d442a643-a618-4635-8b3d-80abba7cf935","status":200,"timestamp":"2026-05-22T12:03:41.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_id=3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:41.766-04:00"},{"id":"727c8342-344d-47f8-8d52-5709e6e8cc55","created_at":"2026-05-22T12:03:42.585-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6835a952-ba46-431a-9a47-b3dae1f1ff97","direction":"outgoing","index":126089,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"26248499-d174-4b6c-bbda-76579543507e","direction":"outgoing","index":126090,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"de797dc5-d2e9-4e05-93c6-1a902e8666e2","direction":"outgoing","index":126091,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"ea84527b-4853-40a2-84dc-25e05bb63d73","direction":"outgoing","index":126092,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"a48d268a-9b1d-480b-ba21-a0afb619812f","direction":"outgoing","index":126093,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"8ec532d8-a38a-4049-b82e-727ec9e703bd","direction":"outgoing","index":126094,"result_id":"727c8342-344d-47f8-8d52-5709e6e8cc55","status":200,"timestamp":"2026-05-22T12:03:42.670-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:42.585-04:00"},{"id":"933bcafc-955a-47e4-9fe4-2c4c303bf3fa","created_at":"2026-05-22T12:03:42.927-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6c10ed7f-d0ed-406b-92f3-bb85c74a0ae2","direction":"outgoing","index":126095,"result_id":"933bcafc-955a-47e4-9fe4-2c4c303bf3fa","status":200,"timestamp":"2026-05-22T12:03:42.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=completed","verb":"get"},{"id":"5d6e025e-8aea-4bab-bcec-3fe3f04db0f7","direction":"outgoing","index":126096,"result_id":"933bcafc-955a-47e4-9fe4-2c4c303bf3fa","status":200,"timestamp":"2026-05-22T12:03:42.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_status_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:42.927-04:00"},{"id":"93412294-fb24-4bcc-be0d-7f9136bfc86c","created_at":"2026-05-22T12:03:43.211-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"47fc1e0f-16c0-42dd-b133-ff049b2136e8","direction":"outgoing","index":126097,"result_id":"93412294-fb24-4bcc-be0d-7f9136bfc86c","status":200,"timestamp":"2026-05-22T12:03:43.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=387713003\u0026patient=355","verb":"get"},{"id":"25695f1f-82a5-4ab6-8b89-45206594ff0a","direction":"outgoing","index":126098,"result_id":"93412294-fb24-4bcc-be0d-7f9136bfc86c","status":200,"timestamp":"2026-05-22T12:03:43.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:43.211-04:00"},{"id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","created_at":"2026-05-22T12:03:44.125-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cb52b1c1-86fc-4ed3-8719-f6b492b5bdba","direction":"outgoing","index":126099,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"1b1e2b64-081f-429e-b8b9-03d072dd64a0","direction":"outgoing","index":126100,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"48e900e7-ee46-49a0-9ffe-3b01636936c9","direction":"outgoing","index":126101,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"1b1bb8a1-e06d-4c9e-a40b-173f23f7859d","direction":"outgoing","index":126102,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"af37f164-75d6-478e-95a0-6dcd9ab79887","direction":"outgoing","index":126103,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"70315190-0c35-4dfb-962f-43bcb86309ac","direction":"outgoing","index":126104,"result_id":"6d59807c-4ca8-4489-838e-aecd1508d0a6","status":200,"timestamp":"2026-05-22T12:03:44.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_authored_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:44.125-04:00"},{"id":"f0321c20-2c20-45bf-a599-1f3bccbda8ad","created_at":"2026-05-22T12:03:44.429-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6eeb7afb-fb96-472e-a24d-05d06cf5ce70","direction":"outgoing","index":126105,"result_id":"f0321c20-2c20-45bf-a599-1f3bccbda8ad","status":200,"timestamp":"2026-05-22T12:03:44.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=233169004\u0026patient=355","verb":"get"},{"id":"c25bbe64-9566-47ce-83da-a0105a52fd15","direction":"outgoing","index":126106,"result_id":"f0321c20-2c20-45bf-a599-1f3bccbda8ad","status":200,"timestamp":"2026-05-22T12:03:44.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:44.429-04:00"},{"id":"ee06d925-c7ef-48fd-9f42-a9bc4ce22efb","created_at":"2026-05-22T12:03:44.566-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"91288438-6789-4c37-b939-1cc89cf61eff","direction":"outgoing","index":126107,"result_id":"ee06d925-c7ef-48fd-9f42-a9bc4ce22efb","status":200,"timestamp":"2026-05-22T12:03:44.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:44.566-04:00"},{"id":"c25475ed-2d26-4ed7-b637-ff291c700079","created_at":"2026-05-22T12:03:45.065-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"151785bf-89f5-4914-a51d-538bd62d178b","direction":"outgoing","index":126108,"result_id":"c25475ed-2d26-4ed7-b637-ff291c700079","status":200,"timestamp":"2026-05-22T12:03:45.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"dc8a9b16-a47d-4f34-a963-3a65bfaee35c","direction":"outgoing","index":126109,"result_id":"c25475ed-2d26-4ed7-b637-ff291c700079","status":200,"timestamp":"2026-05-22T12:03:45.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"7ef8f29f-c897-4e7f-a421-126207d2af07","direction":"outgoing","index":126110,"result_id":"c25475ed-2d26-4ed7-b637-ff291c700079","status":200,"timestamp":"2026-05-22T12:03:45.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:45.065-04:00"},{"id":"d5b05fbe-a28c-40b6-aaad-5ac8db89e9db","created_at":"2026-05-22T12:03:47.343-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest.category[0]: Reference to draft ValueSet http://hl7.org/fhir/ValueSet/servicerequest-category|4.0.1","type":"info"},{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"ServiceRequest/d1ab235c-2f94-4a51-8d36-45b9fc9dfd5f: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.343-04:00"},{"id":"1bbd70f9-649a-4f50-a602-651d6c947bba","created_at":"2026-05-22T12:03:47.350-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.350-04:00"},{"id":"b19fe434-0c00-41ae-9884-ec0c028386d4","created_at":"2026-05-22T12:03:47.503-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"75add2b2-fe03-483a-807e-a5cb4dd84f02","direction":"outgoing","index":126111,"result_id":"b19fe434-0c00-41ae-9884-ec0c028386d4","status":200,"timestamp":"2026-05-22T12:03:47.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.503-04:00"},{"id":"66190486-9892-4f03-8f7c-ed7b03310c06","created_at":"2026-05-22T12:03:47.523-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.523-04:00"},{"id":"2b72cb21-f236-4d6e-b7bf-b12bb740e91d","created_at":"2026-05-22T12:03:47.646-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"bc4316d5-2ca6-43ec-a268-e90033cd7f6d","direction":"outgoing","index":126112,"result_id":"2b72cb21-f236-4d6e-b7bf-b12bb740e91d","status":200,"timestamp":"2026-05-22T12:03:47.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.646-04:00"},{"id":"378ca8b8-ae2e-4530-9f93-f7a1842b5ef2","created_at":"2026-05-22T12:03:47.903-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bb673e10-d6ba-4a2b-a81b-e8162882100f","direction":"outgoing","index":126113,"result_id":"378ca8b8-ae2e-4530-9f93-f7a1842b5ef2","status":200,"timestamp":"2026-05-22T12:03:47.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052","verb":"get"},{"id":"f679c78d-5e6b-4fed-84f0-ddaff1ffe090","direction":"outgoing","index":126114,"result_id":"378ca8b8-ae2e-4530-9f93-f7a1842b5ef2","status":200,"timestamp":"2026-05-22T12:03:47.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/_search","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:47.903-04:00"},{"id":"147e1a8e-d6ab-4622-9b42-055785ec339a","created_at":"2026-05-22T12:03:48.068-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e64fda14-c210-45ee-9bf9-4f1ada1f457b","direction":"outgoing","index":126115,"result_id":"147e1a8e-d6ab-4622-9b42-055785ec339a","status":200,"timestamp":"2026-05-22T12:03:48.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.068-04:00"},{"id":"29c095fa-10a2-4877-8289-9416a976cbb9","created_at":"2026-05-22T12:03:48.123-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.123-04:00"},{"id":"a6b32d8d-bb64-4cec-9ddb-93d35d4c9c4e","created_at":"2026-05-22T12:03:48.129-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.129-04:00"},{"id":"d842a080-bded-4fa0-8d43-06561259d672","created_at":"2026-05-22T12:03:48.132-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.132-04:00"},{"id":"6e1da5b4-23e9-4fcc-8e27-51690d57b104","created_at":"2026-05-22T12:03:48.261-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"910a2905-221b-4a3d-a8ad-fd22fe7d5d67","direction":"outgoing","index":126116,"result_id":"6e1da5b4-23e9-4fcc-8e27-51690d57b104","status":200,"timestamp":"2026-05-22T12:03:48.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.261-04:00"},{"id":"4374cfa5-9c32-4a2e-8977-04aa7ec35fcc","created_at":"2026-05-22T12:03:48.553-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"28b166da-e0e6-4154-8918-d89175eb184f","direction":"outgoing","index":126117,"result_id":"4374cfa5-9c32-4a2e-8977-04aa7ec35fcc","status":200,"timestamp":"2026-05-22T12:03:48.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?_id=d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"d3280546-f8df-4edb-88a0-196a4a87d360","direction":"outgoing","index":126118,"result_id":"4374cfa5-9c32-4a2e-8977-04aa7ec35fcc","status":200,"timestamp":"2026-05-22T12:03:48.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/_search","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.553-04:00"},{"id":"497c2a82-6d2f-4847-9aab-f480b149ead1","created_at":"2026-05-22T12:03:48.715-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"78c82c6b-0b78-4ffd-94c1-ca3885208faf","direction":"outgoing","index":126119,"result_id":"497c2a82-6d2f-4847-9aab-f480b149ead1","status":200,"timestamp":"2026-05-22T12:03:48.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:48.715-04:00"},{"id":"397e7cfa-4c2b-4f8f-82d2-b45c1588f4a5","created_at":"2026-05-22T12:03:49.002-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f2949a25-bf26-4078-9ec5-f840b0ca82f3","direction":"outgoing","index":126120,"result_id":"397e7cfa-4c2b-4f8f-82d2-b45c1588f4a5","status":200,"timestamp":"2026-05-22T12:03:49.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819","verb":"get"},{"id":"c77fe425-7d82-4712-a208-20231ddb350b","direction":"outgoing","index":126121,"result_id":"397e7cfa-4c2b-4f8f-82d2-b45c1588f4a5","status":200,"timestamp":"2026-05-22T12:03:49.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.002-04:00"},{"id":"68213c69-fa3d-4bc8-8550-903a0f836258","created_at":"2026-05-22T12:03:49.110-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.110-04:00"},{"id":"0375f7a4-ad5e-49b3-b8a4-72469cebc023","created_at":"2026-05-22T12:03:49.116-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.116-04:00"},{"id":"615760bd-13f7-4c8b-901d-fbb57debd858","created_at":"2026-05-22T12:03:49.238-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"abe92695-0e7f-43fc-a885-f21282d751c8","direction":"outgoing","index":126122,"result_id":"615760bd-13f7-4c8b-901d-fbb57debd858","status":200,"timestamp":"2026-05-22T12:03:49.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_address_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.238-04:00"},{"id":"f2bd324f-0e8d-405a-a42f-7b288612c54b","created_at":"2026-05-22T12:03:49.263-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.263-04:00"},{"id":"7a09bc5e-0ca2-4d5f-a069-1e650e7d21e9","created_at":"2026-05-22T12:03:49.406-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe PractitionerRole reference used for this test was pulled from resource\nMedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"58c79adc-7701-4dd2-abc8-ea5282488035","direction":"outgoing","index":126123,"result_id":"7a09bc5e-0ca2-4d5f-a069-1e650e7d21e9","status":200,"timestamp":"2026-05-22T12:03:49.412-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.406-04:00"},{"id":"b2c30552-6ca0-4f60-8c9f-41cac74f1441","created_at":"2026-05-22T12:03:49.930-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fadeee3d-5172-4abe-b50d-d91cc5c20104","direction":"outgoing","index":126124,"result_id":"b2c30552-6ca0-4f60-8c9f-41cac74f1441","status":200,"timestamp":"2026-05-22T12:03:49.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=208D00000X","verb":"get"},{"id":"dbefc846-efd4-4882-8489-44cb544514ad","direction":"outgoing","index":126125,"result_id":"b2c30552-6ca0-4f60-8c9f-41cac74f1441","status":200,"timestamp":"2026-05-22T12:03:49.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/_search","verb":"post"},{"id":"c07822a0-00bf-4eb4-9fea-1b639dd58813","direction":"outgoing","index":126126,"result_id":"b2c30552-6ca0-4f60-8c9f-41cac74f1441","status":200,"timestamp":"2026-05-22T12:03:49.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=http://nucc.org/provider-taxonomy%7C208D00000X","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:49.930-04:00"},{"id":"81fc0b14-8047-43ee-a54c-9a42b9a0e972","created_at":"2026-05-22T12:03:50.112-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9962bf03-0d6f-499f-beba-25d0b0c6bbec","direction":"outgoing","index":126127,"result_id":"81fc0b14-8047-43ee-a54c-9a42b9a0e972","status":200,"timestamp":"2026-05-22T12:03:50.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?practitioner=Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:50.112-04:00"},{"id":"5ac5f2b4-7b9f-4f75-9028-d32d1ee755e8","created_at":"2026-05-22T12:03:52.356-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/pdex-PractitionerRole: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/34f58138-bf60-4055-be68-806f6b5b8ffb: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/34f58138-bf60-4055-be68-806f6b5b8ffb: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/5d82c59e-5838-496e-97c7-f5297313eace: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/5d82c59e-5838-496e-97c7-f5297313eace: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/faef14c4-c15a-4157-af21-2fd9d8be2273: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/faef14c4-c15a-4157-af21-2fd9d8be2273: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/us-core-client-tests-practitioner-role: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/us-core-client-tests-practitioner-role: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:52.356-04:00"},{"id":"cc87b3ea-ec6d-41fa-aba3-878d2c9b6f09","created_at":"2026-05-22T12:03:52.390-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:52.390-04:00"},{"id":"f4b94280-7d8c-4d4a-9bab-2e7c8bbeb965","created_at":"2026-05-22T12:03:52.810-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2ee27123-9a8b-4359-8788-2855cef3794e","direction":"outgoing","index":126128,"result_id":"f4b94280-7d8c-4d4a-9bab-2e7c8bbeb965","status":200,"timestamp":"2026-05-22T12:03:52.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"45a7c118-239c-4545-91b7-8cae0a5a8b48","direction":"outgoing","index":126129,"result_id":"f4b94280-7d8c-4d4a-9bab-2e7c8bbeb965","status":200,"timestamp":"2026-05-22T12:03:52.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/2aaf3922-72e6-4cb8-8f17-a8a709886a89","verb":"get"},{"id":"3fe1b2b8-55ef-42dd-9fe4-8ac0b2b42e58","direction":"outgoing","index":126130,"result_id":"f4b94280-7d8c-4d4a-9bab-2e7c8bbeb965","status":200,"timestamp":"2026-05-22T12:03:52.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Endpoint/b5ebb5af-57fa-4ae8-a224-35a0e3ed0ea1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:52.810-04:00"},{"id":"2457c5bc-b96c-4b92-b730-265148402223","created_at":"2026-05-22T12:03:52.877-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:52.877-04:00"},{"id":"093dc419-edb6-4dec-9a76-375aef02a2e0","created_at":"2026-05-22T12:03:53.043-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b911f1c8-1c7a-4237-9ba0-55f39c1064ab","direction":"outgoing","index":126131,"result_id":"093dc419-edb6-4dec-9a76-375aef02a2e0","status":200,"timestamp":"2026-05-22T12:03:53.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:03:53.043-04:00"},{"id":"2a5f7b5b-970f-46f7-9ce6-750f7f898e1b","created_at":"2026-05-22T12:04:00.479-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:00.479-04:00"},{"id":"5fc269eb-9f89-4c69-8907-59405e12378d","created_at":"2026-05-22T12:04:00.759-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:00.759-04:00"},{"id":"d9b5d9b8-7164-4e62-8a4e-6776730efdbc","created_at":"2026-05-22T12:04:00.762-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:00.762-04:00"},{"id":"7f08fcb4-4439-455a-b862-56d3b68eef7b","created_at":"2026-05-22T12:04:00.763-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:00.763-04:00"},{"id":"72b8396c-f59e-4eaa-b230-62b76f6b0bcf","created_at":"2026-05-22T12:04:00.885-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe RelatedPerson reference used for this test was pulled from resource\nCareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"0c5544e2-54d5-4510-b160-299190bdb3b1","direction":"outgoing","index":126132,"result_id":"72b8396c-f59e-4eaa-b230-62b76f6b0bcf","status":200,"timestamp":"2026-05-22T12:04:00.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:00.885-04:00"},{"id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","created_at":"2026-05-22T12:04:01.556-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b742481d-8187-4b0a-a055-71a484e0996a","direction":"outgoing","index":126133,"result_id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","status":200,"timestamp":"2026-05-22T12:04:01.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=85","verb":"get"},{"id":"3e72bd0c-abdd-43e5-a8ac-f37bc55d513e","direction":"outgoing","index":126134,"result_id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","status":200,"timestamp":"2026-05-22T12:04:01.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/_search","verb":"post"},{"id":"e00283bc-8fd5-4492-bee8-bd765db97f97","direction":"outgoing","index":126135,"result_id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","status":200,"timestamp":"2026-05-22T12:04:01.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=Patient/85","verb":"get"},{"id":"6d4949b8-b470-4d2f-99b9-d3a28d387add","direction":"outgoing","index":126136,"result_id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","status":200,"timestamp":"2026-05-22T12:04:01.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=355","verb":"get"},{"id":"02bbe928-2e1b-4fe5-b9de-cf0e92ba924d","direction":"outgoing","index":126137,"result_id":"7e2d5bd1-0482-4675-a6ab-d73e20b11c82","status":200,"timestamp":"2026-05-22T12:04:01.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:01.556-04:00"},{"id":"eb865e0c-fc29-4a5d-9330-f22254fd4149","created_at":"2026-05-22T12:04:01.781-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1c0a6651-21bb-4a74-bb26-7ca5a976e626","direction":"outgoing","index":126138,"result_id":"eb865e0c-fc29-4a5d-9330-f22254fd4149","status":200,"timestamp":"2026-05-22T12:04:01.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_id=4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:01.781-04:00"},{"id":"260a38aa-2438-45b7-99b3-e1a617139fe3","created_at":"2026-05-22T12:04:01.911-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b8c18ab3-8ac1-434d-92f5-dae41f14d8aa","direction":"outgoing","index":126139,"result_id":"260a38aa-2438-45b7-99b3-e1a617139fe3","status":200,"timestamp":"2026-05-22T12:04:01.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:01.911-04:00"},{"id":"ff464dc7-403d-4c8c-b43e-a433854ffc37","created_at":"2026-05-22T12:04:02.049-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2997e417-b873-44ea-b439-8e9f588ea61c","direction":"outgoing","index":126140,"result_id":"ff464dc7-403d-4c8c-b43e-a433854ffc37","status":200,"timestamp":"2026-05-22T12:04:02.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_patient_name_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.049-04:00"},{"id":"dcf69742-35d1-44a4-bdf3-f05d8e0dcc3f","created_at":"2026-05-22T12:04:02.502-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3b21893c-5102-480b-befd-865f321cfd37","direction":"outgoing","index":126141,"result_id":"dcf69742-35d1-44a4-bdf3-f05d8e0dcc3f","status":200,"timestamp":"2026-05-22T12:04:02.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"f646a1e6-8bed-4bcd-922a-d862f58f69b8","direction":"outgoing","index":126142,"result_id":"dcf69742-35d1-44a4-bdf3-f05d8e0dcc3f","status":200,"timestamp":"2026-05-22T12:04:02.535-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"1c063878-18fc-4e0d-8f59-3afaa4a2f06e","direction":"outgoing","index":126143,"result_id":"dcf69742-35d1-44a4-bdf3-f05d8e0dcc3f","status":200,"timestamp":"2026-05-22T12:04:02.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_provenance_revinclude_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.502-04:00"},{"id":"3c2046f0-9a84-4aca-a429-f1bcb8cfdb08","created_at":"2026-05-22T12:04:02.611-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a: RelatedPerson: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.611-04:00"},{"id":"d8dafc40-b779-4b8b-8195-1c5c8cda38e5","created_at":"2026-05-22T12:04:02.615-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.615-04:00"},{"id":"1a070378-2168-483a-98b7-6efd41dd29e4","created_at":"2026-05-22T12:04:02.618-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.618-04:00"},{"id":"ef68bd2e-009c-45e2-bd42-090bfca9a6ea","created_at":"2026-05-22T12:04:02.619-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.619-04:00"},{"id":"e862fbf7-e1d9-4ccc-8936-736fbb9b3b59","created_at":"2026-05-22T12:04:02.756-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Specimen reference used for this test was pulled from resource\nObservation/c1acf7df-5fdc-4338-bb91-add5b859696b\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"473ff64a-8dfd-44ec-b1db-ea933cc9e22b","direction":"outgoing","index":126144,"result_id":"e862fbf7-e1d9-4ccc-8936-736fbb9b3b59","status":200,"timestamp":"2026-05-22T12:04:02.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_read_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:02.756-04:00"},{"id":"6576019b-653e-4c18-93ef-f801b83f8a76","created_at":"2026-05-22T12:04:03.408-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"225eeb78-c767-4300-89e2-979619cd786c","direction":"outgoing","index":126145,"result_id":"6576019b-653e-4c18-93ef-f801b83f8a76","status":200,"timestamp":"2026-05-22T12:04:03.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=85","verb":"get"},{"id":"fb472d08-1b24-493d-b606-474ea4769560","direction":"outgoing","index":126146,"result_id":"6576019b-653e-4c18-93ef-f801b83f8a76","status":200,"timestamp":"2026-05-22T12:04:03.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/_search","verb":"post"},{"id":"95bf9b47-e52e-419d-b95d-985d6e1bc742","direction":"outgoing","index":126147,"result_id":"6576019b-653e-4c18-93ef-f801b83f8a76","status":200,"timestamp":"2026-05-22T12:04:03.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=Patient/85","verb":"get"},{"id":"642a37d1-c33f-4620-9487-fad4db78912e","direction":"outgoing","index":126148,"result_id":"6576019b-653e-4c18-93ef-f801b83f8a76","status":200,"timestamp":"2026-05-22T12:04:03.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=355","verb":"get"},{"id":"96dc0312-6d69-4263-af81-49a98745d793","direction":"outgoing","index":126149,"result_id":"6576019b-653e-4c18-93ef-f801b83f8a76","status":200,"timestamp":"2026-05-22T12:04:03.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_patient_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.408-04:00"},{"id":"36479fdf-c2ff-4630-9dc1-197a8032aa7a","created_at":"2026-05-22T12:04:03.630-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a9789c2f-49d7-42a0-a0b8-364fdffc8ecd","direction":"outgoing","index":126150,"result_id":"36479fdf-c2ff-4630-9dc1-197a8032aa7a","status":200,"timestamp":"2026-05-22T12:04:03.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?_id=95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.630-04:00"},{"id":"868b714f-5309-41e7-9e60-facc04662b12","created_at":"2026-05-22T12:04:03.664-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.collection.bodySite.coding[0]: The concept '106004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.664-04:00"},{"id":"3f4474c7-91d4-4c0c-adbd-e03791304b3e","created_at":"2026-05-22T12:04:03.669-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.669-04:00"},{"id":"ecc9b08e-2b32-404f-b0e6-eae794f040e8","created_at":"2026-05-22T12:04:03.672-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_reference_resolution_test","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.672-04:00"},{"id":"298d9f2e-9314-4fa9-96a2-7ce9c0837df1","created_at":"2026-05-22T12:04:03.675-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:03.675-04:00"},{"id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","created_at":"2026-05-22T12:04:07.793-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0bada7c3-7bc9-40c5-9ff8-e7f538549077","direction":"outgoing","index":126151,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"8f25c874-cd01-4385-89da-ffe7cba86580","direction":"outgoing","index":126152,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.823-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b6f0d70-a2c2-4feb-a51e-56e45f8874e6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1858c575-da11-4150-bf73-04db70c9878c","direction":"outgoing","index":126153,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.842-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b6f0d70-a2c2-4feb-a51e-56e45f8874e6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a9095ab-7373-4605-8264-58e502de642e","direction":"outgoing","index":126154,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"c8e267d9-8cc7-4bc2-849f-6fb580e4d137","direction":"outgoing","index":126155,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5a345719-1a0c-4e00-a79a-cb83b0a78b84\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"21fd422c-872d-4534-b8f2-99fcef3e6dc4","direction":"outgoing","index":126156,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"b5905909-d04e-4f7e-9e68-a4032fec7fcb","direction":"outgoing","index":126157,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a0516d31-a738-4741-b066-def57ec65201\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6473eda3-ebfb-41fb-8eb5-f52d9ab525d0","direction":"outgoing","index":126158,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a0516d31-a738-4741-b066-def57ec65201\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"749e4fe2-acc9-4fd8-9b9b-2c26602886e2","direction":"outgoing","index":126159,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"5286187f-b751-403f-9966-bb7bb7cd6881","direction":"outgoing","index":126160,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0243fe95-6c0b-4fd1-9499-5ec7768216ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4b072e6f-b814-4bbf-b5c7-6999068eae37","direction":"outgoing","index":126161,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0243fe95-6c0b-4fd1-9499-5ec7768216ab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"32e75634-3c7e-49b1-a09a-dbe8e713b48d","direction":"outgoing","index":126162,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"},{"id":"cd998c5a-6231-4143-a09a-e26f2690bbbc","direction":"outgoing","index":126163,"result_id":"0c213850-62d7-4dad-94cd-8634cf0c3fb3","status":200,"timestamp":"2026-05-22T12:04:07.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_types","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:07.793-04:00"},{"id":"dde06ca0-ae25-478e-93b9-ea07cb2b1b18","created_at":"2026-05-22T12:04:07.973-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_attachments","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:07.973-04:00"},{"id":"39b37fb2-3ce7-42bc-b670-9f7e8a96dfeb","created_at":"2026-05-22T12:04:07.975-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:07.975-04:00"},{"id":"a29e1875-e15f-4c1d-936a-f97615226d28","created_at":"2026-05-22T12:04:08.650-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"742df8cb-77ff-4460-8312-1b8e76b399dd","direction":"outgoing","index":126164,"result_id":"a29e1875-e15f-4c1d-936a-f97615226d28","status":200,"timestamp":"2026-05-22T12:04:08.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"5b46e5e5-a8b5-49e0-8222-5dd55c36e9bd","direction":"outgoing","index":126165,"result_id":"a29e1875-e15f-4c1d-936a-f97615226d28","status":200,"timestamp":"2026-05-22T12:04:08.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"26798d01-e9c1-49d4-8b8d-21bbb6548c78","direction":"outgoing","index":126166,"result_id":"a29e1875-e15f-4c1d-936a-f97615226d28","status":200,"timestamp":"2026-05-22T12:04:08.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"41e9177c-0067-48f3-bcf0-fd24a739673f","direction":"outgoing","index":126167,"result_id":"a29e1875-e15f-4c1d-936a-f97615226d28","status":200,"timestamp":"2026-05-22T12:04:08.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"ba2c19b3-47d6-4b19-9239-c7acb0917c28","direction":"outgoing","index":126168,"result_id":"a29e1875-e15f-4c1d-936a-f97615226d28","status":200,"timestamp":"2026-05-22T12:04:08.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_screening_assessment-us_core_screening_assessment_category","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.650-04:00"},{"id":"7640571a-b576-4fdf-af5d-9e41a31664c0","created_at":"2026-05-22T12:04:08.737-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_screening_assessment","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.737-04:00"},{"id":"aac1d173-cf35-4b77-8fbd-46a8eeb976b0","created_at":"2026-05-22T12:04:08.747-04:00","inputs":[{"name":"dar_extension_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.747-04:00"},{"id":"5148a686-04f0-4165-8552-4e7927b79108","created_at":"2026-05-22T12:04:08.748-04:00","inputs":[{"name":"dar_code_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.748-04:00"},{"id":"e233645d-d397-4b1e-a102-47687b2a56ca","created_at":"2026-05-22T12:04:08.750-04:00","inputs":[{"name":"dar_extension_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"dar_code_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.750-04:00"},{"id":"a0ce2ada-4d5d-4bb7-836a-19b454d3289e","created_at":"2026-05-22T12:04:08.763-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T11:55:14-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api","test_run_id":"ea900f2a-d606-4aa7-b391-4bbe87bd8503","test_session_id":"5mIUdBS15Mo","updated_at":"2026-05-22T12:04:08.763-04:00"}] \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_700.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_700.yaml new file mode 100644 index 000000000..50c77cd7c --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_700.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v700 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 7.0.0 session created + status: created + start_run: + runnable: 4 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 4 US Core FHIR API + + - state_description: Finished Group 4 US Core FHIR API + status: done + last_completed: 4 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_700_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_700_expected.json new file mode 100644 index 000000000..2db2ea709 --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_700_expected.json @@ -0,0 +1 @@ +[{"id":"ad577d56-2b09-4269-85cf-e484f1fea2e8","created_at":"2026-05-22T12:13:30.203-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-standalone_auth_tls","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:13:30.203-04:00"},{"id":"f76af86c-be11-4ad0-a528-2bc142d7f43e","created_at":"2026-05-22T12:14:17.534-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CapabilityStatement: CapabilityStatement.instantiates[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.implementationGuide[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/ImplementationGuide/hl7.fhir.uv.bulkdata'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[10].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/group-export'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[18].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/patient-export'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].operation[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/export'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[{"id":"83eea3d3-b7b8-46a8-901c-038ea864430e","direction":"outgoing","index":126169,"result_id":"f76af86c-be11-4ad0-a528-2bc142d7f43e","status":200,"timestamp":"2026-05-22T12:14:17.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_conformance_support","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.534-04:00"},{"id":"aee6b6e4-9188-4f3a-9835-90d8e84e7d34","created_at":"2026-05-22T12:14:17.732-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_fhir_version","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.732-04:00"},{"id":"a9f34079-3eb2-4790-b02a-7591cdb27c55","created_at":"2026-05-22T12:14:17.800-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83eea3d3-b7b8-46a8-901c-038ea864430e","direction":"outgoing","index":126169,"result_id":"f76af86c-be11-4ad0-a528-2bc142d7f43e","status":200,"timestamp":"2026-05-22T12:14:17.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_json_support","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.800-04:00"},{"id":"bca1e135-3a82-42b5-853d-231f29040be1","created_at":"2026-05-22T12:14:17.809-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83eea3d3-b7b8-46a8-901c-038ea864430e","direction":"outgoing","index":126169,"result_id":"f76af86c-be11-4ad0-a528-2bc142d7f43e","status":200,"timestamp":"2026-05-22T12:14:17.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_profile_support","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.809-04:00"},{"id":"06da6691-a667-4021-b5e3-a0b8cda45548","created_at":"2026-05-22T12:14:17.815-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"83eea3d3-b7b8-46a8-901c-038ea864430e","direction":"outgoing","index":126169,"result_id":"f76af86c-be11-4ad0-a528-2bc142d7f43e","status":200,"timestamp":"2026-05-22T12:14:17.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_instantiate","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.815-04:00"},{"id":"982554e7-10ee-4135-a18a-ba75c396f877","created_at":"2026-05-22T12:14:17.819-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_capability_statement","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:17.819-04:00"},{"id":"b2f72f1f-ff88-497c-99e2-9063a248669f","created_at":"2026-05-22T12:14:18.602-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4eb2d858-4c79-45ce-80ca-ed792c44bf37","direction":"outgoing","index":126170,"result_id":"b2f72f1f-ff88-497c-99e2-9063a248669f","status":200,"timestamp":"2026-05-22T12:14:18.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85","verb":"get"},{"id":"ff61aeb3-74af-4d83-aab5-88b25a60a281","direction":"outgoing","index":126171,"result_id":"b2f72f1f-ff88-497c-99e2-9063a248669f","status":200,"timestamp":"2026-05-22T12:14:18.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/_search","verb":"post"},{"id":"8e6617ba-3cfb-4d25-9017-498e90799a32","direction":"outgoing","index":126172,"result_id":"b2f72f1f-ff88-497c-99e2-9063a248669f","status":200,"timestamp":"2026-05-22T12:14:18.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355","verb":"get"},{"id":"17873125-60cb-4dd9-bd0a-69e91f33db32","direction":"outgoing","index":126173,"result_id":"b2f72f1f-ff88-497c-99e2-9063a248669f","status":200,"timestamp":"2026-05-22T12:14:18.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:18.602-04:00"},{"id":"a6cc7d5a-4cf4-49f3-926a-373101e1dc3a","created_at":"2026-05-22T12:14:19.155-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"956256e0-7a69-4d76-8045-2c0aae87ab3a","direction":"outgoing","index":126174,"result_id":"a6cc7d5a-4cf4-49f3-926a-373101e1dc3a","status":200,"timestamp":"2026-05-22T12:14:19.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"},{"id":"886f49ab-0f46-4e59-a778-df23898163b7","direction":"outgoing","index":126175,"result_id":"a6cc7d5a-4cf4-49f3-926a-373101e1dc3a","status":200,"timestamp":"2026-05-22T12:14:19.179-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.155-04:00"},{"id":"23cd99a8-16ab-4149-af4d-686f27413f6a","created_at":"2026-05-22T12:14:19.321-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c3f7ad0d-0d6b-48dd-ba88-6342954146e0","direction":"outgoing","index":126176,"result_id":"23cd99a8-16ab-4149-af4d-686f27413f6a","status":200,"timestamp":"2026-05-22T12:14:19.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.321-04:00"},{"id":"b1929553-8ad8-411d-89ba-ac126b1b0992","created_at":"2026-05-22T12:14:19.473-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"80fdd53f-2f34-4f52-88a3-eba3dce23008","direction":"outgoing","index":126177,"result_id":"b1929553-8ad8-411d-89ba-ac126b1b0992","status":200,"timestamp":"2026-05-22T12:14:19.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.473-04:00"},{"id":"10242405-f547-46bc-9bbd-66a8368e78f4","created_at":"2026-05-22T12:14:19.623-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f80ac107-49d3-4e61-8879-0e4fd318e36d","direction":"outgoing","index":126178,"result_id":"10242405-f547-46bc-9bbd-66a8368e78f4","status":200,"timestamp":"2026-05-22T12:14:19.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_family_gender_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.623-04:00"},{"id":"ab1f7273-c874-4261-82b3-5bb95dea8e40","created_at":"2026-05-22T12:14:19.780-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8761e3d3-0fa5-4c49-8c93-150b5db2d230","direction":"outgoing","index":126179,"result_id":"ab1f7273-c874-4261-82b3-5bb95dea8e40","status":200,"timestamp":"2026-05-22T12:14:19.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_family_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.780-04:00"},{"id":"e62dbe5e-37b2-4a4a-8baf-0e65ce62bf1a","created_at":"2026-05-22T12:14:19.936-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4fbc5728-2955-4d0b-986e-2414db540829","direction":"outgoing","index":126180,"result_id":"e62dbe5e-37b2-4a4a-8baf-0e65ce62bf1a","status":200,"timestamp":"2026-05-22T12:14:19.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:19.936-04:00"},{"id":"25858ff6-bb1e-4965-b91f-1b471f5f5dd4","created_at":"2026-05-22T12:14:20.097-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"65484bd5-fbe7-45c0-bf24-6dfc036c60c8","direction":"outgoing","index":126181,"result_id":"25858ff6-bb1e-4965-b91f-1b471f5f5dd4","status":200,"timestamp":"2026-05-22T12:14:20.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?death-date=1977-07-14T04:17:45-04:00\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_death_date_family_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:20.097-04:00"},{"id":"2f0aaf10-8049-4516-b284-1c19fb235935","created_at":"2026-05-22T12:14:20.243-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c6e2d22f-c77c-47fc-8eb1-c136960847f5","direction":"outgoing","index":126182,"result_id":"2f0aaf10-8049-4516-b284-1c19fb235935","status":200,"timestamp":"2026-05-22T12:14:20.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:20.243-04:00"},{"id":"cfb20416-1c97-4bd2-93c0-f3d5b8e9d361","created_at":"2026-05-22T12:14:20.784-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"04d7e4bb-f99e-4f65-a248-e3097f261725","direction":"outgoing","index":126183,"result_id":"cfb20416-1c97-4bd2-93c0-f3d5b8e9d361","status":200,"timestamp":"2026-05-22T12:14:20.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target","verb":"get"},{"id":"414e95f8-c650-4e11-9396-bcc5b7466c42","direction":"outgoing","index":126184,"result_id":"cfb20416-1c97-4bd2-93c0-f3d5b8e9d361","status":200,"timestamp":"2026-05-22T12:14:20.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target","verb":"get"},{"id":"1d2601e7-0d9d-437a-887e-b582c9c7f59c","direction":"outgoing","index":126185,"result_id":"cfb20416-1c97-4bd2-93c0-f3d5b8e9d361","status":200,"timestamp":"2026-05-22T12:14:20.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907\u0026_revinclude=Provenance:target","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:20.784-04:00"},{"id":"553e384f-0cab-44ab-a998-633276f32024","created_at":"2026-05-22T12:14:25.144-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"},{"message":"Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"},{"message":"Patient/907: Patient.extension[1].value.ofType(CodeableConcept): None of the codings provided are in the value set 'Gender Identity' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1021.32|20240215), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v3-NullFlavor#ASKU)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:25.144-04:00"},{"id":"0dc63d2f-5c70-4a82-813a-f8c3b0691aa6","created_at":"2026-05-22T12:14:25.160-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:25.160-04:00"},{"id":"eb603b40-b3af-4e85-89c0-d051c486fe5c","created_at":"2026-05-22T12:14:25.164-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_patient","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:25.164-04:00"},{"id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","created_at":"2026-05-22T12:14:25.880-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e1d88062-7e95-4796-8259-b3d8222d77da","direction":"outgoing","index":126186,"result_id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","status":200,"timestamp":"2026-05-22T12:14:25.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85","verb":"get"},{"id":"85898020-254d-4c4d-8e31-0ce6c0055b21","direction":"outgoing","index":126187,"result_id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","status":200,"timestamp":"2026-05-22T12:14:25.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355","verb":"get"},{"id":"84499297-8cb9-4d51-abfa-dbb3d8e91f96","direction":"outgoing","index":126188,"result_id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","status":200,"timestamp":"2026-05-22T12:14:25.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search","verb":"post"},{"id":"a8856964-730f-4976-a203-e3b12b5c2204","direction":"outgoing","index":126189,"result_id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","status":200,"timestamp":"2026-05-22T12:14:25.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355","verb":"get"},{"id":"6a60778e-a6bd-4891-9d9f-f4c6b7145030","direction":"outgoing","index":126190,"result_id":"77f44ada-8fec-46a5-b0b3-c4d035565fa7","status":200,"timestamp":"2026-05-22T12:14:25.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:25.880-04:00"},{"id":"77913a8f-5ffe-4016-bb28-48d9fb60a6d9","created_at":"2026-05-22T12:14:26.195-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fb80ce3f-f8a8-413b-942a-8f251db24576","direction":"outgoing","index":126191,"result_id":"77913a8f-5ffe-4016-bb28-48d9fb60a6d9","status":200,"timestamp":"2026-05-22T12:14:26.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355","verb":"get"},{"id":"712b7d43-5d05-4061-b5ba-16ca45d07653","direction":"outgoing","index":126192,"result_id":"77913a8f-5ffe-4016-bb28-48d9fb60a6d9","status":200,"timestamp":"2026-05-22T12:14:26.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_clinical_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:26.195-04:00"},{"id":"f5f0be00-0d43-4f1b-a12d-b7a648124b51","created_at":"2026-05-22T12:14:26.356-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"80601a3a-9afc-47c1-b06a-d18e68fe5927","direction":"outgoing","index":126193,"result_id":"f5f0be00-0d43-4f1b-a12d-b7a648124b51","status":200,"timestamp":"2026-05-22T12:14:26.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:26.356-04:00"},{"id":"c48244bc-780d-4cba-9a90-34d0168a9393","created_at":"2026-05-22T12:14:26.871-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1087531d-93a4-4f64-88bc-2d55bccf957b","direction":"outgoing","index":126194,"result_id":"c48244bc-780d-4cba-9a90-34d0168a9393","status":200,"timestamp":"2026-05-22T12:14:26.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"19f0c2e8-0bb3-4520-8bda-125191cc45f2","direction":"outgoing","index":126195,"result_id":"c48244bc-780d-4cba-9a90-34d0168a9393","status":200,"timestamp":"2026-05-22T12:14:26.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"b9a2219e-8ae2-4799-8c2d-dfa7316d3efc","direction":"outgoing","index":126196,"result_id":"c48244bc-780d-4cba-9a90-34d0168a9393","status":200,"timestamp":"2026-05-22T12:14:26.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:26.871-04:00"},{"id":"4e4891aa-25fe-485a-b8e2-77bcb23b4dd4","created_at":"2026-05-22T12:14:31.460-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)","type":"warning"},{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:31.460-04:00"},{"id":"aaa84be4-4e6a-49e3-bf7f-45ac67f5b7b6","created_at":"2026-05-22T12:14:31.503-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:31.503-04:00"},{"id":"829c5428-6237-44e9-8427-4f0fe77c704b","created_at":"2026-05-22T12:14:31.802-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f26a0bab-3305-4e2c-a3de-27c158488708","direction":"outgoing","index":126197,"result_id":"829c5428-6237-44e9-8427-4f0fe77c704b","status":200,"timestamp":"2026-05-22T12:14:31.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:31.802-04:00"},{"id":"3c1a60bb-79be-4c79-8ace-f5e072f01900","created_at":"2026-05-22T12:14:31.834-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_allergy_intolerance","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:31.834-04:00"},{"id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","created_at":"2026-05-22T12:14:33.803-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9e68a0f2-354c-4d9e-b082-34e8a72db587","direction":"outgoing","index":126198,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85","verb":"get"},{"id":"1a7829b0-9876-4a7c-ae59-024730b1745a","direction":"outgoing","index":126199,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/_search","verb":"post"},{"id":"bcb899f0-4355-4ce8-955c-536b2ef4356c","direction":"outgoing","index":126200,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85","verb":"get"},{"id":"022f5393-b494-4039-9363-ad5e7484acc8","direction":"outgoing","index":126201,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85","verb":"get"},{"id":"730f5720-4a2b-4d14-bc42-d4d3bee27744","direction":"outgoing","index":126202,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355","verb":"get"},{"id":"4d8f8cc1-2f0e-4f31-956c-a0a24efbe284","direction":"outgoing","index":126203,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=03832a4a-ecfe-49cf-86c5-4d0eab1f663b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63dc0631-766f-4fe8-b87e-95ff45ff8a15","direction":"outgoing","index":126204,"result_id":"05657e1e-f304-4ee1-9e6d-ef6fbb824464","status":200,"timestamp":"2026-05-22T12:14:33.889-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:33.803-04:00"},{"id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","created_at":"2026-05-22T12:14:35.168-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d99e19db-3065-490d-be10-6349f9d470b8","direction":"outgoing","index":126205,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"d0027906-5ee3-4127-a447-c344a88775c8","direction":"outgoing","index":126206,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"5c7df6bb-286c-4aa7-8bb5-04ec460255ff","direction":"outgoing","index":126207,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"1ca7491a-5c81-4361-8efa-ebd18933b76a","direction":"outgoing","index":126208,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"54500e24-0a91-4bd9-a9fc-c74aafdc1bed","direction":"outgoing","index":126209,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"5c0d286d-7367-4ec4-baa4-712f0736fd7d","direction":"outgoing","index":126210,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"23ada988-70fe-4588-a6fd-3bac7fbd64e3","direction":"outgoing","index":126211,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active","verb":"get"},{"id":"551b7a04-a84e-4a37-aff4-689dc9a26b6e","direction":"outgoing","index":126212,"result_id":"89a4665f-70be-4d96-8c77-7ae7572ec3b3","status":200,"timestamp":"2026-05-22T12:14:35.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_status_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:35.168-04:00"},{"id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","created_at":"2026-05-22T12:14:37.232-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cc4506d1-7842-4203-be1f-bae4abe86e59","direction":"outgoing","index":126213,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"c442f41a-4431-40c8-a74f-4ef0f48ac09c","direction":"outgoing","index":126214,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f07bdc29-eb5a-4ce6-8a13-b28dcf6fd61e","direction":"outgoing","index":126215,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"eb1360df-114e-4dee-9f1f-b07d6c4629dc","direction":"outgoing","index":126216,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"d2a97d02-116d-4c9c-bf5e-fa9dcd107494","direction":"outgoing","index":126217,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"809e95ce-d369-45af-8cc1-6e437672f575","direction":"outgoing","index":126218,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"c057862e-ff2a-41cc-91ba-280e2ef044ff","direction":"outgoing","index":126219,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"53ae6479-768f-45b3-ac1e-f6db31b593b2","direction":"outgoing","index":126220,"result_id":"5c401d52-a32e-4bfc-b973-7f0a75c4624f","status":200,"timestamp":"2026-05-22T12:14:37.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=25cadba2-d114-4570-9514-26b653084311\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:37.232-04:00"},{"id":"16086909-8dfe-41c4-8407-07cf0cb664c2","created_at":"2026-05-22T12:14:38.750-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"74f35591-33fc-4e15-9f81-c386890ca77e","direction":"outgoing","index":126221,"result_id":"16086909-8dfe-41c4-8407-07cf0cb664c2","status":200,"timestamp":"2026-05-22T12:14:38.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"82eb205a-749e-4821-b13f-ba3ed4b332ae","direction":"outgoing","index":126222,"result_id":"16086909-8dfe-41c4-8407-07cf0cb664c2","status":200,"timestamp":"2026-05-22T12:14:38.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"6995b0ec-ef30-45b6-967a-822e2680c429","direction":"outgoing","index":126223,"result_id":"16086909-8dfe-41c4-8407-07cf0cb664c2","status":200,"timestamp":"2026-05-22T12:14:38.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active","verb":"get"},{"id":"56ad1bec-5b4b-4a4e-82bd-a28b50b4530d","direction":"outgoing","index":126224,"result_id":"16086909-8dfe-41c4-8407-07cf0cb664c2","status":200,"timestamp":"2026-05-22T12:14:38.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:38.750-04:00"},{"id":"691d6d90-0c5c-47de-a6c6-97149f7f2f02","created_at":"2026-05-22T12:14:39.015-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b33ad293-42e9-4ab6-a7da-342fe9341cbf","direction":"outgoing","index":126225,"result_id":"691d6d90-0c5c-47de-a6c6-97149f7f2f02","status":200,"timestamp":"2026-05-22T12:14:39.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:39.015-04:00"},{"id":"0740b779-7684-45b6-bd6c-b45b68af6d75","created_at":"2026-05-22T12:14:41.164-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cd5a518c-0e9c-4e67-b453-c133a3720c7e","direction":"outgoing","index":126226,"result_id":"0740b779-7684-45b6-bd6c-b45b68af6d75","status":200,"timestamp":"2026-05-22T12:14:41.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85","verb":"get"},{"id":"100f04f8-bffb-4b29-9ad3-5e063903634a","direction":"outgoing","index":126227,"result_id":"0740b779-7684-45b6-bd6c-b45b68af6d75","status":200,"timestamp":"2026-05-22T12:14:41.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355","verb":"get"},{"id":"436bf15f-f25e-46e9-a6bd-66b5dbaccfae","direction":"outgoing","index":126228,"result_id":"0740b779-7684-45b6-bd6c-b45b68af6d75","status":200,"timestamp":"2026-05-22T12:14:41.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7367738f-082e-4b6c-b588-f81b5cb1b8c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65a45d3b-e92d-4726-a809-0b976ae868ea","direction":"outgoing","index":126229,"result_id":"0740b779-7684-45b6-bd6c-b45b68af6d75","status":200,"timestamp":"2026-05-22T12:14:41.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:41.164-04:00"},{"id":"4e7a5477-d4db-4246-ab9c-2492546e7227","created_at":"2026-05-22T12:14:49.129-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:49.129-04:00"},{"id":"acbdf2cb-bbce-4199-a053-9dd88e92a144","created_at":"2026-05-22T12:14:49.224-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:49.224-04:00"},{"id":"f83d1992-971d-420d-bf47-9f4fd3863148","created_at":"2026-05-22T12:14:49.399-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3c2f3d90-424d-4fc9-80fa-79b222e169c6","direction":"outgoing","index":126230,"result_id":"f83d1992-971d-420d-bf47-9f4fd3863148","status":200,"timestamp":"2026-05-22T12:14:49.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:49.399-04:00"},{"id":"60e61ab2-a126-4764-aa9e-cc2dd74763b4","created_at":"2026-05-22T12:14:49.419-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_plan","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:49.419-04:00"},{"id":"be873f14-218d-402a-ac0c-f1d4016fd47c","created_at":"2026-05-22T12:14:52.539-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"64e7dff8-6db6-40e6-9f3c-6fcd803ea79c","direction":"outgoing","index":126231,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed","verb":"get"},{"id":"80c26152-4df5-4135-a42f-408e5736792a","direction":"outgoing","index":126232,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active","verb":"get"},{"id":"5f2efb8c-a71c-4378-b3a9-233b02794433","direction":"outgoing","index":126233,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/_search","verb":"post"},{"id":"f32cb2ae-72f9-4817-aa6a-0b19384e9a3b","direction":"outgoing","index":126234,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active","verb":"get"},{"id":"bccbee9e-4942-4d10-ae90-91548b9cdc75","direction":"outgoing","index":126235,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended","verb":"get"},{"id":"ab7db32d-5c13-4cc8-a180-610422041987","direction":"outgoing","index":126236,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive","verb":"get"},{"id":"8bb5fce3-fcde-4310-adbc-a15462baeb2a","direction":"outgoing","index":126237,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error","verb":"get"},{"id":"e9a27066-7a75-46d0-95ea-0ee24d3e3b5c","direction":"outgoing","index":126238,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed","verb":"get"},{"id":"1200da64-bd74-4fcd-90b2-e3af93100285","direction":"outgoing","index":126239,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active","verb":"get"},{"id":"0504e72f-a323-4ba5-b23b-7047291b033f","direction":"outgoing","index":126240,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended","verb":"get"},{"id":"a091f2fd-3cab-4138-b5c6-89935e51e892","direction":"outgoing","index":126241,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive","verb":"get"},{"id":"69a29343-deda-41ea-92cb-39e7d8873922","direction":"outgoing","index":126242,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b447071-f930-49be-a2a0-c15fed084b44\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae01495e-c4c6-4f25-b6ff-8caf7dba0b07","direction":"outgoing","index":126243,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error","verb":"get"},{"id":"82489566-880f-4a59-aa31-016886c25b7e","direction":"outgoing","index":126244,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=proposed","verb":"get"},{"id":"bddba2da-aab7-4f13-931a-0ecb733992e5","direction":"outgoing","index":126245,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=active","verb":"get"},{"id":"eb66faaf-49c7-4d56-8bd3-834429aa29c0","direction":"outgoing","index":126246,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=suspended","verb":"get"},{"id":"800eb72d-8aeb-47c3-a5b0-736599fa8d99","direction":"outgoing","index":126247,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=inactive","verb":"get"},{"id":"5318f46b-95c5-44de-97c1-be2a675ca8ad","direction":"outgoing","index":126248,"result_id":"be873f14-218d-402a-ac0c-f1d4016fd47c","status":200,"timestamp":"2026-05-22T12:14:52.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:52.539-04:00"},{"id":"527e1aa4-7e8c-4d7a-adad-c2cdc258149c","created_at":"2026-05-22T12:14:53.035-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8b6aff94-8c32-43ef-b1c1-f4ebbb1475c9","direction":"outgoing","index":126249,"result_id":"527e1aa4-7e8c-4d7a-adad-c2cdc258149c","status":400,"timestamp":"2026-05-22T12:14:53.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003","verb":"get"},{"id":"7a00ead6-c689-40d6-8b09-4fc4276341b2","direction":"outgoing","index":126250,"result_id":"527e1aa4-7e8c-4d7a-adad-c2cdc258149c","status":400,"timestamp":"2026-05-22T12:14:53.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_role_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:53.035-04:00"},{"id":"499d12d4-f1fb-4b3e-9a6a-efcfb26495cd","created_at":"2026-05-22T12:14:53.281-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a3e15650-fa73-4c3e-9c46-4242cc78a286","direction":"outgoing","index":126251,"result_id":"499d12d4-f1fb-4b3e-9a6a-efcfb26495cd","status":400,"timestamp":"2026-05-22T12:14:53.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003","verb":"get"},{"id":"d1476f39-fad6-4476-9c93-073be0e67ba2","direction":"outgoing","index":126252,"result_id":"499d12d4-f1fb-4b3e-9a6a-efcfb26495cd","status":400,"timestamp":"2026-05-22T12:14:53.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_role_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:53.281-04:00"},{"id":"18131ca0-9ae9-4703-9131-2120f433c317","created_at":"2026-05-22T12:14:53.456-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"48e465fd-7128-4bb9-8fa6-fb2bc93319eb","direction":"outgoing","index":126253,"result_id":"18131ca0-9ae9-4703-9131-2120f433c317","status":200,"timestamp":"2026-05-22T12:14:53.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:53.456-04:00"},{"id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","created_at":"2026-05-22T12:14:57.546-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"91d49cc0-1fb9-44f7-8cee-348bb90cea61","direction":"outgoing","index":126254,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed","verb":"get"},{"id":"f7f561f6-2d58-4a38-8fc4-a40edda92f95","direction":"outgoing","index":126255,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active","verb":"get"},{"id":"7f96f3d0-38f7-4876-a7e2-947c2f7d77f5","direction":"outgoing","index":126256,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended","verb":"get"},{"id":"7a3cd514-5ccc-4dea-a1d7-26c88f60eabc","direction":"outgoing","index":126257,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive","verb":"get"},{"id":"e5f532a2-9f43-49ba-8cfa-4bebefcfdbb2","direction":"outgoing","index":126258,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error","verb":"get"},{"id":"ac6eb307-7ec4-457e-82af-ddf4247ec535","direction":"outgoing","index":126259,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed","verb":"get"},{"id":"f467c95a-45ff-4dbf-8c72-087e3447baa6","direction":"outgoing","index":126260,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active","verb":"get"},{"id":"86754560-5299-49eb-8118-12c71843d9ef","direction":"outgoing","index":126261,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended","verb":"get"},{"id":"1e95a54e-682c-4ef7-8317-f1215e4a6da4","direction":"outgoing","index":126262,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive","verb":"get"},{"id":"4dec3a2a-b259-4807-a03d-50fe2ea9a57b","direction":"outgoing","index":126263,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e81e653-6e47-4339-b0e0-8a8cfceca39a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38ab3e86-19b6-4a58-9bcc-5190c4fe6324","direction":"outgoing","index":126264,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error","verb":"get"},{"id":"295d075d-0a4b-41cb-99fa-f0cd62b662f5","direction":"outgoing","index":126265,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=proposed","verb":"get"},{"id":"65bde9b3-1a6f-42ee-bd1c-24c85e64908b","direction":"outgoing","index":126266,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=active","verb":"get"},{"id":"4ea3f543-a538-4d41-afc2-894f3dfaf787","direction":"outgoing","index":126267,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=suspended","verb":"get"},{"id":"d6aa5bb4-fbdc-4543-ad17-8aad40aeab3a","direction":"outgoing","index":126268,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=inactive","verb":"get"},{"id":"d9ca5f8f-2c70-4b6f-b3dc-3c700181fdec","direction":"outgoing","index":126269,"result_id":"84e77ec2-539c-4a22-8e9d-ceed064665cc","status":200,"timestamp":"2026-05-22T12:14:57.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:14:57.546-04:00"},{"id":"2b57de31-ad48-46d3-bdb5-61612a130d3a","created_at":"2026-05-22T12:15:02.181-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#133932002)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:02.181-04:00"},{"id":"6484d09d-899d-42eb-b7a1-58125f068e42","created_at":"2026-05-22T12:15:02.369-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:02.369-04:00"},{"id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","created_at":"2026-05-22T12:15:16.099-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6dcced76-7fb6-4aa2-9bfc-34531af54dfe","direction":"outgoing","index":126270,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"c3be6a7e-c76c-482b-9961-f021afe1cb31","direction":"outgoing","index":126271,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"3e3ac9b2-2cdf-46db-9da5-141a1302ef9b","direction":"outgoing","index":126272,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"bc575e7c-554a-41cb-82a3-ce679de4914f","direction":"outgoing","index":126273,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"0ebbca8c-3c54-4142-aa03-b0096f04cf67","direction":"outgoing","index":126274,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"63e962da-90c4-4fd2-835a-2eef07437876","direction":"outgoing","index":126275,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"},{"id":"69a3e7aa-0cc6-4eeb-b405-a86f84efa411","direction":"outgoing","index":126276,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"dca61197-bdcc-4cdd-aaf1-16e6e581d468","direction":"outgoing","index":126277,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"657e8051-7095-4e45-99fd-428a2cac4b3f","direction":"outgoing","index":126278,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"c9989209-713c-42e7-bd25-9d3ffa96451a","direction":"outgoing","index":126279,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"b9ce9a06-2f81-4817-baac-e4be554ad808","direction":"outgoing","index":126280,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.262-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"8799cecf-9677-458b-bf77-8bde690878aa","direction":"outgoing","index":126281,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"0b21cac3-0591-4fd1-9987-24a5ac1c0692","direction":"outgoing","index":126282,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"e889714e-5f29-41c2-b5ca-57eefdb7a215","direction":"outgoing","index":126283,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"b50158b3-dbf8-4cbf-acaa-2fdaf3437317","direction":"outgoing","index":126284,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"8dc0ccf1-34db-457d-b762-4a2dc811f9f9","direction":"outgoing","index":126285,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"395ed45d-1124-471b-9ac3-556c7f0daa19","direction":"outgoing","index":126286,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"354d8453-241b-4a9f-abcd-4dc9706440e9","direction":"outgoing","index":126287,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"9419994b-37bd-4047-99dc-88eb2a8b5147","direction":"outgoing","index":126288,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"0f6f4b0b-6772-4944-bcf2-36ad248e8f42","direction":"outgoing","index":126289,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"62b03612-078b-4314-b88d-1abcb4aebfb0","direction":"outgoing","index":126290,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"4cc2237d-26c5-4d88-87c9-70a202060a22","direction":"outgoing","index":126291,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"b962db9c-5ec9-433b-9244-895081f81b69","direction":"outgoing","index":126292,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"e5d12020-d81a-4227-917d-f0a01af85d8c","direction":"outgoing","index":126293,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"1136efd1-f5ef-4181-b774-72499d880d14","direction":"outgoing","index":126294,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"e224d8c9-0f63-428d-a4a3-d7fdc4cb3927","direction":"outgoing","index":126295,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"783fbe4f-aa4d-4bd7-8342-757ed7b90d94","direction":"outgoing","index":126296,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"f0598772-e72f-4944-bc04-4669fa97746d","direction":"outgoing","index":126297,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"b0f16401-c97a-410d-9790-f838d0523f55","direction":"outgoing","index":126298,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"b9bd2709-8914-4e64-8cbe-097bf351a8ad","direction":"outgoing","index":126299,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"0385fa56-153b-4a6c-8327-262edd06afe3","direction":"outgoing","index":126300,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"a4001a70-00f7-42b3-b709-25fa14b92ce8","direction":"outgoing","index":126301,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.527-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"09e8b746-645c-4216-8af4-21e2d6416f0c","direction":"outgoing","index":126302,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"ed30a5f3-354b-4986-982e-613a8b0622a2","direction":"outgoing","index":126303,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"72c7e99b-4b92-4566-8194-ead3ee33c174","direction":"outgoing","index":126304,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"f8200e13-341c-43ab-82c9-7e89ac565227","direction":"outgoing","index":126305,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"ad9e4cb8-23e4-4747-bf6b-7738fa386229","direction":"outgoing","index":126306,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"50f84823-060e-402e-821e-5c17251a1d0c","direction":"outgoing","index":126307,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"616bd499-a9ee-46c1-bb91-95cf4603a51d","direction":"outgoing","index":126308,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"bb9843ca-e3fb-493a-aedc-2c8e42f4395c","direction":"outgoing","index":126309,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"c43cd02f-1f1e-4c90-b8e8-6b703833aaa8","direction":"outgoing","index":126310,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"55706ff4-44f6-4a52-8d8c-85e3130cecd6","direction":"outgoing","index":126311,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"b6039475-4583-4324-9dca-2e3e5b38d758","direction":"outgoing","index":126312,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"8c4eb9b2-3684-4a47-8a3f-2d2db451bb4e","direction":"outgoing","index":126313,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"6ba3b319-ddba-4827-a4aa-623f20d35a2d","direction":"outgoing","index":126314,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"6ea9c5eb-5363-4c1f-9465-96053685aafb","direction":"outgoing","index":126315,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"1395286e-e940-44e5-bf17-b2a865ac3d9b","direction":"outgoing","index":126316,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"e71f1766-15f5-4c52-a7a5-796cd4500c33","direction":"outgoing","index":126317,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"3dabacb2-49c2-4147-b055-0c442e1e5c99","direction":"outgoing","index":126318,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"4dc30a90-028a-486b-9af8-c69458b73d2d","direction":"outgoing","index":126319,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"e38c4644-2c83-4138-9bc4-c887c23b90eb","direction":"outgoing","index":126320,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"83667d9c-2931-47f4-980c-8dc7dd82e71c","direction":"outgoing","index":126321,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"cb4c6f7d-89ae-4278-9ba4-05c40c4b0c97","direction":"outgoing","index":126322,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"1d7e5b26-9ef4-45fe-a8d9-f3cf06e31b97","direction":"outgoing","index":126323,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"cbfdcec7-adb3-42ce-b95b-005899cec563","direction":"outgoing","index":126324,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"6db0d22a-e61f-4a14-ac3c-7cbcb77420c6","direction":"outgoing","index":126325,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"cb787a09-cd92-4d52-9228-dfef1c935a47","direction":"outgoing","index":126326,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"3c89eb68-17e9-4813-9b0b-81126e37f992","direction":"outgoing","index":126327,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"a135c8fb-e1fa-49ee-ad80-1c14d887c0ff","direction":"outgoing","index":126328,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"739321c9-881a-4c87-b06f-ed487e120e55","direction":"outgoing","index":126329,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"73486594-6221-40f6-94ac-ace1dd07d38a","direction":"outgoing","index":126330,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"0d171e74-43a5-46e5-aa24-212b813f2bbf","direction":"outgoing","index":126331,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"cf2c0442-a65b-4454-9446-75f64f9b3c1d","direction":"outgoing","index":126332,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"4ae959a2-341d-41c5-b160-679386f16b58","direction":"outgoing","index":126333,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"b429b8ad-4fe3-4bbd-94d7-b26884fe676d","direction":"outgoing","index":126334,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"ec91f42e-705e-4eeb-b6da-bda25f4900bb","direction":"outgoing","index":126335,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"9f6e56a4-5586-4c0a-9ff6-6baaef8a34a2","direction":"outgoing","index":126336,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"f4557fde-2c00-4c56-85ee-0658a3bf82c8","direction":"outgoing","index":126337,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:16.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"fba92b65-21e9-44c0-82ac-ce4964331349","direction":"outgoing","index":126338,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"1273d50d-5321-4e2f-81ab-0da06353b9b0","direction":"outgoing","index":126339,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"5ea3976b-c5b9-46da-b044-23cf5f949fd3","direction":"outgoing","index":126340,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"0ce3a33b-2c61-4353-82e7-7956e48866fe","direction":"outgoing","index":126341,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"c3c173a1-b778-4ff9-979f-e8cc1c7bd9f5","direction":"outgoing","index":126342,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"b29a144f-8c55-40a9-b72a-5800617af3ef","direction":"outgoing","index":126343,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"82cef339-1b69-4f35-9009-9f051b519ec8","direction":"outgoing","index":126344,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"2b310d2f-ddd4-4281-adf2-b7b4f57d3165","direction":"outgoing","index":126345,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"4a4e957d-3111-466e-967e-3ffc2ccbacd7","direction":"outgoing","index":126346,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"2b99b668-0531-47b0-a9ce-641bc77d281a","direction":"outgoing","index":126347,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"86f7e81c-a95d-412e-832f-ba82ed29eb0b","direction":"outgoing","index":126348,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"},{"id":"925816d0-d793-47b8-ae59-6ebe49fcb51c","direction":"outgoing","index":126349,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04","verb":"get"},{"id":"4a2cd9e8-e54c-4fac-b91c-311e70f76a98","direction":"outgoing","index":126350,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8","verb":"get"},{"id":"1322b3aa-75df-4f8c-ac6b-30077470e7bd","direction":"outgoing","index":126351,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"582b6783-42ba-4698-85fe-b47fe71420f9","direction":"outgoing","index":126352,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"cb5f3fe7-50c5-453a-b200-cd2ef4365118","direction":"outgoing","index":126353,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"0c938d01-e3e2-4fd6-b4ef-7468817b7bfe","direction":"outgoing","index":126354,"result_id":"f9919ca4-16d8-49d9-9457-f8c7f3cd5ce1","status":200,"timestamp":"2026-05-22T12:15:17.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:16.099-04:00"},{"id":"cfb30ff5-5f4e-4d1d-8e01-8f5c07494538","created_at":"2026-05-22T12:15:17.224-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_team","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:17.224-04:00"},{"id":"1970d14f-e7a1-47e6-8889-dbf35622d605","created_at":"2026-05-22T12:15:19.610-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"00f72ccd-92c1-4c10-8626-a0c63b195991","direction":"outgoing","index":126355,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"096cfe3a-845c-4515-a46f-9c3ecd46a37f","direction":"outgoing","index":126356,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d0cbfe93-b0f8-4146-a102-a5e3f1401f1f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b5de095-3219-460d-a701-92f5d2598877","direction":"outgoing","index":126357,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"3606a5e7-1028-4989-99a5-db9812979b57","direction":"outgoing","index":126358,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d0cbfe93-b0f8-4146-a102-a5e3f1401f1f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3679466-3564-48e5-ab8c-d0d22646d66d","direction":"outgoing","index":126359,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"dbbead09-ba65-4faf-ac4b-db0d6fba3824","direction":"outgoing","index":126360,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2ec2f03b-4564-4258-9a2b-91db67699b3b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb913278-0e59-49fc-b082-91009357acf7","direction":"outgoing","index":126361,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"d992918b-b90d-41a2-9d71-f3fd6287cb5e","direction":"outgoing","index":126362,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1a3d344-e802-4593-a2b7-97a32c9c614e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fe59d48-a873-4101-83b9-d194da324266","direction":"outgoing","index":126363,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"d4b449c7-42ab-4640-b71d-d04e6ff262e8","direction":"outgoing","index":126364,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=716971cf-ba82-4ea4-b2f0-8f7ba5e131ee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b5c0ee7-fc02-4510-be0b-070515884f18","direction":"outgoing","index":126365,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=716971cf-ba82-4ea4-b2f0-8f7ba5e131ee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64e2fd70-d988-46af-b244-94658a223556","direction":"outgoing","index":126366,"result_id":"1970d14f-e7a1-47e6-8889-dbf35622d605","status":200,"timestamp":"2026-05-22T12:15:19.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:19.610-04:00"},{"id":"803de569-8b3f-40db-ad50-ba2a9c38128a","created_at":"2026-05-22T12:15:21.941-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6c930223-f01f-4aa3-83e0-831496e5060f","direction":"outgoing","index":126367,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:21.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"4f2a6d2a-6a97-4268-bb32-d6fe063c7a9f","direction":"outgoing","index":126368,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:21.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2f739c21-5c54-459e-a7a9-3cf4a790e402\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b6abea1-8f84-4115-93c4-f374b4787e1f","direction":"outgoing","index":126369,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:21.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"735f8933-a058-4da7-9579-e7767e0a71b3","direction":"outgoing","index":126370,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:21.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d04ada98-8d49-4e88-b4d5-add53697b257","direction":"outgoing","index":126371,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:22.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f1446d4-dc2e-492d-b64a-5d03e636bc08","direction":"outgoing","index":126372,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:22.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7ee8e64-f082-49fa-93db-6dd7a7c433aa","direction":"outgoing","index":126373,"result_id":"803de569-8b3f-40db-ad50-ba2a9c38128a","status":200,"timestamp":"2026-05-22T12:15:22.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:21.941-04:00"},{"id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","created_at":"2026-05-22T12:15:23.620-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"66854461-7c68-4811-93f6-86bbfb230c2e","direction":"outgoing","index":126374,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"0981f08a-8ef8-4226-aead-eb04a8a8d9d7","direction":"outgoing","index":126375,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d79f2e20-734a-49f6-bdd8-ced3a9fb3769\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d457a7a-d724-4378-be2b-0b5419519872","direction":"outgoing","index":126376,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.664-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"4d7fd447-00ba-4de2-9009-7c5508d8e2ae","direction":"outgoing","index":126377,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=21c43e23-9769-49e6-9981-34a1b639f03b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"106f8187-cd48-499f-8184-3183b7834422","direction":"outgoing","index":126378,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"df72b03a-da9d-43b5-85bd-653d6e7587f5","direction":"outgoing","index":126379,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da7d4a43-4622-415a-ac76-abbb93d15efc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4c0e5635-3436-4fd0-b66c-13efe466e464","direction":"outgoing","index":126380,"result_id":"8b720df5-25dc-4aa9-83c7-d1c96a2d32a7","status":200,"timestamp":"2026-05-22T12:15:23.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da7d4a43-4622-415a-ac76-abbb93d15efc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_clinical_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:23.620-04:00"},{"id":"44c59dae-dc01-47c1-871f-739fa25f7be0","created_at":"2026-05-22T12:15:25.898-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6f5fd4f2-73d0-459f-b7a9-b3d4cca23de0","direction":"outgoing","index":126381,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"dfe1465b-006c-49da-8a02-11e585a27353","direction":"outgoing","index":126382,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2b288663-4b7a-4eed-8f89-a39c3029ba94","direction":"outgoing","index":126383,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c4203628-0c4f-4f78-ac0f-a5fccf4643bd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58ac2fb0-8e62-4750-94fb-ae3c2c46eb7e","direction":"outgoing","index":126384,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7ecade7b-cb02-462d-b054-333257464091","direction":"outgoing","index":126385,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5705d60f-7828-455d-a061-49afa94e97ff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"694a1bff-940f-460a-9377-6c2d1c3009c6","direction":"outgoing","index":126386,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"4671ec2c-0c7c-4115-85b9-38b809e6be75","direction":"outgoing","index":126387,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:25.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"a12671fd-5e91-4e15-88c1-f1ce38e457f3","direction":"outgoing","index":126388,"result_id":"44c59dae-dc01-47c1-871f-739fa25f7be0","status":200,"timestamp":"2026-05-22T12:15:26.002-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_onset_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:25.898-04:00"},{"id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","created_at":"2026-05-22T12:15:27.190-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"90e78f16-52ee-4ff1-9758-12543ce97892","direction":"outgoing","index":126389,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"48ce6554-c454-4893-8d57-96f7f23b474b","direction":"outgoing","index":126390,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"98784633-7608-4331-ba51-7bbeff0e355c","direction":"outgoing","index":126391,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c14a3e36-db05-4b6e-9690-b87fa83268e1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d11e3fec-f330-4243-b9d6-3898d45d0360","direction":"outgoing","index":126392,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"78b5c0d4-c3ab-44ef-b8f0-512b555ef08e","direction":"outgoing","index":126393,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cb915985-7d39-44bd-9679-0d7d4422358d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99b77ef6-cd01-48ae-a044-b00dc7e2ef8a","direction":"outgoing","index":126394,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"0aeff8cb-a301-473d-b559-97dc9d4ef23c","direction":"outgoing","index":126395,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"85a21452-ac4a-4a07-862d-cfad0d576029","direction":"outgoing","index":126396,"result_id":"c6c3d0fe-a4b0-43e6-81e9-d38b2027a983","status":200,"timestamp":"2026-05-22T12:15:27.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_abatement_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:27.190-04:00"},{"id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","created_at":"2026-05-22T12:15:28.891-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6c98a780-e649-4b3e-a78f-2eea15b202af","direction":"outgoing","index":126397,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"b234f4ba-e49d-4807-95ae-59405458c4ed","direction":"outgoing","index":126398,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f7b7063a-1e45-4dfe-bb64-5c615ca69105\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9bfcb43c-4cbb-461a-96aa-277fba361bdb","direction":"outgoing","index":126399,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"4c52c0e3-3d6a-4217-b03a-782c35578227","direction":"outgoing","index":126400,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fba09ecf-7531-4ba2-90fe-959f388a771e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ba85bfb-31a0-48d0-8d93-f8981e45d679","direction":"outgoing","index":126401,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"dd4d1ba2-62d0-4827-8d4a-ad9e67497588","direction":"outgoing","index":126402,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fda057a-877b-4f30-ba8b-1f7ac06f891b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ce36dfd-ebc8-4b05-9b2f-13a5c9635faf","direction":"outgoing","index":126403,"result_id":"e78474c3-e5aa-48d5-a287-c63f91c18be7","status":200,"timestamp":"2026-05-22T12:15:28.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fda057a-877b-4f30-ba8b-1f7ac06f891b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_clinical_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:28.891-04:00"},{"id":"cbf086f6-75f7-4e62-ad71-451d783696a5","created_at":"2026-05-22T12:15:28.994-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `asserted-date`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_asserted_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:28.994-04:00"},{"id":"47399b39-547f-4f49-b212-ce29032d36ac","created_at":"2026-05-22T12:15:29.496-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f666b82d-5b97-4125-9ada-6ef210eb4fa4","direction":"outgoing","index":126404,"result_id":"47399b39-547f-4f49-b212-ce29032d36ac","status":200,"timestamp":"2026-05-22T12:15:29.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"c97b7bba-abd5-4b9c-b5de-8424ccec8da9","direction":"outgoing","index":126405,"result_id":"47399b39-547f-4f49-b212-ce29032d36ac","status":200,"timestamp":"2026-05-22T12:15:29.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"45a1b769-14ae-4bf6-b556-c64336d496c2","direction":"outgoing","index":126406,"result_id":"47399b39-547f-4f49-b212-ce29032d36ac","status":200,"timestamp":"2026-05-22T12:15:29.527-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:29.496-04:00"},{"id":"411009eb-7a6d-4ee5-a39d-f1a1e6968d8b","created_at":"2026-05-22T12:15:29.923-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a5f893a0-5f70-433b-86bd-3ef6d6bafd20","direction":"outgoing","index":126407,"result_id":"411009eb-7a6d-4ee5-a39d-f1a1e6968d8b","status":200,"timestamp":"2026-05-22T12:15:29.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"37ff06d6-8f2d-40db-880d-3e04f08bf3be","direction":"outgoing","index":126408,"result_id":"411009eb-7a6d-4ee5-a39d-f1a1e6968d8b","status":200,"timestamp":"2026-05-22T12:15:29.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"93d56cfb-9923-43b7-a4ee-956ae372242f","direction":"outgoing","index":126409,"result_id":"411009eb-7a6d-4ee5-a39d-f1a1e6968d8b","status":200,"timestamp":"2026-05-22T12:15:29.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_encounter_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:29.923-04:00"},{"id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","created_at":"2026-05-22T12:15:31.992-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ac9384a4-a77c-4b1f-8aeb-e0444d624d72","direction":"outgoing","index":126410,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026patient=85","verb":"get"},{"id":"10cec9cb-629d-4c45-959c-ebbd92995ef7","direction":"outgoing","index":126411,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e4b2cef-c5e7-4eb8-a918-e9a089f69cda\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cb830994-bb98-4732-ab1b-8b6a3469c35e","direction":"outgoing","index":126412,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355","verb":"get"},{"id":"766bccd5-f6cd-4ce7-b6c7-c2cbf87b32c7","direction":"outgoing","index":126413,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fedfd79-3824-47f3-a1fb-b3e4e61f825c","direction":"outgoing","index":126414,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a88f6b9-c73a-4443-bd88-4c4d2fd41cb6","direction":"outgoing","index":126415,"result_id":"4d0bd9a9-3ef8-4e92-af4a-2c02c27e38be","status":200,"timestamp":"2026-05-22T12:15:32.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:31.992-04:00"},{"id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","created_at":"2026-05-22T12:15:34.438-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c5cc7588-0f91-4f00-8c52-e85617a93c91","direction":"outgoing","index":126416,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.442-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"40903999-02a5-4294-a1f2-8974c0055a39","direction":"outgoing","index":126417,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"4668c438-c107-495a-9768-a42876972996","direction":"outgoing","index":126418,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d940e12-4d82-484b-9f72-ec26147d74d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f837ec32-bcc5-48fb-8a60-fb3df9002e35","direction":"outgoing","index":126419,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"84fdd972-9e21-4b16-b7bf-d23993a11ebe","direction":"outgoing","index":126420,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5045aed0-e2d1-482f-91b6-14c8285281fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"00dd1d98-9de2-4ddb-bf2f-68ed0656dcc5","direction":"outgoing","index":126421,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"a034433d-0dc1-4014-a01c-73875632f11e","direction":"outgoing","index":126422,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"8884f2dd-145e-4176-ae4b-c57fd43f6f5b","direction":"outgoing","index":126423,"result_id":"35e39c59-a1c3-49b5-abb7-f3c0c59d07f6","status":200,"timestamp":"2026-05-22T12:15:34.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_recorded_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:34.438-04:00"},{"id":"9de6b0da-c4a8-451e-8cfe-c85cfd5b1cba","created_at":"2026-05-22T12:15:34.652-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9ccb2b7c-4ffd-498d-b756-88eaceca1567","direction":"outgoing","index":126424,"result_id":"9de6b0da-c4a8-451e-8cfe-c85cfd5b1cba","status":200,"timestamp":"2026-05-22T12:15:34.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:34.652-04:00"},{"id":"47dc9488-2337-45ba-8e06-245776c10fa8","created_at":"2026-05-22T12:15:36.286-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d4a3468c-3d34-4f28-bc72-7a17901492a3","direction":"outgoing","index":126425,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"aec72f6d-a5c7-4fe1-a07e-0b6e4bb24932","direction":"outgoing","index":126426,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=711f10e0-165d-431a-90d6-5137a4e64df4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60bcffec-875a-41cc-8bd3-c58f7d7de587","direction":"outgoing","index":126427,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"b1e4e482-1720-451e-8bf1-d0e6b9f87145","direction":"outgoing","index":126428,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4cdab943-b205-42d1-a022-3b2dc320ec1f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd91e130-6c86-4c4d-8783-5f181a9c730c","direction":"outgoing","index":126429,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4cdab943-b205-42d1-a022-3b2dc320ec1f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b1ad51b-0b10-416f-820e-3066bc0e87e6","direction":"outgoing","index":126430,"result_id":"47dc9488-2337-45ba-8e06-245776c10fa8","status":200,"timestamp":"2026-05-22T12:15:36.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:36.286-04:00"},{"id":"9a4bfcd4-a1aa-4755-9626-e0854f6adfe9","created_at":"2026-05-22T12:15:50.370-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.code: None of the codings provided are in the value set 'US Core Condition Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-code|7.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#15777000)","type":"info"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:50.370-04:00"},{"id":"7bde119a-d6ee-4ddd-8611-778be1a3c267","created_at":"2026-05-22T12:15:50.497-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:50.497-04:00"},{"id":"970c47fa-accf-4756-ae87-646a2bdf3fb7","created_at":"2026-05-22T12:15:51.604-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"aa389031-71d0-4b81-8a11-e03b4862736e","direction":"outgoing","index":126431,"result_id":"970c47fa-accf-4756-ae87-646a2bdf3fb7","status":200,"timestamp":"2026-05-22T12:15:51.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:51.604-04:00"},{"id":"9a55c8c3-207d-45e2-bb02-8c741ddbccf6","created_at":"2026-05-22T12:15:51.637-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:51.637-04:00"},{"id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","created_at":"2026-05-22T12:15:52.859-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d26e24b9-9d7e-427d-a1b8-fa94ed78f1a4","direction":"outgoing","index":126432,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"ffd03913-6b57-44c4-9482-44344cedf93c","direction":"outgoing","index":126433,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"eb5e5c07-143d-4da1-ba7e-601474614a0f","direction":"outgoing","index":126434,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"c201484c-4f83-4079-b8f3-2af11c8ea854","direction":"outgoing","index":126435,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"45a56e92-89ae-4976-ba18-7a4167c43122","direction":"outgoing","index":126436,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"0f4ada96-8138-442e-8631-cb01c95fc9cd","direction":"outgoing","index":126437,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"b116968a-1020-4f9a-9f2a-f3a5fbe6c014","direction":"outgoing","index":126438,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"e0a91bad-a17b-4c02-9753-dae37f0536d3","direction":"outgoing","index":126439,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"e74a9c2d-3de5-4e16-97d4-e6dce8833780","direction":"outgoing","index":126440,"result_id":"7a7eddd5-b087-47e7-bb72-850e8d5bb8b3","status":200,"timestamp":"2026-05-22T12:15:52.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:52.859-04:00"},{"id":"5944f0f7-a84e-4f1d-af75-39be179d877e","created_at":"2026-05-22T12:15:54.088-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"10b001b2-1541-4b4e-a0cf-3139108ce833","direction":"outgoing","index":126441,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"3d578e1c-ab3d-47d1-ad3d-7b24e6a92ee1","direction":"outgoing","index":126442,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2f739c21-5c54-459e-a7a9-3cf4a790e402\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa0b55c6-f347-4945-b024-8207e7801ddb","direction":"outgoing","index":126443,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"ef35991b-c6e7-4303-a629-0a36e303e332","direction":"outgoing","index":126444,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04ac2ffd-386d-41dc-9c8c-1041aacf89a2","direction":"outgoing","index":126445,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cc04832b-bc19-498e-9717-feabcd497a5e","direction":"outgoing","index":126446,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec334b3-d3d0-4cc5-978e-41002342c7b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea5aa1b7-089d-40b9-a4ad-df67369d43da","direction":"outgoing","index":126447,"result_id":"5944f0f7-a84e-4f1d-af75-39be179d877e","status":200,"timestamp":"2026-05-22T12:15:54.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:54.088-04:00"},{"id":"57fd4378-55b9-43a0-98d9-40a21e8d4d9e","created_at":"2026-05-22T12:15:54.477-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"80b4a7e8-0b84-4b7f-99ea-72245a973861","direction":"outgoing","index":126448,"result_id":"57fd4378-55b9-43a0-98d9-40a21e8d4d9e","status":200,"timestamp":"2026-05-22T12:15:54.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"27e1ecc5-0651-4756-963b-713444083a7f","direction":"outgoing","index":126449,"result_id":"57fd4378-55b9-43a0-98d9-40a21e8d4d9e","status":200,"timestamp":"2026-05-22T12:15:54.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_clinical_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:54.477-04:00"},{"id":"12eb4673-025a-4ab8-b068-30ee2149d010","created_at":"2026-05-22T12:15:57.316-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"733a8f17-029c-4a15-8c2f-4fa090c9e957","direction":"outgoing","index":126450,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"3775e2da-07c2-49e6-915c-49a0770b8a0e","direction":"outgoing","index":126451,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9fb9c383-0c1f-455b-b7d0-65e4215b6ff9","direction":"outgoing","index":126452,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"ba944645-15ef-496e-8e87-efcc84c75d15","direction":"outgoing","index":126453,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0bc5cf11-9d03-449e-821b-63a81d945b13","direction":"outgoing","index":126454,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2e327224-fc20-4320-ab57-d0b60492a94f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36798301-9eaf-4c0a-b145-8cffbbe5aa34","direction":"outgoing","index":126455,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2e327224-fc20-4320-ab57-d0b60492a94f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ffec9b6b-b3f1-4392-87d6-630b17a7fe52","direction":"outgoing","index":126456,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5f16b830-ba6b-4f63-ba31-8760f8b7cad2","direction":"outgoing","index":126457,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8e647dd7-dd06-485a-9e98-1ac343ab875a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7637524-4503-4da3-bfa2-fc9fbe9d7c67","direction":"outgoing","index":126458,"result_id":"12eb4673-025a-4ab8-b068-30ee2149d010","status":200,"timestamp":"2026-05-22T12:15:57.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8e647dd7-dd06-485a-9e98-1ac343ab875a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_onset_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:57.316-04:00"},{"id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","created_at":"2026-05-22T12:15:59.617-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"72df1ef2-31d6-459d-91ef-02728b099327","direction":"outgoing","index":126459,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"2bdff7bc-6078-4baf-b83c-beb2a673eac4","direction":"outgoing","index":126460,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"6eaee58b-6eb0-45d9-a2bd-5f43cb8a9e00","direction":"outgoing","index":126461,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"10d3eb71-14f3-4203-a3b3-3dc221923c35","direction":"outgoing","index":126462,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"96c95801-7c12-4a74-b736-59fd49cef3a3","direction":"outgoing","index":126463,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69728373-576b-44b8-b24c-31169e56a4ad\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be70bdce-1bb3-4d4f-a521-90c8005012fd","direction":"outgoing","index":126464,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"2c007a47-10a4-4b91-ba10-5e89595c6a0b","direction":"outgoing","index":126465,"result_id":"93ceacf6-40e4-412d-96dc-c8172c0f6a46","status":200,"timestamp":"2026-05-22T12:15:59.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a72260e5-fb0c-4ec4-aaa4-7c338b90af4f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_abatement_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:15:59.617-04:00"},{"id":"7ac02c72-6644-4842-8cc7-23f99971d489","created_at":"2026-05-22T12:16:01.204-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5e00c215-929a-47a3-8894-a8846dfc28b5","direction":"outgoing","index":126466,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"66488ed1-50a7-4971-9656-c8a76920bb10","direction":"outgoing","index":126467,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fda057a-877b-4f30-ba8b-1f7ac06f891b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"08daaf85-fa5b-4261-8f29-c1db709e4b8e","direction":"outgoing","index":126468,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fda057a-877b-4f30-ba8b-1f7ac06f891b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f19d0abe-ef93-403c-b2f5-5ede9d5bcd7a","direction":"outgoing","index":126469,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"5cb7726d-ed61-46c3-8576-a08460febea5","direction":"outgoing","index":126470,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd21f129-6b30-4572-b083-39a564727ea4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3404b5a4-fb96-49e5-8cd4-5f2d4216888f","direction":"outgoing","index":126471,"result_id":"7ac02c72-6644-4842-8cc7-23f99971d489","status":200,"timestamp":"2026-05-22T12:16:01.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd21f129-6b30-4572-b083-39a564727ea4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_clinical_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:01.204-04:00"},{"id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","created_at":"2026-05-22T12:16:02.040-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"16499e09-f207-417d-ac4e-72ac99830b22","direction":"outgoing","index":126472,"result_id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","status":200,"timestamp":"2026-05-22T12:16:02.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"d7d8f82c-4923-4978-95d6-15b5751f423c","direction":"outgoing","index":126473,"result_id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","status":200,"timestamp":"2026-05-22T12:16:02.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"79df7065-bce4-4d29-9f14-057a572b68ca","direction":"outgoing","index":126474,"result_id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","status":200,"timestamp":"2026-05-22T12:16:02.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"250af5fa-9768-4b15-8b52-2e3b77d2a6cd","direction":"outgoing","index":126475,"result_id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","status":200,"timestamp":"2026-05-22T12:16:02.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2adfd93d-eb45-4383-902a-31c5908f710e","direction":"outgoing","index":126476,"result_id":"8df52f79-fc6d-40c2-8804-5d3709b6f862","status":200,"timestamp":"2026-05-22T12:16:02.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_asserted_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:02.040-04:00"},{"id":"b34fd7bd-bcaa-4b3b-9f42-7b11bc92c0bb","created_at":"2026-05-22T12:16:02.382-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"65224c31-d62a-4f21-b0ff-1663aea30682","direction":"outgoing","index":126477,"result_id":"b34fd7bd-bcaa-4b3b-9f42-7b11bc92c0bb","status":200,"timestamp":"2026-05-22T12:16:02.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"e4ecf4b4-d09e-421b-91bc-b6f0a54dedcd","direction":"outgoing","index":126478,"result_id":"b34fd7bd-bcaa-4b3b-9f42-7b11bc92c0bb","status":200,"timestamp":"2026-05-22T12:16:02.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:02.382-04:00"},{"id":"0bef204d-42fe-4dc9-94d2-fd0290a25abc","created_at":"2026-05-22T12:16:02.427-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `category`, `encounter`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_encounter_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:02.427-04:00"},{"id":"3bcdff94-21f1-4379-ac59-db2b3aef5a54","created_at":"2026-05-22T12:16:03.104-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1943d890-d047-48a9-bcb0-e64e9536c352","direction":"outgoing","index":126479,"result_id":"3bcdff94-21f1-4379-ac59-db2b3aef5a54","status":200,"timestamp":"2026-05-22T12:16:03.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355","verb":"get"},{"id":"19e7910d-bd46-4a5c-9921-8e6fb3443eb2","direction":"outgoing","index":126480,"result_id":"3bcdff94-21f1-4379-ac59-db2b3aef5a54","status":200,"timestamp":"2026-05-22T12:16:03.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"277b9925-d43c-45d8-b2e2-10166f64844a","direction":"outgoing","index":126481,"result_id":"3bcdff94-21f1-4379-ac59-db2b3aef5a54","status":200,"timestamp":"2026-05-22T12:16:03.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"452545b7-d90c-42fa-ba8b-fedc5bf900d2","direction":"outgoing","index":126482,"result_id":"3bcdff94-21f1-4379-ac59-db2b3aef5a54","status":200,"timestamp":"2026-05-22T12:16:03.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d0a4690-fb72-4148-bd75-6bcc64c929cf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:03.104-04:00"},{"id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","created_at":"2026-05-22T12:16:05.733-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d7f0bff9-f4b2-495e-9958-836b921139c1","direction":"outgoing","index":126483,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"9de2dfac-7564-4e0b-bf07-3361f6d34a28","direction":"outgoing","index":126484,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"c5bb8064-1fa4-45ea-8668-7c3203ea1d7c","direction":"outgoing","index":126485,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"583da332-9c0c-4a57-9c83-eb18f86790f1","direction":"outgoing","index":126486,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"ebc8ff2e-bec2-4d3f-9d5e-95afac2a7270","direction":"outgoing","index":126487,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6c9699c7-ba14-4806-b0e0-3ef6bc806c95\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0396fd1c-20b9-4d10-9ff9-d9e8cd05ec4d","direction":"outgoing","index":126488,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.815-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6c9699c7-ba14-4806-b0e0-3ef6bc806c95\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8f237a5-9a30-4549-93b4-02007f3bdbec","direction":"outgoing","index":126489,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"152785ed-9dfc-46bb-97a9-1d766690ae9f","direction":"outgoing","index":126490,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90ebc66b-7fb4-484b-837c-d05feb8912f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fcd1efd-d30e-4128-8891-dc7e50b36633","direction":"outgoing","index":126491,"result_id":"2a8f808a-2d03-4a77-ab30-6ff4559122cc","status":200,"timestamp":"2026-05-22T12:16:05.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90ebc66b-7fb4-484b-837c-d05feb8912f1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_recorded_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:05.733-04:00"},{"id":"954b873b-6ff6-4750-8a0c-61dfe0996e55","created_at":"2026-05-22T12:16:05.965-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b583afd1-7063-4e4f-a3d9-45ca8d276cf2","direction":"outgoing","index":126492,"result_id":"954b873b-6ff6-4750-8a0c-61dfe0996e55","status":200,"timestamp":"2026-05-22T12:16:05.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:05.965-04:00"},{"id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","created_at":"2026-05-22T12:16:06.966-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a573f6d0-5474-4bdf-a7b4-ed6d6364488b","direction":"outgoing","index":126493,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:06.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=85","verb":"get"},{"id":"2387c0c7-e814-44c8-b2d0-c80708bba945","direction":"outgoing","index":126494,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:06.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=85","verb":"get"},{"id":"4f654153-7a52-4b61-9cc6-695989e3f6ab","direction":"outgoing","index":126495,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:07.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=355","verb":"get"},{"id":"0a6d0e1a-4511-4efe-bea0-7018e8138474","direction":"outgoing","index":126496,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:07.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=355","verb":"get"},{"id":"7bbe4ee4-4dc6-4ba3-b3d7-e404747e5fe4","direction":"outgoing","index":126497,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:07.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=907","verb":"get"},{"id":"102471da-916a-45d3-9c2d-5bc57c9f61cd","direction":"outgoing","index":126498,"result_id":"ee6b1c55-7100-4eb2-9564-2059ef391bd6","status":200,"timestamp":"2026-05-22T12:16:07.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:06.966-04:00"},{"id":"d9ab33e5-c315-4c4c-bda6-88861fbd73c4","created_at":"2026-05-22T12:16:08.051-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/condition-category|1.0.0","type":"info"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.category[0]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/condition-category#health-concern)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:08.051-04:00"},{"id":"368d57e8-05f1-460b-8f59-63e0bddfa1d2","created_at":"2026-05-22T12:16:08.080-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:08.080-04:00"},{"id":"b8e75004-ffe9-4a6c-ba36-464df2cab170","created_at":"2026-05-22T12:16:08.088-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:08.088-04:00"},{"id":"3d3f774b-d907-42ae-ad1b-6c6b2490122c","created_at":"2026-05-22T12:16:08.091-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:08.091-04:00"},{"id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","created_at":"2026-05-22T12:16:08.806-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0451c374-1097-475c-8a93-cb3f19336aba","direction":"outgoing","index":126499,"result_id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","status":200,"timestamp":"2026-05-22T12:16:08.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=85","verb":"get"},{"id":"0a5e8366-1215-43e6-8418-394085c82dea","direction":"outgoing","index":126500,"result_id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","status":200,"timestamp":"2026-05-22T12:16:08.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/_search","verb":"post"},{"id":"3f3ccec3-6997-4df2-8f4d-c564dfb93446","direction":"outgoing","index":126501,"result_id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","status":200,"timestamp":"2026-05-22T12:16:08.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=Patient/85","verb":"get"},{"id":"64b8eb67-d0a3-4cdf-8737-8bdf89139d65","direction":"outgoing","index":126502,"result_id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","status":200,"timestamp":"2026-05-22T12:16:08.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=355","verb":"get"},{"id":"0fca1f84-bd3c-447f-8270-38329cf4acd6","direction":"outgoing","index":126503,"result_id":"a9ac4b21-f9f3-42a4-a9db-303b448b84c1","status":200,"timestamp":"2026-05-22T12:16:08.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:08.806-04:00"},{"id":"4ec23811-52a3-4a98-a613-3846753e4dcb","created_at":"2026-05-22T12:16:09.012-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7cda83ee-ac09-42d5-8a9d-8e55f3ea03c5","direction":"outgoing","index":126504,"result_id":"4ec23811-52a3-4a98-a613-3846753e4dcb","status":200,"timestamp":"2026-05-22T12:16:09.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.012-04:00"},{"id":"9c7b8e0f-30c3-42ef-b222-b51794668c5d","created_at":"2026-05-22T12:16:09.472-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c3857dc9-0965-46b5-9c7d-329385cb4be8","direction":"outgoing","index":126505,"result_id":"9c7b8e0f-30c3-42ef-b222-b51794668c5d","status":200,"timestamp":"2026-05-22T12:16:09.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"205e3628-f569-4c4f-b071-0ed636f96525","direction":"outgoing","index":126506,"result_id":"9c7b8e0f-30c3-42ef-b222-b51794668c5d","status":200,"timestamp":"2026-05-22T12:16:09.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"d122e076-6bf9-400a-9628-edd8fd226a9a","direction":"outgoing","index":126507,"result_id":"9c7b8e0f-30c3-42ef-b222-b51794668c5d","status":200,"timestamp":"2026-05-22T12:16:09.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.472-04:00"},{"id":"1e6212f2-7aa9-4e7d-8768-2e62f388373a","created_at":"2026-05-22T12:16:09.634-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.identifier[0].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#MB)","type":"warning"},{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.634-04:00"},{"id":"09ec2c64-efd7-48f5-9189-cf05b1602f49","created_at":"2026-05-22T12:16:09.640-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.640-04:00"},{"id":"8277f388-1114-4d59-9357-e82d6c0c662d","created_at":"2026-05-22T12:16:09.789-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e2dfc165-13d2-485e-a8e1-c0f39188164f","direction":"outgoing","index":126508,"result_id":"8277f388-1114-4d59-9357-e82d6c0c662d","status":200,"timestamp":"2026-05-22T12:16:09.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.789-04:00"},{"id":"858aefff-32d7-4c26-a337-7ae88cd0ef72","created_at":"2026-05-22T12:16:09.807-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_coverage","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:09.807-04:00"},{"id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","created_at":"2026-05-22T12:16:10.506-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"74829f1c-701c-4cc4-950f-8e6056c2836d","direction":"outgoing","index":126509,"result_id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","status":200,"timestamp":"2026-05-22T12:16:10.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=85","verb":"get"},{"id":"20729981-0957-4d09-b008-19e7902a9b5c","direction":"outgoing","index":126510,"result_id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","status":200,"timestamp":"2026-05-22T12:16:10.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355","verb":"get"},{"id":"804f9203-2fad-4b0d-abf0-59ff33b8d35f","direction":"outgoing","index":126511,"result_id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","status":200,"timestamp":"2026-05-22T12:16:10.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/_search","verb":"post"},{"id":"9a7db89b-d58d-4837-8d89-05fa95700588","direction":"outgoing","index":126512,"result_id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","status":200,"timestamp":"2026-05-22T12:16:10.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355","verb":"get"},{"id":"b1e3aa15-adda-494a-8a47-9e6796ff3d2f","direction":"outgoing","index":126513,"result_id":"7c2f7b32-0288-4197-b8e4-ab19cdc1bcf8","status":200,"timestamp":"2026-05-22T12:16:10.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:10.506-04:00"},{"id":"d2006470-97ce-4eb3-b933-3006d43bfe13","created_at":"2026-05-22T12:16:10.812-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"135c9193-c302-48eb-9472-52b5c13c2982","direction":"outgoing","index":126514,"result_id":"d2006470-97ce-4eb3-b933-3006d43bfe13","status":200,"timestamp":"2026-05-22T12:16:10.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active","verb":"get"},{"id":"425799cd-4075-4690-8690-58122f114046","direction":"outgoing","index":126515,"result_id":"d2006470-97ce-4eb3-b933-3006d43bfe13","status":200,"timestamp":"2026-05-22T12:16:10.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active,inactive,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:10.812-04:00"},{"id":"e690012e-10db-4d1c-9232-c3ae8ffb1602","created_at":"2026-05-22T12:16:11.116-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b848c82e-948d-4145-8502-a061987fe94b","direction":"outgoing","index":126516,"result_id":"e690012e-10db-4d1c-9232-c3ae8ffb1602","status":200,"timestamp":"2026-05-22T12:16:11.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001","verb":"get"},{"id":"f31a7ed4-3bb8-45b8-b7b5-bc5dd4817dd8","direction":"outgoing","index":126517,"result_id":"e690012e-10db-4d1c-9232-c3ae8ffb1602","status":200,"timestamp":"2026-05-22T12:16:11.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_type_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:11.116-04:00"},{"id":"c9b39222-81c3-4d94-b286-97435f62478e","created_at":"2026-05-22T12:16:11.280-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a90c6a3-b1d6-43fc-9dca-bb98d2e8b1a6","direction":"outgoing","index":126518,"result_id":"c9b39222-81c3-4d94-b286-97435f62478e","status":200,"timestamp":"2026-05-22T12:16:11.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:11.280-04:00"},{"id":"a9afcd41-382a-4a23-872c-2b6906ced60b","created_at":"2026-05-22T12:16:11.770-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6f35bcf7-e0cb-4d5a-b9b5-8ed42e521491","direction":"outgoing","index":126519,"result_id":"a9afcd41-382a-4a23-872c-2b6906ced60b","status":200,"timestamp":"2026-05-22T12:16:11.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"677c05ee-0b0f-4988-96e8-ff26321ad4e0","direction":"outgoing","index":126520,"result_id":"a9afcd41-382a-4a23-872c-2b6906ced60b","status":200,"timestamp":"2026-05-22T12:16:11.798-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"e2b3e2a1-ed70-4f09-81bd-359ccec39181","direction":"outgoing","index":126521,"result_id":"a9afcd41-382a-4a23-872c-2b6906ced60b","status":200,"timestamp":"2026-05-22T12:16:11.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:11.770-04:00"},{"id":"d2caf655-5b30-488a-849f-5b8ace394ad6","created_at":"2026-05-22T12:16:12.060-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:12.060-04:00"},{"id":"7d9a53c2-0309-4109-8d00-3a3683eb9574","created_at":"2026-05-22T12:16:12.068-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:12.068-04:00"},{"id":"17930546-62b1-45c8-9328-6ace0470269a","created_at":"2026-05-22T12:16:12.074-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:12.074-04:00"},{"id":"1c9bba51-204c-444c-b249-31a31ef677a8","created_at":"2026-05-22T12:16:12.076-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_device","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:12.076-04:00"},{"id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","created_at":"2026-05-22T12:16:14.180-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"77ad5926-68bf-4be5-ae44-9e02b258d7e5","direction":"outgoing","index":126522,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85","verb":"get"},{"id":"8e4678d7-aa42-4c34-9edb-85b3f354e66d","direction":"outgoing","index":126523,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"0e859e01-2dd6-457a-8ecd-3baabdf8b326","direction":"outgoing","index":126524,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85","verb":"get"},{"id":"f804f42f-95dc-478b-bc3d-fa57e67b276b","direction":"outgoing","index":126525,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85","verb":"get"},{"id":"21c14263-2559-4f5f-8fb5-497f200cd59b","direction":"outgoing","index":126526,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85","verb":"get"},{"id":"51b8922b-6c88-486a-bf1b-90461ffdcda6","direction":"outgoing","index":126527,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85","verb":"get"},{"id":"df29476e-043b-4855-bc60-f7947b0f2b2e","direction":"outgoing","index":126528,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355","verb":"get"},{"id":"4f8b03d2-4b3d-479f-8665-8be652fa0de8","direction":"outgoing","index":126529,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355","verb":"get"},{"id":"60d46ff4-4799-4317-9de4-c297e50659bb","direction":"outgoing","index":126530,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355","verb":"get"},{"id":"b6d0a2e3-da9a-4e4d-b45d-915a5aac973b","direction":"outgoing","index":126531,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=907","verb":"get"},{"id":"7b916c28-91d4-4391-982d-a3b91f7afeaf","direction":"outgoing","index":126532,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=907","verb":"get"},{"id":"a640abf6-c028-4b16-896c-2bfa255af4dc","direction":"outgoing","index":126533,"result_id":"af91b9c2-96b5-4446-9de5-c32b27d0b866","status":200,"timestamp":"2026-05-22T12:16:14.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:14.180-04:00"},{"id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","created_at":"2026-05-22T12:16:16.446-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d7106741-2596-430f-8808-0df0189e68dd","direction":"outgoing","index":126534,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"e2a469c7-a14a-4ba1-966b-409be126441c","direction":"outgoing","index":126535,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28f38f30-25cb-4863-b4e0-8e84cee74d05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddd12b78-b837-4c90-9ac6-10a3b147d56b","direction":"outgoing","index":126536,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"266c11e6-debb-42f2-a16f-3f4ec32edb20","direction":"outgoing","index":126537,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6b83ce89-e789-4488-8be2-c49e3717731f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1660d0c7-bc0a-453c-b25c-e179de077ce0","direction":"outgoing","index":126538,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6b83ce89-e789-4488-8be2-c49e3717731f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b3975b8-ec9a-4bb7-b244-f5641bf9c27f","direction":"outgoing","index":126539,"result_id":"00bcb0b7-8db9-428a-8631-7fbbfff18ee6","status":200,"timestamp":"2026-05-22T12:16:16.535-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:16.446-04:00"},{"id":"901654d4-d490-4856-bc05-15413f0534d7","created_at":"2026-05-22T12:16:17.384-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"76e058e2-ae93-414f-ad04-72d533c416ca","direction":"outgoing","index":126540,"result_id":"901654d4-d490-4856-bc05-15413f0534d7","status":200,"timestamp":"2026-05-22T12:16:17.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85","verb":"get"},{"id":"38347eb9-ed81-4821-9203-542b0b083278","direction":"outgoing","index":126541,"result_id":"901654d4-d490-4856-bc05-15413f0534d7","status":200,"timestamp":"2026-05-22T12:16:17.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85","verb":"get"},{"id":"0da12a38-1d55-49cd-ae26-4931e9667377","direction":"outgoing","index":126542,"result_id":"901654d4-d490-4856-bc05-15413f0534d7","status":200,"timestamp":"2026-05-22T12:16:17.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:17.384-04:00"},{"id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","created_at":"2026-05-22T12:16:18.524-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ea7108f3-1102-4c93-a752-9edb463b041b","direction":"outgoing","index":126543,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c497faca-2b20-4256-b6a8-b3e7b312f619","direction":"outgoing","index":126544,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e49596de-b679-4acb-b687-c7f43970025a","direction":"outgoing","index":126545,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ca9727bf-357a-4a10-9e38-327801bc9eb0","direction":"outgoing","index":126546,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"6375855c-8242-43c3-bb19-a230febda6ad","direction":"outgoing","index":126547,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a95a59f5-e8eb-466d-9ba4-fb1ea40fa622","direction":"outgoing","index":126548,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e60199e2-81cc-4dff-9af1-0c46fc12200a","direction":"outgoing","index":126549,"result_id":"bfc59a5a-f490-475f-bc59-8cd4159c589a","status":200,"timestamp":"2026-05-22T12:16:18.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:18.524-04:00"},{"id":"48b52e72-868e-4098-a385-5a4f6d04296e","created_at":"2026-05-22T12:16:19.614-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1418b8b3-f6cc-4ba2-9235-330e5173776f","direction":"outgoing","index":126550,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4eade2a3-2a47-49da-ad3b-67b53478a6e6","direction":"outgoing","index":126551,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d79929ee-6d26-4811-bf5b-9fee59c17a2d","direction":"outgoing","index":126552,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"0ee48451-d46b-4642-8366-7c4da61c6371","direction":"outgoing","index":126553,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8dd9de94-8655-425e-89eb-2bb10cf512f5","direction":"outgoing","index":126554,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c0ed80a4-9ab5-4dca-a19b-c1313ba7f6e9","direction":"outgoing","index":126555,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"15d2b5cd-8552-42c2-ab9b-33b818cb53bd","direction":"outgoing","index":126556,"result_id":"48b52e72-868e-4098-a385-5a4f6d04296e","status":200,"timestamp":"2026-05-22T12:16:19.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:19.614-04:00"},{"id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","created_at":"2026-05-22T12:16:22.610-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5369ad5c-be29-4631-be18-930497b4f13d","direction":"outgoing","index":126557,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final","verb":"get"},{"id":"8b1c6222-e7c0-4a83-8c34-13fd1f64947e","direction":"outgoing","index":126558,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1f563aec-0997-4550-a09a-5d7292427f15\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a581ec4-2a1c-4e5d-b2fa-715d3831b8cd","direction":"outgoing","index":126559,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"fb3c843b-be2b-4e9d-a208-96c5c00a6007","direction":"outgoing","index":126560,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7c7c751-ba7d-4d16-b56a-201be17512a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f21584fe-931f-4c45-a8b5-f548b965677b","direction":"outgoing","index":126561,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7c7c751-ba7d-4d16-b56a-201be17512a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9ffe65d-b55a-47a1-a99e-7111fdffee04","direction":"outgoing","index":126562,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"65329651-e513-408f-a888-04869f18aba1","direction":"outgoing","index":126563,"result_id":"b23fc3b2-ed1c-4315-b0e6-7238db5a0031","status":200,"timestamp":"2026-05-22T12:16:22.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd66fde4-1742-4f08-ba4f-7929bf9a6f22\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:22.610-04:00"},{"id":"2301cb02-8ae6-4488-ae6a-e1d3a23d51e9","created_at":"2026-05-22T12:16:23.255-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bd9cb583-837c-4520-aa46-3c391e082746","direction":"outgoing","index":126564,"result_id":"2301cb02-8ae6-4488-ae6a-e1d3a23d51e9","status":200,"timestamp":"2026-05-22T12:16:23.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=LP29684-5\u0026patient=85","verb":"get"},{"id":"7bb9c5c7-7d12-41af-9496-ee8dd8533ba6","direction":"outgoing","index":126565,"result_id":"2301cb02-8ae6-4488-ae6a-e1d3a23d51e9","status":200,"timestamp":"2026-05-22T12:16:23.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://loinc.org%7CLP29684-5\u0026patient=85","verb":"get"},{"id":"693c5b77-9a99-4af9-8968-723baf5d5716","direction":"outgoing","index":126566,"result_id":"2301cb02-8ae6-4488-ae6a-e1d3a23d51e9","status":200,"timestamp":"2026-05-22T12:16:23.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=LP29684-5\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:23.255-04:00"},{"id":"c508fdba-21b3-45ea-8603-5b2e2c1a31af","created_at":"2026-05-22T12:16:23.436-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"555721b4-8b0a-435d-8d05-cdaf6b4c17cb","direction":"outgoing","index":126567,"result_id":"c508fdba-21b3-45ea-8603-5b2e2c1a31af","status":200,"timestamp":"2026-05-22T12:16:23.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:23.436-04:00"},{"id":"7e17621d-39da-45aa-8cda-1cfc9182f976","created_at":"2026-05-22T12:16:25.167-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f47f6611-7396-47d4-8dfd-4853dbf6002c","direction":"outgoing","index":126568,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85","verb":"get"},{"id":"87a062bc-4e22-49c7-be7d-0aa65af13648","direction":"outgoing","index":126569,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85","verb":"get"},{"id":"4b450f0f-0246-4327-89f4-0b9148541a19","direction":"outgoing","index":126570,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85","verb":"get"},{"id":"96d635cd-d873-4a2f-8711-b9692302f02a","direction":"outgoing","index":126571,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355","verb":"get"},{"id":"20c1150c-7340-44ac-ab13-87be0ef3496a","direction":"outgoing","index":126572,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355","verb":"get"},{"id":"9d0ca51d-9fe9-485b-9d78-f1f410cf3d9c","direction":"outgoing","index":126573,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355","verb":"get"},{"id":"abee54be-cc64-4efc-85d5-365edfe3e42e","direction":"outgoing","index":126574,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=907","verb":"get"},{"id":"3bf3c536-b232-4193-919a-37ef16c3704d","direction":"outgoing","index":126575,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=907","verb":"get"},{"id":"805f3b38-191a-4a01-a857-e1e474fe9575","direction":"outgoing","index":126576,"result_id":"7e17621d-39da-45aa-8cda-1cfc9182f976","status":200,"timestamp":"2026-05-22T12:16:25.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:25.167-04:00"},{"id":"0beea362-1708-4372-b896-cdaab0480f33","created_at":"2026-05-22T12:16:30.712-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:30.712-04:00"},{"id":"6c698d21-ef30-470f-a000-725a0a1e188e","created_at":"2026-05-22T12:16:30.769-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:30.769-04:00"},{"id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","created_at":"2026-05-22T12:16:36.398-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1b6db06f-a7f0-47fc-878d-8367d8b5e0e3","direction":"outgoing","index":126577,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"},{"id":"21b22748-992c-43b7-a2e4-fe51a7d20d7d","direction":"outgoing","index":126578,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"3b03fddb-ef38-4ae1-93c8-8803f117b74f","direction":"outgoing","index":126579,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"a1f15768-7d9d-47fa-b48c-a13d2dd8e9fc","direction":"outgoing","index":126580,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"48894a34-f0d8-4903-a6c3-73e7b52a06c4","direction":"outgoing","index":126581,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"b593d1b8-54e7-4727-b601-6c644c3b1025","direction":"outgoing","index":126582,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"3a9b51a8-450d-4c7b-b5b1-5b928bb78c7e","direction":"outgoing","index":126583,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"2d8db4bb-b87b-41d6-bf13-0b28ea51e015","direction":"outgoing","index":126584,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"1522ed6a-70df-4588-8260-24fae440f981","direction":"outgoing","index":126585,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"1fea1887-e20b-411f-8f88-b1671256f1d9","direction":"outgoing","index":126586,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"e1c4852a-b535-4a03-84d4-3f1273b20954","direction":"outgoing","index":126587,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"5c3476ae-8578-4796-bff1-b2e5802e72f1","direction":"outgoing","index":126588,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"8e5cb2a4-716f-4f70-b966-39b79699c229","direction":"outgoing","index":126589,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"6d4dfb5f-ca93-49bd-9860-e8b888ded385","direction":"outgoing","index":126590,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"83ddcbef-8a8e-4f18-a205-cefd8283c695","direction":"outgoing","index":126591,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"76e66762-0369-4f2e-99a0-f187cfabd7e7","direction":"outgoing","index":126592,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"ec45837e-9e38-4427-a45a-6a8fec04cf3f","direction":"outgoing","index":126593,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"98e17a6d-a3f1-482d-810b-0a099acd5bb6","direction":"outgoing","index":126594,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"be94ddb1-d8ed-4132-88d1-93c53d266c7c","direction":"outgoing","index":126595,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"364dfc48-d412-4a1b-a289-00571d1b943c","direction":"outgoing","index":126596,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"550349e0-eda2-4d3d-a0ab-9b3b55f871cf","direction":"outgoing","index":126597,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"0ab15253-146b-4dcc-a0e5-d2686bc1a90c","direction":"outgoing","index":126598,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"5999a553-0c9a-4ce1-b3cc-57d968907f3b","direction":"outgoing","index":126599,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"ca7b04ab-88be-495a-82a3-37f4b1f04c23","direction":"outgoing","index":126600,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"35707d7c-7d0f-40a2-8dfe-3bf9ecbec7a2","direction":"outgoing","index":126601,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"4b4555fe-73ed-4195-b058-601e3bbec4a4","direction":"outgoing","index":126602,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"},{"id":"6839240e-f5fa-4977-af6a-d16b150b6e8b","direction":"outgoing","index":126603,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.765-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"},{"id":"afde796b-16ac-4d71-a9fa-8bc12733448a","direction":"outgoing","index":126604,"result_id":"8d7f2d9f-36cc-4d50-852d-21fdba46c155","status":200,"timestamp":"2026-05-22T12:16:36.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Media/653cf7b4-8ae2-4ed5-a2ce-892371b040b8","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:36.398-04:00"},{"id":"6438b42f-411e-4786-83d1-fae3217154fe","created_at":"2026-05-22T12:16:36.787-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:36.787-04:00"},{"id":"c9750542-0f70-4ab5-836d-91c2942554f5","created_at":"2026-05-22T12:16:37.645-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6a03cb4b-f19b-407d-8603-a0b5d5bc979d","direction":"outgoing","index":126605,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.651-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85","verb":"get"},{"id":"c0e63c4b-82e9-4ed4-9885-cea210d2b773","direction":"outgoing","index":126606,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355","verb":"get"},{"id":"fdf9b832-c10a-4036-907d-20e28fc821f4","direction":"outgoing","index":126607,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"3f63ce1b-90e7-4568-bdf8-9985daaf60d1","direction":"outgoing","index":126608,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355","verb":"get"},{"id":"c4c44f3d-2bce-421d-9b0a-6592d2cd7ccd","direction":"outgoing","index":126609,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355","verb":"get"},{"id":"f7399f72-9512-4f58-a405-0b93a14e501f","direction":"outgoing","index":126610,"result_id":"c9750542-0f70-4ab5-836d-91c2942554f5","status":200,"timestamp":"2026-05-22T12:16:37.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:37.645-04:00"},{"id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","created_at":"2026-05-22T12:16:38.718-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b2cb425a-c56a-4264-9c9d-4065699baf9d","direction":"outgoing","index":126611,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"9819b2ad-4845-4579-81df-e7e69a36a080","direction":"outgoing","index":126612,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28f38f30-25cb-4863-b4e0-8e84cee74d05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ebcf5807-a55f-40a7-890a-62abdd51bbed","direction":"outgoing","index":126613,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"7dc7711d-47a4-4e63-b638-30569a6219ed","direction":"outgoing","index":126614,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6b83ce89-e789-4488-8be2-c49e3717731f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b2a5134-a5cb-461f-aafe-72a07aec62db","direction":"outgoing","index":126615,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6b83ce89-e789-4488-8be2-c49e3717731f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82caa7cc-88d8-403a-ab43-b522d3a4e044","direction":"outgoing","index":126616,"result_id":"0a4aa0e0-a4f3-4bb6-8efb-f7dbdcb873a0","status":200,"timestamp":"2026-05-22T12:16:38.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:38.718-04:00"},{"id":"36e92de2-64fa-4535-ae21-8a562a89ad1f","created_at":"2026-05-22T12:16:39.096-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cf5a7a58-c0f6-4509-b7a2-686bf582c853","direction":"outgoing","index":126617,"result_id":"36e92de2-64fa-4535-ae21-8a562a89ad1f","status":200,"timestamp":"2026-05-22T12:16:39.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355","verb":"get"},{"id":"13839011-f2da-4988-82ba-f127898102a9","direction":"outgoing","index":126618,"result_id":"36e92de2-64fa-4535-ae21-8a562a89ad1f","status":200,"timestamp":"2026-05-22T12:16:39.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:39.096-04:00"},{"id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","created_at":"2026-05-22T12:16:40.148-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"42cf7890-c93d-4807-814e-1a64ef406ea7","direction":"outgoing","index":126619,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.150-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3569eb74-db52-46c8-8208-3e10847fc582","direction":"outgoing","index":126620,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9c8aeb98-7308-438c-9590-d3536ac7face","direction":"outgoing","index":126621,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ce0fabb6-98f8-4542-9f4b-fd283afae9e1","direction":"outgoing","index":126622,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a8085bc9-d27b-4d40-8fdf-3f375a56f3d2","direction":"outgoing","index":126623,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"eed95852-28d0-464f-b219-6d3fa3adac5c","direction":"outgoing","index":126624,"result_id":"e118872a-d8df-4b5c-8747-48d91fd15cf2","status":200,"timestamp":"2026-05-22T12:16:40.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:40.148-04:00"},{"id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","created_at":"2026-05-22T12:16:41.075-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c406b25c-1f79-474a-ad54-b001742eab9b","direction":"outgoing","index":126625,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b66242dc-82e7-4631-862c-1553dc9faa7f","direction":"outgoing","index":126626,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4e28d37d-7ea0-4411-9bb6-0cc5cac01bda","direction":"outgoing","index":126627,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"01af10b2-56a6-46cb-8814-0ce3a46a2312","direction":"outgoing","index":126628,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2c0896b5-2515-4f44-9882-6b28071b3b70","direction":"outgoing","index":126629,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"470a5989-933c-435b-9035-764385d226a9","direction":"outgoing","index":126630,"result_id":"785a5d73-e40c-44cc-8749-4ed98c4cb5de","status":200,"timestamp":"2026-05-22T12:16:41.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:41.075-04:00"},{"id":"529c9909-53b6-4949-9c05-39f623cc4f80","created_at":"2026-05-22T12:16:42.700-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"93767f76-5961-4c0d-8ab8-4d981e1d5e9d","direction":"outgoing","index":126631,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"542cf72c-6d9d-44b7-be8a-8949bfcf39f2","direction":"outgoing","index":126632,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7c7c751-ba7d-4d16-b56a-201be17512a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2e024a65-7b2e-4145-88bb-6c6294e36016","direction":"outgoing","index":126633,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c7c7c751-ba7d-4d16-b56a-201be17512a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f148483d-db42-4c24-8916-7c7c3acaf37d","direction":"outgoing","index":126634,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ece3d5c6-bbb0-4d48-9d36-190dcbd8efb7","direction":"outgoing","index":126635,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94e6fa90-4098-4965-ae44-a578bffff51f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d452c38-8b54-48f7-b6c0-e05ef3f07ed1","direction":"outgoing","index":126636,"result_id":"529c9909-53b6-4949-9c05-39f623cc4f80","status":200,"timestamp":"2026-05-22T12:16:42.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94e6fa90-4098-4965-ae44-a578bffff51f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:42.700-04:00"},{"id":"799dbd50-e400-4869-afd9-1346f68b3a37","created_at":"2026-05-22T12:16:43.070-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b4197e9c-7db8-4196-b21c-1a7496f91230","direction":"outgoing","index":126637,"result_id":"799dbd50-e400-4869-afd9-1346f68b3a37","status":200,"timestamp":"2026-05-22T12:16:43.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=LAB\u0026patient=355","verb":"get"},{"id":"1d3db6c7-71b6-4233-86fb-6eaeef0c5493","direction":"outgoing","index":126638,"result_id":"799dbd50-e400-4869-afd9-1346f68b3a37","status":200,"timestamp":"2026-05-22T12:16:43.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:43.070-04:00"},{"id":"e5a378fe-738d-4b83-8cca-f39d72e531da","created_at":"2026-05-22T12:16:43.225-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1efd56e7-c408-441e-82b7-5635ba3f651f","direction":"outgoing","index":126639,"result_id":"e5a378fe-738d-4b83-8cca-f39d72e531da","status":200,"timestamp":"2026-05-22T12:16:43.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:43.225-04:00"},{"id":"fc556350-600e-4c06-a5e8-d1fdfe9bb77c","created_at":"2026-05-22T12:16:43.708-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0192c78f-2907-4188-98f4-01f46f03e57f","direction":"outgoing","index":126640,"result_id":"fc556350-600e-4c06-a5e8-d1fdfe9bb77c","status":200,"timestamp":"2026-05-22T12:16:43.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85","verb":"get"},{"id":"d629e299-efd8-445b-9e77-1ee87e22a8f1","direction":"outgoing","index":126641,"result_id":"fc556350-600e-4c06-a5e8-d1fdfe9bb77c","status":200,"timestamp":"2026-05-22T12:16:43.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355","verb":"get"},{"id":"cd0b5270-8447-4be3-a6ce-266dc3ed5786","direction":"outgoing","index":126642,"result_id":"fc556350-600e-4c06-a5e8-d1fdfe9bb77c","status":200,"timestamp":"2026-05-22T12:16:43.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:43.708-04:00"},{"id":"e8ac0b2c-5031-4dea-8ded-67678ed128fa","created_at":"2026-05-22T12:16:44.062-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:44.062-04:00"},{"id":"18a40b03-2636-4b78-80ed-e47e0a124e28","created_at":"2026-05-22T12:16:44.077-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:44.077-04:00"},{"id":"465665e0-1156-4909-8095-78e68ed63543","created_at":"2026-05-22T12:16:45.488-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"add26b49-3dd3-43c0-9ba2-d5ed0dfede97","direction":"outgoing","index":126643,"result_id":"465665e0-1156-4909-8095-78e68ed63543","status":200,"timestamp":"2026-05-22T12:16:45.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28","verb":"get"},{"id":"9d493d5a-525b-467b-9acf-09377bc7c191","direction":"outgoing","index":126644,"result_id":"465665e0-1156-4909-8095-78e68ed63543","status":200,"timestamp":"2026-05-22T12:16:45.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"494b6443-3938-41b2-a6f4-4c942c345606","direction":"outgoing","index":126645,"result_id":"465665e0-1156-4909-8095-78e68ed63543","status":200,"timestamp":"2026-05-22T12:16:45.546-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"6d300294-dc5e-4f96-91fe-5d62427e196f","direction":"outgoing","index":126646,"result_id":"465665e0-1156-4909-8095-78e68ed63543","status":200,"timestamp":"2026-05-22T12:16:45.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:45.488-04:00"},{"id":"839b12a5-4904-432b-92ac-a1d4c507375a","created_at":"2026-05-22T12:16:45.574-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:45.574-04:00"},{"id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","created_at":"2026-05-22T12:16:49.487-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"94c72500-822a-492c-91f4-70161b2d6ac3","direction":"outgoing","index":126647,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"6b37c984-3dfe-4732-9251-72e5c45a4d0f","direction":"outgoing","index":126648,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95c9f332-7066-4cc1-8d2c-b9439376ad82\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c8e048a-aa24-4653-b686-315068aea319","direction":"outgoing","index":126649,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95c9f332-7066-4cc1-8d2c-b9439376ad82\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8792f5fe-5332-45f7-a8bb-6480244f8df8","direction":"outgoing","index":126650,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search","verb":"post"},{"id":"d39f2577-ece9-458c-a924-aa0512ff3427","direction":"outgoing","index":126651,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95c9f332-7066-4cc1-8d2c-b9439376ad82\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42dff1e9-57fb-438b-b4a2-0c84038e3d93","direction":"outgoing","index":126652,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95c9f332-7066-4cc1-8d2c-b9439376ad82\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2529e3fc-7af5-48e0-8dde-e565b6ca9517","direction":"outgoing","index":126653,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85","verb":"get"},{"id":"332c59f5-a17b-47ce-a2dc-fc6c9c54caec","direction":"outgoing","index":126654,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3448b4f-956f-4d61-8979-42cc283e79a1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ecca0f5-b6e3-4440-a863-0383e7626d51","direction":"outgoing","index":126655,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a3448b4f-956f-4d61-8979-42cc283e79a1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"70efab6e-cb7a-414f-b59f-f52724fd3ea4","direction":"outgoing","index":126656,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"9af3b8bc-deb4-4803-8429-b9ec7c6f1ff1","direction":"outgoing","index":126657,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=066e0680-ff41-4572-9100-50abebca6599\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"030acbef-d181-4928-b6ba-def1cd358bab","direction":"outgoing","index":126658,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=066e0680-ff41-4572-9100-50abebca6599\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4c27a38e-c8cc-4cf7-a44f-790d7c7844c1","direction":"outgoing","index":126659,"result_id":"63dd1c0d-b739-4cf9-b5ae-795a7cf84a2e","status":200,"timestamp":"2026-05-22T12:16:49.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:49.487-04:00"},{"id":"a5aa055c-1f0a-4adf-b0f1-59eef572afba","created_at":"2026-05-22T12:16:49.789-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83b033b1-1702-4fa7-8383-a93397dd4a94","direction":"outgoing","index":126660,"result_id":"a5aa055c-1f0a-4adf-b0f1-59eef572afba","status":200,"timestamp":"2026-05-22T12:16:49.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:49.789-04:00"},{"id":"852cb68f-c51d-49d0-8e94-066981122795","created_at":"2026-05-22T12:16:50.237-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"512d537a-5238-41cd-9081-62a81cbe456f","direction":"outgoing","index":126661,"result_id":"852cb68f-c51d-49d0-8e94-066981122795","status":200,"timestamp":"2026-05-22T12:16:50.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3","verb":"get"},{"id":"c559e45c-4b93-4c5b-bc65-12d5170d1e95","direction":"outgoing","index":126662,"result_id":"852cb68f-c51d-49d0-8e94-066981122795","status":200,"timestamp":"2026-05-22T12:16:50.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"992a4157-a310-4166-9597-26374a9c6c92","direction":"outgoing","index":126663,"result_id":"852cb68f-c51d-49d0-8e94-066981122795","status":200,"timestamp":"2026-05-22T12:16:50.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:50.237-04:00"},{"id":"c275070e-4f02-4e27-819d-d1a44b237f5d","created_at":"2026-05-22T12:16:53.189-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5ad7a3e1-5cc7-4341-9ce7-de224878807d","direction":"outgoing","index":126664,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"2c664f93-2d14-4023-88f9-9393656b1da0","direction":"outgoing","index":126665,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"acf5fbc6-a74a-419e-afdc-f143c024a4be","direction":"outgoing","index":126666,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3d5f97d2-c798-4144-837c-0ade1c8ceac4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f5503a3-20ac-4cf4-8627-af965f83f1b3","direction":"outgoing","index":126667,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3d5f97d2-c798-4144-837c-0ade1c8ceac4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"931fd072-9fd5-4983-9692-a5275e552c5b","direction":"outgoing","index":126668,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a3cfbfb6-999c-4d2f-8fff-5bd045388236","direction":"outgoing","index":126669,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fdbf73f5-37ad-4012-a0e5-42fa3b44599f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c8e5fd3b-b840-49fb-a7b4-0880e8981e7c","direction":"outgoing","index":126670,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fdbf73f5-37ad-4012-a0e5-42fa3b44599f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"66998516-e5dd-401b-9f04-634319fbffa8","direction":"outgoing","index":126671,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ff44e295-3807-4fd2-a1d1-10e34eb85096","direction":"outgoing","index":126672,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"18bdbc33-c805-4988-ae3d-43725e8c9bdb","direction":"outgoing","index":126673,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"e2b6304b-538c-4e4e-b7a4-72e9e33f4ca1","direction":"outgoing","index":126674,"result_id":"c275070e-4f02-4e27-819d-d1a44b237f5d","status":200,"timestamp":"2026-05-22T12:16:53.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:53.189-04:00"},{"id":"27284283-69d7-496c-910d-9861aa06e935","created_at":"2026-05-22T12:16:54.338-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"16bebe7f-0ada-47ab-9a89-a0de12b0eb28","direction":"outgoing","index":126675,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"b01451f4-9c55-461a-a5b4-e480b85103c6","direction":"outgoing","index":126676,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"85eaa5d2-0abb-401c-86eb-22995066a1f8","direction":"outgoing","index":126677,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"fa93e1c5-0f85-44f8-902b-6142f2ec034b","direction":"outgoing","index":126678,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"4f30129b-065e-45de-b114-338ab6a7e535","direction":"outgoing","index":126679,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"4cfa102c-1a29-4d9d-b0e0-eb97b0f247ee","direction":"outgoing","index":126680,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"98d71806-d043-4169-9ab3-b07171ad26a1","direction":"outgoing","index":126681,"result_id":"27284283-69d7-496c-910d-9861aa06e935","status":200,"timestamp":"2026-05-22T12:16:54.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_period_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:54.338-04:00"},{"id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","created_at":"2026-05-22T12:16:57.320-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b140bc5f-dd4f-4ed5-9a20-e4d65fcdac1a","direction":"outgoing","index":126682,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded","verb":"get"},{"id":"4122b434-d242-4607-a096-645e173f55d4","direction":"outgoing","index":126683,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dec109e2-304d-44bc-88f7-a5077f59e58d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"28e88bbb-961b-4f46-998d-7ef5ba8ceb7f","direction":"outgoing","index":126684,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded","verb":"get"},{"id":"72296af6-0fb4-4b91-8be4-175a4b853ff5","direction":"outgoing","index":126685,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4c7c6acf-6042-4684-89fc-db85fa25734e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c755fcab-4fe5-4f5a-86bf-ebeb13cbf3c6","direction":"outgoing","index":126686,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error","verb":"get"},{"id":"3abc9cb3-61e0-4259-809a-bf39403714e4","direction":"outgoing","index":126687,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2764c0d-ecd0-4d39-98b1-64aef66471ba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc8ffb9e-0ba7-4574-a02b-dec9a18653e8","direction":"outgoing","index":126688,"result_id":"8187765f-56e0-42bc-8cb3-2b2d2a9ca98e","status":200,"timestamp":"2026-05-22T12:16:57.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2764c0d-ecd0-4d39-98b1-64aef66471ba\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:16:57.320-04:00"},{"id":"7c95c247-f0df-4792-b740-30ad3f2424c4","created_at":"2026-05-22T12:17:00.626-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d3e1bd9-0d59-4b06-88be-fa04a5bd2def","direction":"outgoing","index":126689,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85","verb":"get"},{"id":"040a78c7-e932-488c-b99e-70ca2f27991e","direction":"outgoing","index":126690,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8abe240c-f401-4e0d-9062-68241f9054b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9b5bea1-8fa4-452e-8fbf-a0ee66c8862a","direction":"outgoing","index":126691,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8abe240c-f401-4e0d-9062-68241f9054b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f52a02f-c9c7-4afd-8f82-59c02b16f0ba","direction":"outgoing","index":126692,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85","verb":"get"},{"id":"c5d9bf40-c951-4dee-a515-84d086efd15e","direction":"outgoing","index":126693,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09a22939-ad11-48c0-87f8-7a06872e560b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"812662f6-c306-4088-afb1-e1d4a4a6da7a","direction":"outgoing","index":126694,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=09a22939-ad11-48c0-87f8-7a06872e560b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"628fb2b0-2a0e-4f41-9c4a-7117f7c087c8","direction":"outgoing","index":126695,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355","verb":"get"},{"id":"b10b3987-e440-4a6b-8791-b1eb0393a7af","direction":"outgoing","index":126696,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=70797f04-e77f-4c7c-91c6-27430666c2dc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ce7d9af-9640-4d3b-b65b-266c383e81b2","direction":"outgoing","index":126697,"result_id":"7c95c247-f0df-4792-b740-30ad3f2424c4","status":200,"timestamp":"2026-05-22T12:17:00.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=70797f04-e77f-4c7c-91c6-27430666c2dc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:00.626-04:00"},{"id":"5432a6c8-40e6-48aa-9ca0-bee5f24e5895","created_at":"2026-05-22T12:17:00.845-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0cf7c62a-3fdd-4d28-9a01-1af90aa8690b","direction":"outgoing","index":126698,"result_id":"5432a6c8-40e6-48aa-9ca0-bee5f24e5895","status":200,"timestamp":"2026-05-22T12:17:00.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:00.845-04:00"},{"id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","created_at":"2026-05-22T12:17:03.343-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f0fdaa67-af82-42a2-83fd-8b0b72e080e0","direction":"outgoing","index":126699,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"6537d935-acf7-474f-8d85-a4e2bc93fb70","direction":"outgoing","index":126700,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6ba34cad-9cd8-4b1b-a921-fb2f814b34fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ecf63d2-0594-4680-a2f9-b5537816fac2","direction":"outgoing","index":126701,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6ba34cad-9cd8-4b1b-a921-fb2f814b34fa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b047473c-3297-4c0e-85bc-684c5275c72f","direction":"outgoing","index":126702,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"2a037777-6e60-4a12-b0ba-320ed6c67339","direction":"outgoing","index":126703,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4d054d4c-d58d-4aea-abda-b5b8db91447f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53942394-006b-44ab-89c7-5482d9d000a1","direction":"outgoing","index":126704,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4d054d4c-d58d-4aea-abda-b5b8db91447f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a5cb1a2-87a1-410e-afa4-51ba01a723a1","direction":"outgoing","index":126705,"result_id":"b4c1e0b9-c225-40e6-ac2b-d021965365e4","status":200,"timestamp":"2026-05-22T12:17:03.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:03.343-04:00"},{"id":"a16c7a3e-0ac2-456e-9328-040453071b17","created_at":"2026-05-22T12:17:19.101-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0')","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.0.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_extension_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:19.101-04:00"},{"id":"f12a1ee4-5b5f-4b3c-aa24-c8d7dd04c706","created_at":"2026-05-22T12:17:19.211-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:19.211-04:00"},{"id":"4b4c8d34-72c0-4a45-a261-9726d0aec290","created_at":"2026-05-22T12:17:19.214-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:19.214-04:00"},{"id":"5f6aa447-320a-49a0-8a1e-9e81ee1620a0","created_at":"2026-05-22T12:17:19.218-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v400_document_reference_custodian_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:19.218-04:00"},{"id":"5187bcd1-3076-4e23-83a9-565ce0c8b155","created_at":"2026-05-22T12:17:19.219-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_document_reference","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:19.219-04:00"},{"id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","created_at":"2026-05-22T12:17:26.434-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"199af921-4879-46a7-bac3-cf33e5cd35c5","direction":"outgoing","index":126706,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85","verb":"get"},{"id":"efa14bd0-f14e-4713-a5f0-aedc94d1d716","direction":"outgoing","index":126707,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75679dc5-993a-4add-b846-2ce9d87615a4","direction":"outgoing","index":126708,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f0aaa5d-becb-4c84-8f8c-fe7cf9b52ca2","direction":"outgoing","index":126709,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93a23c30-04f1-4ccf-8861-9cf73cdce574","direction":"outgoing","index":126710,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e8b7c53-840d-4b33-811d-79d79c412eca","direction":"outgoing","index":126711,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"287acd36-fca4-43c2-aad2-2ba3734abb91","direction":"outgoing","index":126712,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/_search","verb":"post"},{"id":"7d1f605f-38cd-498c-9de4-add1edac22a7","direction":"outgoing","index":126713,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13af98c3-48a9-459c-baf4-e0dcb5603665","direction":"outgoing","index":126714,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"178599c4-c896-4a32-9258-9e1d2d3e582e","direction":"outgoing","index":126715,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"691a1acb-07ac-4424-8cfa-eca28a60b88e","direction":"outgoing","index":126716,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8713d1f5-7b72-41fa-8765-4524bffc5c13","direction":"outgoing","index":126717,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4fb19115-ab87-41c5-ad9a-b22a75140e74\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"477942a3-8cb3-48ba-ba41-1e6999d9479a","direction":"outgoing","index":126718,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85","verb":"get"},{"id":"44d6b22f-126a-4b08-b15d-bd3d1892c90f","direction":"outgoing","index":126719,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b3afe8e1-4452-4af1-8643-ad08ac52b774\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71cf9b99-a1bc-4add-b473-3223142e3dda","direction":"outgoing","index":126720,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b3afe8e1-4452-4af1-8643-ad08ac52b774\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9aa70e18-778f-44a7-8d60-c94de9fc7f62","direction":"outgoing","index":126721,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b3afe8e1-4452-4af1-8643-ad08ac52b774\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa2bd904-e675-4057-b4b3-4d80b3032e62","direction":"outgoing","index":126722,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b3afe8e1-4452-4af1-8643-ad08ac52b774\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddcf6889-e9c3-4de4-a13d-e3569afea0cd","direction":"outgoing","index":126723,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b3afe8e1-4452-4af1-8643-ad08ac52b774\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e6887951-87dc-4c09-a11c-284881406ef0","direction":"outgoing","index":126724,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355","verb":"get"},{"id":"723f2cd9-7ffe-49cb-b234-48bd918b147c","direction":"outgoing","index":126725,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"945db2ea-9c81-4883-b22f-f19be2ddb9c4","direction":"outgoing","index":126726,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.684-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a35d8c9d-0d16-4383-9b97-79a64d7d807d","direction":"outgoing","index":126727,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"357d97a9-97e4-418d-985f-a75b1115ea68","direction":"outgoing","index":126728,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"73988f67-01ee-494f-85ba-0617ab9864ac","direction":"outgoing","index":126729,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7403ab4-5e8c-497c-b3e6-19a902e64e53","direction":"outgoing","index":126730,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b76f43ed-a399-4d6c-be1b-f37da7164b16","direction":"outgoing","index":126731,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95fc83a4-f37c-4e63-bc73-9f3822db113c","direction":"outgoing","index":126732,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92b1dd1f-6b7c-4a23-858a-dd1783ba6391","direction":"outgoing","index":126733,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb27f083-b328-42c9-823c-6b12302125db","direction":"outgoing","index":126734,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd2f1f75-3deb-4c16-afab-cdd39094ce65","direction":"outgoing","index":126735,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8903498-6f7b-41bd-ab71-388b7ddc79b6","direction":"outgoing","index":126736,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2b94e857-e775-451a-8282-1d0c57390bb3\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e207d58-f9fb-4f68-b65f-3e08db7ce0ad","direction":"outgoing","index":126737,"result_id":"5a2afd4b-32f7-4435-a856-93a4b52a83fa","status":200,"timestamp":"2026-05-22T12:17:26.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:26.434-04:00"},{"id":"5ee8917b-ae52-4291-87fa-7f8e7883518c","created_at":"2026-05-22T12:17:26.942-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"81983d4c-5468-4006-9525-b11bda0916ad","direction":"outgoing","index":126738,"result_id":"5ee8917b-ae52-4291-87fa-7f8e7883518c","status":200,"timestamp":"2026-05-22T12:17:26.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_id=cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:26.942-04:00"},{"id":"7b32fe67-a589-4d8c-b95c-24bae37b72a1","created_at":"2026-05-22T12:17:27.197-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cf4b3fd7-bf63-41f9-a8e4-3dcc63bcf922","direction":"outgoing","index":126739,"result_id":"7b32fe67-a589-4d8c-b95c-24bae37b72a1","status":200,"timestamp":"2026-05-22T12:17:27.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"},{"id":"e03fa110-493b-4bb9-b27f-d8e5d7f5e8b7","direction":"outgoing","index":126740,"result_id":"7b32fe67-a589-4d8c-b95c-24bae37b72a1","status":200,"timestamp":"2026-05-22T12:17:27.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_identifier_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:27.197-04:00"},{"id":"466aa195-2ced-452b-8381-bcd07d3d859e","created_at":"2026-05-22T12:17:34.455-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"31f62a2b-d4bb-49cc-ac8f-a038f78b0ae1","direction":"outgoing","index":126741,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"4b5a07f3-bcbe-408f-8cb1-1067b20880ca","direction":"outgoing","index":126742,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0768951-56c9-4a09-a753-9d3519cb6d1f","direction":"outgoing","index":126743,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a69e36b-fe30-4b68-9361-764a2dc6ac48","direction":"outgoing","index":126744,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de12b15d-3d5e-4983-9c0f-614f3da07573","direction":"outgoing","index":126745,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"928a166e-6193-40f2-a19a-b16b9de5a6b5","direction":"outgoing","index":126746,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39d40ad5-ea97-41d4-bfb9-2846452bdfab","direction":"outgoing","index":126747,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"9736e710-f775-4f31-8308-bf7c1e6e5c03","direction":"outgoing","index":126748,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c678dbd-e51c-46f6-9cc9-bea414ba890a","direction":"outgoing","index":126749,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fbc26d67-ae13-4068-815c-6f697d2298b6","direction":"outgoing","index":126750,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e37ca024-8382-42a0-8c45-a35397c31e7d","direction":"outgoing","index":126751,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"773eafd6-f9f1-4687-9057-1c8c58832c1c","direction":"outgoing","index":126752,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=17f06e95-98bf-4be1-8af8-1e36364b7309\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3388d0f3-5e5e-4994-b6f2-e20176e0bf05","direction":"outgoing","index":126753,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"fb4b5386-66dc-47dc-af6c-78e4cf436eef","direction":"outgoing","index":126754,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af63a636-a7fe-49f3-ad1f-3405aefb202f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1567e1b6-05fd-4d74-8efe-f86a8d4f575b","direction":"outgoing","index":126755,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af63a636-a7fe-49f3-ad1f-3405aefb202f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93ad60dc-0ccb-4f19-86cc-acc74ba97626","direction":"outgoing","index":126756,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af63a636-a7fe-49f3-ad1f-3405aefb202f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c2a8dd3-bc65-4fd3-9413-592c52b0ca77","direction":"outgoing","index":126757,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af63a636-a7fe-49f3-ad1f-3405aefb202f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8bccd605-5787-414a-b2ce-2c0d2d8f6f3d","direction":"outgoing","index":126758,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af63a636-a7fe-49f3-ad1f-3405aefb202f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0714a40-5ca9-4f72-88fa-f5fb4b3ce3e9","direction":"outgoing","index":126759,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f64d4495-d7a3-47ac-bb60-aeb65b1b3f3d","direction":"outgoing","index":126760,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"58b34396-0af8-4f75-ab94-9fe5bd4971c4","direction":"outgoing","index":126761,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9c5b5230-ba04-418d-91de-9080544ec433","direction":"outgoing","index":126762,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d4b32bb-d886-45fb-95ad-c50ae0752aef","direction":"outgoing","index":126763,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2da1a91b-71f0-4e0a-b933-fdf082ffd45f","direction":"outgoing","index":126764,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c35438b-e1f9-425a-91f6-89d0b9663ad4","direction":"outgoing","index":126765,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9538d2b9-7c75-40c9-8733-ab1b26535658","direction":"outgoing","index":126766,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a2f751d-755f-4820-b278-3c12ca59f8c6","direction":"outgoing","index":126767,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f54a260-e8d5-44ae-b90e-7ca855f78e89","direction":"outgoing","index":126768,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2aae04f-50ba-4e31-91ba-485f651dd5fb","direction":"outgoing","index":126769,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"69328657-3b52-4466-898d-27e37ff52c8b","direction":"outgoing","index":126770,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95c105ee-a68c-41ae-9587-645ca9e2b84e","direction":"outgoing","index":126771,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d3685659-6759-4570-b83b-4a6e11a5e9e0","direction":"outgoing","index":126772,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9998ea2d-2d6b-43dc-accd-e242feaacb2c","direction":"outgoing","index":126773,"result_id":"466aa195-2ced-452b-8381-bcd07d3d859e","status":200,"timestamp":"2026-05-22T12:17:34.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9f05fd8a-fcce-4914-a41c-bda6dcc60ead\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:34.455-04:00"},{"id":"347833a8-f778-4fdb-a5a5-be211e030e86","created_at":"2026-05-22T12:17:40.918-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"08e0d5fc-ca2d-4e3f-a6e6-7558c169259f","direction":"outgoing","index":126774,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:40.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85","verb":"get"},{"id":"52f7a244-6852-473c-aa70-c7f32f7c4918","direction":"outgoing","index":126775,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:40.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fe52c263-f5cc-44ea-98d6-de8a66cb94f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5cccbcb2-d926-4c0f-8614-99da7bab7fbe","direction":"outgoing","index":126776,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:40.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fe52c263-f5cc-44ea-98d6-de8a66cb94f5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7176be6-1e7b-4ac1-8662-1adad6b04ab0","direction":"outgoing","index":126777,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:40.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fe52c263-f5cc-44ea-98d6-de8a66cb94f5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d48ffa4-e2a6-40ed-ae9f-8021e8c379c9","direction":"outgoing","index":126778,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:40.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fe52c263-f5cc-44ea-98d6-de8a66cb94f5\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99ea1205-d090-44e1-863c-d2a21b267e05","direction":"outgoing","index":126779,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fe52c263-f5cc-44ea-98d6-de8a66cb94f5\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c32cbad-0730-46a7-ba75-b41d9c23854e","direction":"outgoing","index":126780,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85","verb":"get"},{"id":"12c475bc-9e08-430b-a6e5-0f691512f783","direction":"outgoing","index":126781,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b85674d-bb5d-4a89-a47c-eb5fb771c74f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c596cd29-bd2c-405c-ad76-e5f60519a5c7","direction":"outgoing","index":126782,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.040-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b85674d-bb5d-4a89-a47c-eb5fb771c74f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d076117-07b1-44c5-a4a4-74d674460c3d","direction":"outgoing","index":126783,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b85674d-bb5d-4a89-a47c-eb5fb771c74f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5e81bde-965c-435b-910c-463973432ea0","direction":"outgoing","index":126784,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b85674d-bb5d-4a89-a47c-eb5fb771c74f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b497abc8-6c0d-4811-8359-da791bc79b7a","direction":"outgoing","index":126785,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b85674d-bb5d-4a89-a47c-eb5fb771c74f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4aa3369c-0cc2-4e89-a68d-641056b9fd35","direction":"outgoing","index":126786,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355","verb":"get"},{"id":"e11adfbf-9a83-455a-a360-eed9415a1c10","direction":"outgoing","index":126787,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"efeb1e17-94f4-4246-b7c1-203d6584b787","direction":"outgoing","index":126788,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ff445e7-a129-4c1c-806f-6c8788d881d5","direction":"outgoing","index":126789,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64d43516-4dec-48b0-b764-ab92facf417d","direction":"outgoing","index":126790,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ef1803a-7fed-4a38-a2f4-9d856c5e265f","direction":"outgoing","index":126791,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96266138-52dc-4626-aa00-4ba50f79bdba","direction":"outgoing","index":126792,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.179-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"216136d7-ee63-418b-b154-8a20c779e923","direction":"outgoing","index":126793,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15c7f3ce-85c5-4097-92fd-211d6b9f3925","direction":"outgoing","index":126794,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c4161a94-f129-41de-a942-3ba56c350a4b","direction":"outgoing","index":126795,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ce92966-dbbb-4db5-ab05-fabc9ab3f8f7","direction":"outgoing","index":126796,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74873df5-a11b-4027-997a-29bcbbeeb1a2","direction":"outgoing","index":126797,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a66db1e-e2b2-4aa8-b75d-622cceabf8e7","direction":"outgoing","index":126798,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=49001252-9e4b-4d35-b97d-3ea126ce428c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa374d74-be5f-42b7-bf24-319ff90b0da2","direction":"outgoing","index":126799,"result_id":"347833a8-f778-4fdb-a5a5-be211e030e86","status":200,"timestamp":"2026-05-22T12:17:41.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_class_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:40.918-04:00"},{"id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","created_at":"2026-05-22T12:17:44.686-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0fd07b1d-1620-46ab-ac80-632c260eea66","direction":"outgoing","index":126800,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009","verb":"get"},{"id":"fc3fdd44-bf04-4bbb-9898-a513179f3cba","direction":"outgoing","index":126801,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=50a60720-7b31-4a71-96d3-a6468a60d1bd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"769cbdad-8f39-4195-9d2d-b8583324209b","direction":"outgoing","index":126802,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=50a60720-7b31-4a71-96d3-a6468a60d1bd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d34fc6b4-70ca-4242-b299-e1a4bc04ca69","direction":"outgoing","index":126803,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009","verb":"get"},{"id":"c2ee6cbc-21bb-4a20-9a91-486d808d083c","direction":"outgoing","index":126804,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=627fb1b7-355d-4082-933b-042cd2bad01a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d55a033f-e375-4e46-9ef1-6ddb5efbbf54","direction":"outgoing","index":126805,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=627fb1b7-355d-4082-933b-042cd2bad01a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"73b032d1-6418-467b-90bf-bf70f5a48f13","direction":"outgoing","index":126806,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009","verb":"get"},{"id":"11a29b6c-4e92-46aa-ac41-09cf9f1c6537","direction":"outgoing","index":126807,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cbd7edcd-b9cf-4ec9-9a77-3979fd2eba8e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79ae5254-0645-4574-ba3b-5a9e29e108c6","direction":"outgoing","index":126808,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.815-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cbd7edcd-b9cf-4ec9-9a77-3979fd2eba8e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b4c0ffc-8e10-4d69-a15e-09eac6ccc2c1","direction":"outgoing","index":126809,"result_id":"590933d6-42ea-4c91-8e7c-8dcc2c7fefa7","status":200,"timestamp":"2026-05-22T12:17:44.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026type=99211","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_type_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:44.686-04:00"},{"id":"13f51180-8086-4fab-a915-f17e0050113e","created_at":"2026-05-22T12:17:49.543-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8fbc2f1a-e60a-4e07-9cad-fd7bcf0ea4c3","direction":"outgoing","index":126810,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026patient=85","verb":"get"},{"id":"3d5dbe9e-9960-48ef-9e05-6e864b9506a7","direction":"outgoing","index":126811,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.570-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d35aae9e-4cae-4013-953f-83a801619bf5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31e0b952-9c1e-4620-b9d1-fc6fa3e1b3a8","direction":"outgoing","index":126812,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d35aae9e-4cae-4013-953f-83a801619bf5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1343a43-472f-4b73-9eba-63ad388d7416","direction":"outgoing","index":126813,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.602-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d35aae9e-4cae-4013-953f-83a801619bf5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05a23c2a-649b-41f7-ae69-cf7177f19e75","direction":"outgoing","index":126814,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d35aae9e-4cae-4013-953f-83a801619bf5\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"609f718c-9112-432e-a67e-73938351689b","direction":"outgoing","index":126815,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d35aae9e-4cae-4013-953f-83a801619bf5\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"256cd3b4-9eae-4dbe-9162-0ef22d449a10","direction":"outgoing","index":126816,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355","verb":"get"},{"id":"27b7d685-c870-48f2-a763-dd2b9c5f163b","direction":"outgoing","index":126817,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f8ae4bb-6e18-40f9-b65f-1543387ad334","direction":"outgoing","index":126818,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f31e9b7-62c5-44de-88ab-075c85cbd60b","direction":"outgoing","index":126819,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c2bfc91b-0344-4a15-a9cc-936b43d2504e","direction":"outgoing","index":126820,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2446117-426d-4cd7-80c1-29c4589a3358","direction":"outgoing","index":126821,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4d35da2-c2c1-4474-8865-46aa5bffe14a","direction":"outgoing","index":126822,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d42b7a2b-ffa1-4601-8743-f73040c92c6c","direction":"outgoing","index":126823,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9150becd-ff72-4444-b6a1-862c77ae9d1b","direction":"outgoing","index":126824,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96ce8411-e51d-48b6-b5b3-8d037b08f8ac","direction":"outgoing","index":126825,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2822bc81-cdde-4092-baaa-43aef1469b3f","direction":"outgoing","index":126826,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7418c66a-b14a-4578-bd0a-adca5407566b","direction":"outgoing","index":126827,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b308565b-84f2-4ce5-b289-3291cd518a74","direction":"outgoing","index":126828,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3e71a32-5760-4c89-ac25-d47d43a650ac\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a25ac4b3-2d40-4bd8-b4c7-cc4c781b0021","direction":"outgoing","index":126829,"result_id":"13f51180-8086-4fab-a915-f17e0050113e","status":200,"timestamp":"2026-05-22T12:17:49.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:41.278%2B00:00\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:49.543-04:00"},{"id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","created_at":"2026-05-22T12:17:54.533-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"05f1e76b-00f5-4a2b-8415-27acb291564e","direction":"outgoing","index":126830,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished","verb":"get"},{"id":"3ae6c523-8532-440c-b23d-73052e350056","direction":"outgoing","index":126831,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578742c8-33e7-4db1-b930-414b7a2a22d8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0de1f021-ac81-4a64-ad86-bf957a521b9f","direction":"outgoing","index":126832,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578742c8-33e7-4db1-b930-414b7a2a22d8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6fb0ec1-a93e-4303-8443-513bb6a2919c","direction":"outgoing","index":126833,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578742c8-33e7-4db1-b930-414b7a2a22d8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"828ed432-9e8e-41bf-aebb-73bb7065d67a","direction":"outgoing","index":126834,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578742c8-33e7-4db1-b930-414b7a2a22d8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8fa40126-132b-4ab9-b566-a72ec747dd30","direction":"outgoing","index":126835,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578742c8-33e7-4db1-b930-414b7a2a22d8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f4674ea-0de1-4732-a2a7-4ac24d6a3fc5","direction":"outgoing","index":126836,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished","verb":"get"},{"id":"2bfe87b1-4407-4b78-89d7-a43e80f7192b","direction":"outgoing","index":126837,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"149b1fa7-e490-4eaf-a9d4-255eea1b81e3","direction":"outgoing","index":126838,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d22f8d14-b583-48e5-9a6a-ee3714bb10fc","direction":"outgoing","index":126839,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c033e24d-6de2-4b0e-8703-7cb569701248","direction":"outgoing","index":126840,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4cfe2275-49a2-4134-86ad-4efe5552add3","direction":"outgoing","index":126841,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c88f68ec-1ccb-470d-b665-fb77226f1012","direction":"outgoing","index":126842,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bcc9d331-a733-40b0-85df-9c8ca368f81d","direction":"outgoing","index":126843,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"898dd506-9dd7-472f-be43-4ada6888bb42","direction":"outgoing","index":126844,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f59d0814-0f79-462b-9022-c783911aa4e8","direction":"outgoing","index":126845,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3012983-b3fa-405c-bca8-c176097eefbd","direction":"outgoing","index":126846,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b49d422-29c9-4c9e-9a1b-217efd6dfdb3","direction":"outgoing","index":126847,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e5c5526-80f0-46f8-ad59-a9fe3bd1b638","direction":"outgoing","index":126848,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bd5ccc5-dd72-4a52-8487-f92d59cebddf\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26226b7d-7ab2-438f-8660-396ab0057ec8","direction":"outgoing","index":126849,"result_id":"f7555fc2-ed30-460d-bcc9-d9b0bb485286","status":200,"timestamp":"2026-05-22T12:17:54.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026status=finished","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:54.533-04:00"},{"id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","created_at":"2026-05-22T12:17:58.625-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"643e417b-64fa-4401-a1da-c7a2122d8f56","direction":"outgoing","index":126850,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/b594895c-11cb-403f-a3bb-5729a3da4bd6\u0026patient=85","verb":"get"},{"id":"34debabb-1b88-4d73-88fd-d440baee5b36","direction":"outgoing","index":126851,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=904dc73c-0da2-442c-94ae-3800e677e16e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"489a3ee6-a078-411a-8f57-18ef3c9f3874","direction":"outgoing","index":126852,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=904dc73c-0da2-442c-94ae-3800e677e16e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bac8308a-4aef-4df4-a140-3c57a3a57117","direction":"outgoing","index":126853,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=904dc73c-0da2-442c-94ae-3800e677e16e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb219c28-1312-4f72-9edb-b88bb15d0048","direction":"outgoing","index":126854,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/462d8d76-453e-4644-9f58-fc7f4f1daff0\u0026patient=355","verb":"get"},{"id":"3d9d6233-b78b-4521-a2eb-d8f4f2752bb9","direction":"outgoing","index":126855,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0bee851c-064c-482d-88b6-a866a2fc5a74","direction":"outgoing","index":126856,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f876bfde-d9b7-4577-94b6-07bfc595460c","direction":"outgoing","index":126857,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ace40d8-2169-4877-a1bb-3061999defba","direction":"outgoing","index":126858,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"905207c8-d01e-4a92-9505-fc1bcd8dce02","direction":"outgoing","index":126859,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.749-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd22cfd2-2eca-44a3-9c9d-4775b4466661","direction":"outgoing","index":126860,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9864cc85-f146-4e6b-8bf6-dec5987ba99a","direction":"outgoing","index":126861,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d20f7d5-cf21-4c87-b74a-3ba5669c3516","direction":"outgoing","index":126862,"result_id":"bd4c27c0-39bd-4235-a6c6-b59091ca6bc7","status":200,"timestamp":"2026-05-22T12:17:58.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83592b6a-87c3-4b6a-812f-82954df0c151\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_location_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:58.625-04:00"},{"id":"eb6ea05d-4426-4d1a-946f-f4cfa8ff82f3","created_at":"2026-05-22T12:17:59.020-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ea54e005-b00b-4b59-bc6f-7ecf49517023","direction":"outgoing","index":126863,"result_id":"eb6ea05d-4426-4d1a-946f-f4cfa8ff82f3","status":400,"timestamp":"2026-05-22T12:17:59.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85","verb":"get"},{"id":"7c0868b1-99e5-43d8-8e5f-21d9e3aff3ec","direction":"outgoing","index":126864,"result_id":"eb6ea05d-4426-4d1a-946f-f4cfa8ff82f3","status":400,"timestamp":"2026-05-22T12:17:59.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85\u0026status=planned","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_discharge_disposition_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:59.020-04:00"},{"id":"163944a9-5fb8-49db-833d-5d89622bcb49","created_at":"2026-05-22T12:17:59.166-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"164fefc7-eeb9-4c9a-b5b5-40c42f9ed5fe","direction":"outgoing","index":126865,"result_id":"163944a9-5fb8-49db-833d-5d89622bcb49","status":200,"timestamp":"2026-05-22T12:17:59.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:17:59.166-04:00"},{"id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","created_at":"2026-05-22T12:18:04.654-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9f34c1ef-7d3f-4b55-b320-0034de148410","direction":"outgoing","index":126866,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.664-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"9d66e000-e70c-4094-b905-c3d943cb8513","direction":"outgoing","index":126867,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb837712-50e0-491d-b473-7cce13fe56af\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee6303b9-64da-44f9-9c2d-a4164085206f","direction":"outgoing","index":126868,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb837712-50e0-491d-b473-7cce13fe56af\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1b994ca-5407-4f8f-b3cb-2b16a8a1fbbe","direction":"outgoing","index":126869,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb837712-50e0-491d-b473-7cce13fe56af\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3fdd5575-f06d-41ec-a075-de07906e96a3","direction":"outgoing","index":126870,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb837712-50e0-491d-b473-7cce13fe56af\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"887ff098-9668-46fb-8872-29129ff6814b","direction":"outgoing","index":126871,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb837712-50e0-491d-b473-7cce13fe56af\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6593da0-370b-4145-afd5-b2f3ab706a85","direction":"outgoing","index":126872,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"e21ccb3c-33d6-4e68-bff4-ff99c51541a4","direction":"outgoing","index":126873,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4175f514-7b36-48ca-af3f-c8bd1ac9c1e9","direction":"outgoing","index":126874,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"979fbc82-e3b9-4d48-95ab-0eed53f22eed","direction":"outgoing","index":126875,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f462a11-2c2a-426e-9dc1-2d4ad6ee47e2","direction":"outgoing","index":126876,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e10522b1-48f4-4529-8e00-4a9d1cd502cf","direction":"outgoing","index":126877,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"529bcd6e-61d1-4b7d-a5ac-d67db32a6f12","direction":"outgoing","index":126878,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75e9b1d8-bebb-48ee-b1fa-d5fa3089ba98","direction":"outgoing","index":126879,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"795e0cf2-488c-451e-9a44-99a45c66c0af","direction":"outgoing","index":126880,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8491343b-b796-42b3-b616-e2434506038f","direction":"outgoing","index":126881,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da00bae8-816c-4172-9596-2358c4df9745","direction":"outgoing","index":126882,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c67a9653-3564-483e-9877-ab7dcb1c7407","direction":"outgoing","index":126883,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf8f0139-2e9d-4739-a63a-bf2f1d9adb7c","direction":"outgoing","index":126884,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f54c682e-ef54-4a3f-b70a-137c44a85bcd\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8846be8-928f-42fa-8c60-d2b6552b6cd7","direction":"outgoing","index":126885,"result_id":"a698963a-dfb8-48c5-b49f-da3afd64ea3b","status":200,"timestamp":"2026-05-22T12:18:04.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:04.654-04:00"},{"id":"f06bf5fd-e8a5-4843-bb5a-5224cc8b8aa7","created_at":"2026-05-22T12:18:12.494-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed","type":"info"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#394701000)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410429000)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'US Core Discharge Disposition' (http://hl7.org/fhir/us/core/ValueSet/us-core-discharge-disposition|7.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)","type":"info"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0]: None of the codings provided are in the value set 'US Core Encounter Type' (http://hl7.org/fhir/us/core/ValueSet/us-core-encounter-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1711b0e8-ae28-466c-b439-3eff9887746e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:12.494-04:00"},{"id":"b06850e2-a9fd-4810-a8fe-7f191215f07b","created_at":"2026-05-22T12:18:12.827-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:12.827-04:00"},{"id":"4c30a855-d3e8-43fa-8dc5-fbad399333a8","created_at":"2026-05-22T12:18:12.973-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"31a88c58-b008-44fb-9ec1-d89c1774b8a4","direction":"outgoing","index":126886,"result_id":"4c30a855-d3e8-43fa-8dc5-fbad399333a8","status":200,"timestamp":"2026-05-22T12:18:12.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:12.973-04:00"},{"id":"c790409e-4547-4431-96c1-bbb210083807","created_at":"2026-05-22T12:18:12.989-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_encounter","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:12.989-04:00"},{"id":"2a93138f-9933-41e6-b452-765692b4afb6","created_at":"2026-05-22T12:18:13.625-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"98e6525e-0338-4750-b2ee-63de947142ca","direction":"outgoing","index":126887,"result_id":"2a93138f-9933-41e6-b452-765692b4afb6","status":200,"timestamp":"2026-05-22T12:18:13.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=85","verb":"get"},{"id":"19883bf6-d25a-4062-8b9c-917ed9a77107","direction":"outgoing","index":126888,"result_id":"2a93138f-9933-41e6-b452-765692b4afb6","status":200,"timestamp":"2026-05-22T12:18:13.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355","verb":"get"},{"id":"e12d7b7c-e98c-48be-9cd9-57f2f21eddf4","direction":"outgoing","index":126889,"result_id":"2a93138f-9933-41e6-b452-765692b4afb6","status":200,"timestamp":"2026-05-22T12:18:13.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/_search","verb":"post"},{"id":"35b9c167-4172-4661-a495-00aadf40fe78","direction":"outgoing","index":126890,"result_id":"2a93138f-9933-41e6-b452-765692b4afb6","status":200,"timestamp":"2026-05-22T12:18:13.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355","verb":"get"},{"id":"b4690ced-a81a-4ed7-bc72-91eddef47fee","direction":"outgoing","index":126891,"result_id":"2a93138f-9933-41e6-b452-765692b4afb6","status":200,"timestamp":"2026-05-22T12:18:13.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:13.625-04:00"},{"id":"ff905528-3766-482b-9c4f-a8e6574d281d","created_at":"2026-05-22T12:18:14.317-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ec8cdf5a-dcdf-4ed8-8e7c-5221e23a71ac","direction":"outgoing","index":126892,"result_id":"ff905528-3766-482b-9c4f-a8e6574d281d","status":200,"timestamp":"2026-05-22T12:18:14.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07","verb":"get"},{"id":"c44e4d23-84d3-4d81-8112-684b20d9483e","direction":"outgoing","index":126893,"result_id":"ff905528-3766-482b-9c4f-a8e6574d281d","status":200,"timestamp":"2026-05-22T12:18:14.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"03a5133a-1ab7-418d-8c9f-c03217c5b556","direction":"outgoing","index":126894,"result_id":"ff905528-3766-482b-9c4f-a8e6574d281d","status":200,"timestamp":"2026-05-22T12:18:14.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"d0eae561-9523-468d-a25a-93acfd886317","direction":"outgoing","index":126895,"result_id":"ff905528-3766-482b-9c4f-a8e6574d281d","status":200,"timestamp":"2026-05-22T12:18:14.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00","verb":"get"},{"id":"18a4f3e6-ec44-482e-9975-2ddab4f3a86d","direction":"outgoing","index":126896,"result_id":"ff905528-3766-482b-9c4f-a8e6574d281d","status":200,"timestamp":"2026-05-22T12:18:14.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_target_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:14.317-04:00"},{"id":"551c7e19-5fac-4a09-af3e-1b7657c43f58","created_at":"2026-05-22T12:18:14.520-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"091bbd01-059d-40bb-951b-87e530eac8e7","direction":"outgoing","index":126897,"result_id":"551c7e19-5fac-4a09-af3e-1b7657c43f58","status":200,"timestamp":"2026-05-22T12:18:14.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_lifecycle_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:14.520-04:00"},{"id":"34751cfd-8cb6-4266-bbc1-ad20e7b9dc84","created_at":"2026-05-22T12:18:14.738-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"dcb909c7-a777-4504-bc60-c6637a826aeb","direction":"outgoing","index":126898,"result_id":"34751cfd-8cb6-4266-bbc1-ad20e7b9dc84","status":400,"timestamp":"2026-05-22T12:18:14.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026patient=355","verb":"get"},{"id":"116c524e-1b44-4850-a786-a61f8c72d3b6","direction":"outgoing","index":126899,"result_id":"34751cfd-8cb6-4266-bbc1-ad20e7b9dc84","status":400,"timestamp":"2026-05-22T12:18:14.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026lifecycle-status=proposed\u0026patient=355","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_description_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:14.738-04:00"},{"id":"8e5f836e-1cba-4c75-8e74-e9b8ee9982f4","created_at":"2026-05-22T12:18:14.888-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cadb6563-3add-4164-a345-1fbb2570186f","direction":"outgoing","index":126900,"result_id":"8e5f836e-1cba-4c75-8e74-e9b8ee9982f4","status":200,"timestamp":"2026-05-22T12:18:14.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:14.888-04:00"},{"id":"cb63aab4-edba-4b0e-8acb-09f653889cdc","created_at":"2026-05-22T12:18:15.366-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fc3e219c-7d70-421b-85ea-8b989b74d4e8","direction":"outgoing","index":126901,"result_id":"cb63aab4-edba-4b0e-8acb-09f653889cdc","status":200,"timestamp":"2026-05-22T12:18:15.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"2c9cc7f8-0d31-4649-9cb6-19c48a936f15","direction":"outgoing","index":126902,"result_id":"cb63aab4-edba-4b0e-8acb-09f653889cdc","status":200,"timestamp":"2026-05-22T12:18:15.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"a325854f-f249-4377-b4e8-8a847e8e080a","direction":"outgoing","index":126903,"result_id":"cb63aab4-edba-4b0e-8acb-09f653889cdc","status":200,"timestamp":"2026-05-22T12:18:15.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:15.366-04:00"},{"id":"3ecd47a6-4594-460b-8132-7387f7a74b61","created_at":"2026-05-22T12:18:15.607-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:15.607-04:00"},{"id":"53e84b5a-6957-4528-b98e-20e44fdde52c","created_at":"2026-05-22T12:18:15.619-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:15.619-04:00"},{"id":"493ed3db-3611-4bb7-ae50-31383e77a4a3","created_at":"2026-05-22T12:18:15.624-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:15.624-04:00"},{"id":"3a6b5371-f0cd-4585-8a36-3f9330f51784","created_at":"2026-05-22T12:18:15.627-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_goal","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:15.627-04:00"},{"id":"323ed88a-3d1a-40b5-925a-687439aef10a","created_at":"2026-05-22T12:18:18.696-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4544d1b6-acc5-416e-9be3-55fc9d0ce644","direction":"outgoing","index":126904,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85","verb":"get"},{"id":"43668bdc-44af-4bda-9011-7f1ee0f6eb8e","direction":"outgoing","index":126905,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=392ffdfe-a041-485f-b623-7d6ac9c14503\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a88e09bf-7105-4e41-9776-4ce1f4cbbfe3","direction":"outgoing","index":126906,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/_search","verb":"post"},{"id":"cd14a4be-4fad-446d-86c1-dfd2062a76c2","direction":"outgoing","index":126907,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=392ffdfe-a041-485f-b623-7d6ac9c14503\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11df4efc-b46e-4f06-8c19-6fd9339a3fd6","direction":"outgoing","index":126908,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85","verb":"get"},{"id":"a89a0adb-53b2-48e6-b2d3-4fe10f67b5ed","direction":"outgoing","index":126909,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=715cd8ae-ae71-4dc1-9675-d736f07e7008\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46a8912e-223f-4d9b-a791-2eeebc704fda","direction":"outgoing","index":126910,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355","verb":"get"},{"id":"80d8bca7-284e-4a6b-9265-04d9f60d86e5","direction":"outgoing","index":126911,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7dd5b4c-65ac-46c9-8086-bce6a4a095c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"389baae4-1638-4d59-a39b-adec362684ea","direction":"outgoing","index":126912,"result_id":"323ed88a-3d1a-40b5-925a-687439aef10a","status":200,"timestamp":"2026-05-22T12:18:18.819-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:18.696-04:00"},{"id":"8af39893-16d6-4c56-875c-7815eaa4eac1","created_at":"2026-05-22T12:18:20.946-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8dbcbedf-3dac-4cf9-959a-7bddff27530a","direction":"outgoing","index":126913,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:20.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"caf092ee-aecd-4094-871b-efb30d85a2e8","direction":"outgoing","index":126914,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:20.979-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"2adfdebc-7204-49a6-b4bc-36df721624ad","direction":"outgoing","index":126915,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:20.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32f16c83-127d-472b-ae39-280e2610acb9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9cae5274-c3e2-48d4-b52f-889d4e945b2a","direction":"outgoing","index":126916,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:21.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"2d1b0ea0-4afd-4a50-8cd1-40ddf6c14b41","direction":"outgoing","index":126917,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:21.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=83e10881-fa24-4457-a837-b4469d7710ae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d00231bf-5c4f-49b0-a009-24a7a2cc0dab","direction":"outgoing","index":126918,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:21.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"dcd9500a-385b-4e05-9be7-e717e93a86d9","direction":"outgoing","index":126919,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:21.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"18a98642-fdfc-4321-a2a3-2245ffec73fa","direction":"outgoing","index":126920,"result_id":"8af39893-16d6-4c56-875c-7815eaa4eac1","status":200,"timestamp":"2026-05-22T12:18:21.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:20.946-04:00"},{"id":"8627f6a4-1ff7-4554-b662-5acb28b9a413","created_at":"2026-05-22T12:18:22.086-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"43d61efc-af51-4975-a510-a1fd29348992","direction":"outgoing","index":126921,"result_id":"8627f6a4-1ff7-4554-b662-5acb28b9a413","status":200,"timestamp":"2026-05-22T12:18:22.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed","verb":"get"},{"id":"af332b9e-cfa7-4838-8fb8-e4b6a489e7d8","direction":"outgoing","index":126922,"result_id":"8627f6a4-1ff7-4554-b662-5acb28b9a413","status":200,"timestamp":"2026-05-22T12:18:22.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d6b18a5-a86a-4ed9-a176-2cf8aa657dc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff34530a-c6a2-418b-ad97-840d81809b30","direction":"outgoing","index":126923,"result_id":"8627f6a4-1ff7-4554-b662-5acb28b9a413","status":200,"timestamp":"2026-05-22T12:18:22.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:22.086-04:00"},{"id":"42e509d7-8263-4f0c-a1bb-ea3521549818","created_at":"2026-05-22T12:18:22.238-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a6b7893f-f2ef-4f28-9844-225b1434b979","direction":"outgoing","index":126924,"result_id":"42e509d7-8263-4f0c-a1bb-ea3521549818","status":200,"timestamp":"2026-05-22T12:18:22.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:22.238-04:00"},{"id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","created_at":"2026-05-22T12:18:24.291-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c4e12b52-9fc6-49e3-a6ff-d951181d83fc","direction":"outgoing","index":126925,"result_id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","status":200,"timestamp":"2026-05-22T12:18:24.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"36e289ba-5836-4ccb-83bb-ca95435e4bba","direction":"outgoing","index":126926,"result_id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","status":200,"timestamp":"2026-05-22T12:18:24.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3a8c8363-45a8-453c-9d14-92bacd8fd4bd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3087817d-5c20-4968-8fc7-9bfaedad0dda","direction":"outgoing","index":126927,"result_id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","status":200,"timestamp":"2026-05-22T12:18:24.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"c4a40e31-efac-410a-89a2-b48e49136b1f","direction":"outgoing","index":126928,"result_id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","status":200,"timestamp":"2026-05-22T12:18:24.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e7e76cfb-e266-4b50-8a0a-22fc24ab4181\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b2f1bb5-9aaf-47ae-8e98-96a55e3732c1","direction":"outgoing","index":126929,"result_id":"03773151-5625-4cf1-b1a6-d5cbac6c374f","status":200,"timestamp":"2026-05-22T12:18:24.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:24.291-04:00"},{"id":"e81e4703-a34b-4749-aa7c-03eaf5f9323a","created_at":"2026-05-22T12:18:25.663-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20230715), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: us-core-5: 'SHOULD have a translation to the NDC value set' (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_code_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:25.663-04:00"},{"id":"3b08d6ce-af2f-4836-b027-a8a75c6ee972","created_at":"2026-05-22T12:18:25.748-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:25.748-04:00"},{"id":"3d3627f2-0fbe-46b2-88d6-52ae003cfcf8","created_at":"2026-05-22T12:18:25.891-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"24c198ca-6c8f-4721-932c-8c668606c9b9","direction":"outgoing","index":126930,"result_id":"3d3627f2-0fbe-46b2-88d6-52ae003cfcf8","status":200,"timestamp":"2026-05-22T12:18:25.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:25.891-04:00"},{"id":"628c6ba8-b7f7-4580-9e4e-dc3f37fcf468","created_at":"2026-05-22T12:18:25.922-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_immunization","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:25.922-04:00"},{"id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","created_at":"2026-05-22T12:18:26.740-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b550f516-1730-4ac5-92c0-a52e4ed535eb","direction":"outgoing","index":126931,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85","verb":"get"},{"id":"1f4b6752-ef4b-4f0d-a844-74375bb5ea14","direction":"outgoing","index":126932,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/_search","verb":"post"},{"id":"9fa63d0f-4607-4e4a-9379-37f1af01676b","direction":"outgoing","index":126933,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85","verb":"get"},{"id":"5a53ade2-e426-48cc-bf96-7cc54637e16e","direction":"outgoing","index":126934,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=Patient/85","verb":"get"},{"id":"5ad72fce-a020-4461-8211-1b3eb1050b20","direction":"outgoing","index":126935,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=355","verb":"get"},{"id":"82641a4e-05da-4423-b39e-8128433a6bb7","direction":"outgoing","index":126936,"result_id":"879064b5-6771-4d54-beb0-3abbdeb3ca0f","status":200,"timestamp":"2026-05-22T12:18:26.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:26.740-04:00"},{"id":"3423db8e-f22a-4ed3-a1f9-e8e1d10d8b32","created_at":"2026-05-22T12:18:27.211-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ac78d791-9e2d-45fa-b115-68b4537262f4","direction":"outgoing","index":126937,"result_id":"3423db8e-f22a-4ed3-a1f9-e8e1d10d8b32","status":200,"timestamp":"2026-05-22T12:18:27.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=FFC","verb":"get"},{"id":"e445cc39-3461-4dd9-b33c-2c8ea4c001bd","direction":"outgoing","index":126938,"result_id":"3423db8e-f22a-4ed3-a1f9-e8e1d10d8b32","status":200,"timestamp":"2026-05-22T12:18:27.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CFFC","verb":"get"},{"id":"b01dac11-eea8-46ce-93e0-4b25da52fb4f","direction":"outgoing","index":126939,"result_id":"3423db8e-f22a-4ed3-a1f9-e8e1d10d8b32","status":200,"timestamp":"2026-05-22T12:18:27.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown\u0026type=DF,EM,SO,FF,FFC,FFP,FFSS,TF,FS,MS,RF,UD,RFC,RFCS,RFF,RFFS,RFP,RFPS,RFS,TB,TBS,UDE","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_status_type_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:27.211-04:00"},{"id":"f672cd6b-7566-4c96-bccc-bcbf7f4a75d6","created_at":"2026-05-22T12:18:27.694-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4156ace9-6168-4b45-aabe-b0ca8664e457","direction":"outgoing","index":126940,"result_id":"f672cd6b-7566-4c96-bccc-bcbf7f4a75d6","status":200,"timestamp":"2026-05-22T12:18:27.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed","verb":"get"},{"id":"bff899bb-b419-4e14-abf8-120661f98713","direction":"outgoing","index":126941,"result_id":"f672cd6b-7566-4c96-bccc-bcbf7f4a75d6","status":200,"timestamp":"2026-05-22T12:18:27.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85\u0026status=completed","verb":"get"},{"id":"f094497f-2ea1-4bba-824c-55579d451b5a","direction":"outgoing","index":126942,"result_id":"f672cd6b-7566-4c96-bccc-bcbf7f4a75d6","status":200,"timestamp":"2026-05-22T12:18:27.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:27.694-04:00"},{"id":"9e59f5eb-4883-47f7-932f-9149d382eb6c","created_at":"2026-05-22T12:18:27.852-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a5b482ea-0a39-48a0-87da-684af6c58d3c","direction":"outgoing","index":126943,"result_id":"9e59f5eb-4883-47f7-932f-9149d382eb6c","status":200,"timestamp":"2026-05-22T12:18:27.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:27.852-04:00"},{"id":"d804de92-28ab-4e60-ab06-df933f3922dc","created_at":"2026-05-22T12:18:28.330-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d3c79d09-7c8d-4990-9c7b-667bcb6fa909","direction":"outgoing","index":126944,"result_id":"d804de92-28ab-4e60-ab06-df933f3922dc","status":200,"timestamp":"2026-05-22T12:18:28.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"c2062f7d-a4a2-4a3f-a3cb-6897955bd9e4","direction":"outgoing","index":126945,"result_id":"d804de92-28ab-4e60-ab06-df933f3922dc","status":200,"timestamp":"2026-05-22T12:18:28.355-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"18ef048c-3d62-458f-959d-07a21f23ba9a","direction":"outgoing","index":126946,"result_id":"d804de92-28ab-4e60-ab06-df933f3922dc","status":200,"timestamp":"2026-05-22T12:18:28.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:28.330-04:00"},{"id":"42a4280e-712a-4c82-90ce-fd454ac36d98","created_at":"2026-05-22T12:18:32.387-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:32.387-04:00"},{"id":"cacd3a6e-ee4c-41ba-9a3d-4663255270ba","created_at":"2026-05-22T12:18:32.408-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:32.408-04:00"},{"id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","created_at":"2026-05-22T12:18:33.589-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"14813248-a0bc-4074-8931-a4ac8f3216d3","direction":"outgoing","index":126947,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1","verb":"get"},{"id":"56906664-1ad3-4d65-b043-505f3868b802","direction":"outgoing","index":126948,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"},{"id":"44b8321c-af53-4332-8607-bb6cf2b05618","direction":"outgoing","index":126949,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"ef3dcb4a-bd32-41f1-945a-9f619b363577","direction":"outgoing","index":126950,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8","verb":"get"},{"id":"f5099cba-1316-431b-bbbe-22382fe1e3ee","direction":"outgoing","index":126951,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"56a73b1e-ff96-403d-9fc5-772fdb4e94a2","direction":"outgoing","index":126952,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22","verb":"get"},{"id":"d7153aa2-9fc6-4fd8-8ff2-e794ede78070","direction":"outgoing","index":126953,"result_id":"d221fd16-9eec-4774-9dbd-49f80a9e3670","status":200,"timestamp":"2026-05-22T12:18:33.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:33.589-04:00"},{"id":"e382ab51-8c5c-46f2-93ff-59f3da14cbf7","created_at":"2026-05-22T12:18:33.701-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_dispense","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:33.701-04:00"},{"id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","created_at":"2026-05-22T12:18:41.169-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8b5f31f9-a079-4a03-abc8-157c6ad63bfe","direction":"outgoing","index":126954,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85","verb":"get"},{"id":"2bafd217-77a0-49af-92d2-81b79f405c6b","direction":"outgoing","index":126955,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85","verb":"get"},{"id":"53bf2fdd-24fc-4cec-b26a-e3c436c73544","direction":"outgoing","index":126956,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85","verb":"get"},{"id":"c80483ab-b7da-4a3c-b7f2-6719cbc1c05a","direction":"outgoing","index":126957,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1ff81dd-c9f7-4ccb-b083-8816bd0e98fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0cdd189-d37e-4c75-8e3c-3a587090b839","direction":"outgoing","index":126958,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search","verb":"post"},{"id":"38039849-8636-45d4-abf8-cfc2169f0c5d","direction":"outgoing","index":126959,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b1ff81dd-c9f7-4ccb-b083-8816bd0e98fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2443054b-1598-4f99-8e22-0fc165014538","direction":"outgoing","index":126960,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85","verb":"get"},{"id":"6bf9de2d-c378-440b-8d9e-773c0fed12a8","direction":"outgoing","index":126961,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5260f02a-ac38-4572-be7e-59c76c4d0885\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset","verb":"get"},{"id":"c4ad39c4-9c5e-4d9d-97c7-19e1ff307540","direction":"outgoing","index":126962,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85","verb":"get"},{"id":"53e69dae-14fd-430a-be53-6ee356d9fd19","direction":"outgoing","index":126963,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d966b9c6-7730-44ef-b386-24d63b23f527\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3bc80038-c010-411f-9a7c-b58ca779f196","direction":"outgoing","index":126964,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85","verb":"get"},{"id":"7c845d59-a023-4274-976a-e67a020e88d0","direction":"outgoing","index":126965,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85","verb":"get"},{"id":"bbbdc062-4dce-49ce-8758-642f75e74e6f","direction":"outgoing","index":126966,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85","verb":"get"},{"id":"5b163fa4-bfd2-42a5-9213-2bd09a3a9e9d","direction":"outgoing","index":126967,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85","verb":"get"},{"id":"6bc37ecb-88f8-4aa2-a6de-0face6f079c0","direction":"outgoing","index":126968,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85","verb":"get"},{"id":"5f839b99-b07d-4440-8cf9-1eb361a7ac84","direction":"outgoing","index":126969,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355","verb":"get"},{"id":"34e9de89-4d0f-4b2f-bc46-400964532957","direction":"outgoing","index":126970,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355","verb":"get"},{"id":"93a710c1-a028-4d06-86db-392bf30bab42","direction":"outgoing","index":126971,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355","verb":"get"},{"id":"68a54ee6-3d8d-4f2f-8f76-44505fd393ed","direction":"outgoing","index":126972,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=98a8d68f-6014-43fd-aabf-85b8496df7e6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe9bf46f-f925-4b32-9da8-0c3576204e34","direction":"outgoing","index":126973,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355","verb":"get"},{"id":"224b7ef7-56b3-458e-9b10-a9098a6fc60f","direction":"outgoing","index":126974,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355","verb":"get"},{"id":"7583ccdf-7a1c-4440-b273-e008a9980ad3","direction":"outgoing","index":126975,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355","verb":"get"},{"id":"63a030ce-65d7-4f39-8c13-6d07df91e215","direction":"outgoing","index":126976,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355","verb":"get"},{"id":"98b89590-e11e-49f4-b9eb-8bd9c07eb867","direction":"outgoing","index":126977,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355","verb":"get"},{"id":"5125d056-3c13-4f61-b7e7-ececbf95e145","direction":"outgoing","index":126978,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=907","verb":"get"},{"id":"a2c6d9f1-2dd6-4032-bf67-84e47982c0c9","direction":"outgoing","index":126979,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=907","verb":"get"},{"id":"b9dfee71-8b26-4e74-b61a-0f1616460e90","direction":"outgoing","index":126980,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=907","verb":"get"},{"id":"121e12ea-ce61-4f4d-8847-22deda6e5dd2","direction":"outgoing","index":126981,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=907","verb":"get"},{"id":"1015c02f-159b-49cd-b165-d7f312ce2bcc","direction":"outgoing","index":126982,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=907","verb":"get"},{"id":"b6731fd1-c5f8-48b0-8d30-cca83bc5e2a3","direction":"outgoing","index":126983,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=907","verb":"get"},{"id":"2d47dd54-2874-4896-9c22-ad50ca3df94f","direction":"outgoing","index":126984,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=907","verb":"get"},{"id":"62334797-10de-4762-9bf9-ce098549e4be","direction":"outgoing","index":126985,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=907","verb":"get"},{"id":"7b613f82-72d2-41e6-aebc-4005696cf3c2","direction":"outgoing","index":126986,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"},{"id":"46c52558-8a15-4c95-b711-7cfa3343a7a0","direction":"outgoing","index":126987,"result_id":"e1b4553b-9b96-4018-bae0-9c7322ab3f0d","status":200,"timestamp":"2026-05-22T12:18:41.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ec064388-1f46-4cca-a2bc-c45175a8017f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:41.169-04:00"},{"id":"e07609c6-a96f-4c53-8fc0-072843fe249b","created_at":"2026-05-22T12:18:41.928-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1d625239-2a12-4c17-9968-4d558dd7e9a1","direction":"outgoing","index":126988,"result_id":"e07609c6-a96f-4c53-8fc0-072843fe249b","status":200,"timestamp":"2026-05-22T12:18:41.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85","verb":"get"},{"id":"31860659-fda3-4d31-a022-14888d84edc4","direction":"outgoing","index":126989,"result_id":"e07609c6-a96f-4c53-8fc0-072843fe249b","status":200,"timestamp":"2026-05-22T12:18:41.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355","verb":"get"},{"id":"3dcfaaef-5385-42b8-9c06-3b06f686d0c4","direction":"outgoing","index":126990,"result_id":"e07609c6-a96f-4c53-8fc0-072843fe249b","status":200,"timestamp":"2026-05-22T12:18:41.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_encounter_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:41.928-04:00"},{"id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","created_at":"2026-05-22T12:18:44.387-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"33b3cd40-d9f3-4e73-8228-daa3c2ad2d55","direction":"outgoing","index":126991,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"e9be7923-fd95-4a65-abb1-11ad586936db","direction":"outgoing","index":126992,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"2a983366-ec08-4b04-91ac-e1767a859338","direction":"outgoing","index":126993,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4da3a06b-1227-44c3-b29d-a920a8b73bcc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"895ea83b-3cee-447b-aded-4b093d3cb845","direction":"outgoing","index":126994,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"8436ae7f-2f6e-4b94-9b47-4612c42df404","direction":"outgoing","index":126995,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=50be5a63-3258-4379-9336-7d43cd4e7961\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2693cfcd-73c3-4ea6-b476-f38889a89eeb","direction":"outgoing","index":126996,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"100a149b-f059-4d26-9cfe-d9bf6b78a525","direction":"outgoing","index":126997,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"c9f200bd-ceb9-4a75-b4c4-b435d32b96af","direction":"outgoing","index":126998,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"08de9892-7248-4b8c-a5c3-4afe974141e1","direction":"outgoing","index":126999,"result_id":"85a0ab38-b4ce-401f-a679-cb0e982fe63c","status":200,"timestamp":"2026-05-22T12:18:44.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_authoredon_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:44.387-04:00"},{"id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","created_at":"2026-05-22T12:18:45.789-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1a7e334b-eb21-4bbb-ac18-896e8997b702","direction":"outgoing","index":127000,"result_id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","status":200,"timestamp":"2026-05-22T12:18:45.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped","verb":"get"},{"id":"7a03d8a6-b4fa-455a-a80d-b2886029f516","direction":"outgoing","index":127001,"result_id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","status":200,"timestamp":"2026-05-22T12:18:45.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e96865af-348f-47c1-b23b-46b7ffca8728\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9214bd7-217f-43de-b888-6f1e1a2a90d2","direction":"outgoing","index":127002,"result_id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","status":200,"timestamp":"2026-05-22T12:18:45.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped","verb":"get"},{"id":"0724f745-12ee-4965-be7e-2632a08dffeb","direction":"outgoing","index":127003,"result_id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","status":200,"timestamp":"2026-05-22T12:18:45.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown","verb":"get"},{"id":"eb33520e-ff56-4834-9a5e-fd194f716015","direction":"outgoing","index":127004,"result_id":"2bb20b23-9d2f-4ec0-9283-77c13d51184c","status":200,"timestamp":"2026-05-22T12:18:45.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=805c3f92-1f07-48a4-a8d8-9527cec2582c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:45.789-04:00"},{"id":"537d311e-0f8c-4980-8880-e53bb8d8c530","created_at":"2026-05-22T12:18:45.990-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"491c47a9-9008-4ddb-b1a2-b48639e5b45d","direction":"outgoing","index":127005,"result_id":"537d311e-0f8c-4980-8880-e53bb8d8c530","status":200,"timestamp":"2026-05-22T12:18:45.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:45.990-04:00"},{"id":"9ebcfa82-5e20-4282-9048-1253985c2b76","created_at":"2026-05-22T12:18:50.881-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0b05a041-3b6f-47d2-af4c-1832dfb56ad6","direction":"outgoing","index":127006,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85","verb":"get"},{"id":"331064f3-13f6-45cb-b0db-fca50ffafa45","direction":"outgoing","index":127007,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85","verb":"get"},{"id":"c72b8459-f6e7-4c27-af66-44bff3b0f974","direction":"outgoing","index":127008,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85","verb":"get"},{"id":"72449be6-f0f4-4ee0-a515-73f82326e29d","direction":"outgoing","index":127009,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d88416bf-4ff0-431a-90c5-e13d139edff6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b605ffb8-bc88-44e8-a64d-58e95df7d8d3","direction":"outgoing","index":127010,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85","verb":"get"},{"id":"6a2e36d4-69a5-45ce-9849-844e5f256573","direction":"outgoing","index":127011,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85","verb":"get"},{"id":"b4e75e21-f706-4e5b-a591-d6f72678a279","direction":"outgoing","index":127012,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85","verb":"get"},{"id":"3d46bd86-8c37-4fb9-91b1-ed5bba4268cb","direction":"outgoing","index":127013,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85","verb":"get"},{"id":"c9f31462-50de-4eae-a846-97b8b9d083ca","direction":"outgoing","index":127014,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85","verb":"get"},{"id":"4669564d-02ef-4497-a0d4-127882a684b3","direction":"outgoing","index":127015,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355","verb":"get"},{"id":"303e7592-e82c-45d7-8f3e-8aa1621980bc","direction":"outgoing","index":127016,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"9b078843-500d-4fdf-b9ce-55651baeaf0b","direction":"outgoing","index":127017,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:50.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355","verb":"get"},{"id":"975f0f21-2290-40a9-9e88-b01b92ee09f3","direction":"outgoing","index":127018,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0d315091-a87f-4db0-b14a-a58a53fd4a92\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8a6d4da-dcb8-4df1-8e19-3462d1e5e120","direction":"outgoing","index":127019,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355","verb":"get"},{"id":"cb514c4b-2f3f-41f7-88a2-7f289e996c30","direction":"outgoing","index":127020,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.024-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355","verb":"get"},{"id":"e1c334f4-384b-4658-a1c8-2bdb896e5eff","direction":"outgoing","index":127021,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355","verb":"get"},{"id":"443f9cb4-2ee2-41ed-bc35-c6c8d1b62aca","direction":"outgoing","index":127022,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355","verb":"get"},{"id":"b1151bfd-bb75-420f-af83-9bcd57911096","direction":"outgoing","index":127023,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355","verb":"get"},{"id":"2b43246c-e067-4da3-9f3d-39ced6014086","direction":"outgoing","index":127024,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=907","verb":"get"},{"id":"5fcf741e-3415-41f5-b603-de4bab32eece","direction":"outgoing","index":127025,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=907","verb":"get"},{"id":"59af5663-98e9-48d1-ba33-455f3b226577","direction":"outgoing","index":127026,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=907","verb":"get"},{"id":"e8de70f3-83d2-4129-a2cd-341315bc58ec","direction":"outgoing","index":127027,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=907","verb":"get"},{"id":"4d36c83d-d7a9-4230-aaf6-853fbabf844a","direction":"outgoing","index":127028,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=907","verb":"get"},{"id":"457f57dd-38e7-42fd-ac72-9b4cafe8194d","direction":"outgoing","index":127029,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=907","verb":"get"},{"id":"50296524-40be-49ce-ac9e-f5edfcd9efc7","direction":"outgoing","index":127030,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=907","verb":"get"},{"id":"a9299386-c1e8-4da5-82c8-85232089d55e","direction":"outgoing","index":127031,"result_id":"9ebcfa82-5e20-4282-9048-1253985c2b76","status":200,"timestamp":"2026-05-22T12:18:51.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:18:50.881-04:00"},{"id":"85580b83-81d1-4a8e-9039-0cfcaa315c21","created_at":"2026-05-22T12:19:10.290-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#105078)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0].extension[0].value.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Adherence' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1240.8|20231025), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#275928001)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#562251)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1043400)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:10.290-04:00"},{"id":"85e7e1bd-40ee-4569-a995-4f8d59322b15","created_at":"2026-05-22T12:19:12.613-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '11062023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:12.613-04:00"},{"id":"171b4aa3-8914-4947-a9ae-872d78867cde","created_at":"2026-05-22T12:19:12.627-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:12.627-04:00"},{"id":"4969dc76-7487-43fa-8f68-578e37bce54c","created_at":"2026-05-22T12:19:12.742-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55674b61-dc11-4ac8-ae7f-a6c88fc71930","direction":"outgoing","index":127032,"result_id":"4969dc76-7487-43fa-8f68-578e37bce54c","status":200,"timestamp":"2026-05-22T12:19:12.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:12.742-04:00"},{"id":"c69e2a41-d675-49ff-aeee-ff32fa0322b5","created_at":"2026-05-22T12:19:12.757-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_medication_request","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:12.757-04:00"},{"id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","created_at":"2026-05-22T12:19:13.562-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"979ee2f1-dc56-472f-b33f-122bc6f90a25","direction":"outgoing","index":127033,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"489e9e0e-f93f-463c-bd4e-159b2b4718f1","direction":"outgoing","index":127034,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"6cdc610b-3a86-4fa3-9a4d-7b7de0d5588a","direction":"outgoing","index":127035,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"3167b6fa-9bad-4939-9909-bf829995bd4d","direction":"outgoing","index":127036,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"d2391a6c-eca7-48a2-a0e6-09508e785cbe","direction":"outgoing","index":127037,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"a1a4626a-4bce-4b36-bceb-79860f2f6986","direction":"outgoing","index":127038,"result_id":"de81d3c6-761d-4f5e-8e76-48b7c12ceb14","status":200,"timestamp":"2026-05-22T12:19:13.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:13.562-04:00"},{"id":"925301a7-8426-46c4-b19a-53fc58c96878","created_at":"2026-05-22T12:19:14.020-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0e6810d2-bf28-40d7-8e1b-185a71a4f758","direction":"outgoing","index":127039,"result_id":"925301a7-8426-46c4-b19a-53fc58c96878","status":200,"timestamp":"2026-05-22T12:19:14.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"afa78948-f2de-4d3e-be2b-2e84b8e0477b","direction":"outgoing","index":127040,"result_id":"925301a7-8426-46c4-b19a-53fc58c96878","status":200,"timestamp":"2026-05-22T12:19:14.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"19480cb9-d63e-4cd7-b07a-fa06cbbc740c","direction":"outgoing","index":127041,"result_id":"925301a7-8426-46c4-b19a-53fc58c96878","status":200,"timestamp":"2026-05-22T12:19:14.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:14.020-04:00"},{"id":"c447d0ca-5557-490d-92a9-c6afa1209516","created_at":"2026-05-22T12:19:15.008-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"64f68958-4832-4b65-92f3-28ef88d18f51","direction":"outgoing","index":127042,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"949fd961-3a53-4aa2-8c1c-d428bac14305","direction":"outgoing","index":127043,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1debbbf2-27da-49fe-871d-aa25f9211261","direction":"outgoing","index":127044,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.041-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9e14f2d9-eb92-4dde-ac64-adafd4c0ec17","direction":"outgoing","index":127045,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d4f2e66e-d772-43e6-80cd-f792e2bd1528","direction":"outgoing","index":127046,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"42741ae6-6570-4eb8-9edd-9e8adbadd776","direction":"outgoing","index":127047,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1035e8b8-91fd-4bc5-a1d6-aa493b007ffd","direction":"outgoing","index":127048,"result_id":"c447d0ca-5557-490d-92a9-c6afa1209516","status":200,"timestamp":"2026-05-22T12:19:15.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:15.008-04:00"},{"id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","created_at":"2026-05-22T12:19:15.918-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3c28115b-3227-43e7-9d43-349f5950b27a","direction":"outgoing","index":127049,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0abc2343-2c38-4184-9290-dd6cacfe2709","direction":"outgoing","index":127050,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ca961892-c25f-48c3-bea7-a1d949bd000d","direction":"outgoing","index":127051,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a92dd3a0-0df8-42b9-973b-5ac0be585353","direction":"outgoing","index":127052,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"29e2af86-d07f-42ec-82b0-d7d7cc98d704","direction":"outgoing","index":127053,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4bf254f7-7c5f-4afe-b9b0-6857c43afd54","direction":"outgoing","index":127054,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:15.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1f8da034-c343-49cd-888a-2a70a13d5fbf","direction":"outgoing","index":127055,"result_id":"8cbcb2ed-9162-4c21-add9-9fc65fdeead6","status":200,"timestamp":"2026-05-22T12:19:16.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:15.918-04:00"},{"id":"154272d5-abd1-4f58-abe7-5719635d7d92","created_at":"2026-05-22T12:19:16.527-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"282fc6e0-5383-400c-8431-ae306b0132db","direction":"outgoing","index":127056,"result_id":"154272d5-abd1-4f58-abe7-5719635d7d92","status":200,"timestamp":"2026-05-22T12:19:16.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"38c0bc3f-77af-48cd-afe8-359bb2d35d6c","direction":"outgoing","index":127057,"result_id":"154272d5-abd1-4f58-abe7-5719635d7d92","status":200,"timestamp":"2026-05-22T12:19:16.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"1ae037fa-3d04-469a-8221-77108c2e3453","direction":"outgoing","index":127058,"result_id":"154272d5-abd1-4f58-abe7-5719635d7d92","status":200,"timestamp":"2026-05-22T12:19:16.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"0edb9ce7-b8c8-4e7c-a58d-e8acabaa1bb5","direction":"outgoing","index":127059,"result_id":"154272d5-abd1-4f58-abe7-5719635d7d92","status":200,"timestamp":"2026-05-22T12:19:16.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:16.527-04:00"},{"id":"88e45a3a-563c-46c1-b7d0-2fee775b61ac","created_at":"2026-05-22T12:19:16.988-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4417fba3-98b4-4aeb-9738-5011cbaa487b","direction":"outgoing","index":127060,"result_id":"88e45a3a-563c-46c1-b7d0-2fee775b61ac","status":200,"timestamp":"2026-05-22T12:19:16.991-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"6841ad18-5012-4735-8abd-fd6017e01b69","direction":"outgoing","index":127061,"result_id":"88e45a3a-563c-46c1-b7d0-2fee775b61ac","status":200,"timestamp":"2026-05-22T12:19:17.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"5124379a-ba14-425b-9559-fb3cd0229d75","direction":"outgoing","index":127062,"result_id":"88e45a3a-563c-46c1-b7d0-2fee775b61ac","status":200,"timestamp":"2026-05-22T12:19:17.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=laboratory\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:16.988-04:00"},{"id":"396afa84-862f-4822-a6bc-f629041f1884","created_at":"2026-05-22T12:19:17.132-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55a4abce-d520-446c-aadb-6afb2c0ce5d4","direction":"outgoing","index":127063,"result_id":"396afa84-862f-4822-a6bc-f629041f1884","status":200,"timestamp":"2026-05-22T12:19:17.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:17.132-04:00"},{"id":"6a69dcd3-c90b-4d58-b8d8-5c3028130696","created_at":"2026-05-22T12:19:17.635-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e59a67b8-1120-4033-9598-d3266aac0d75","direction":"outgoing","index":127064,"result_id":"6a69dcd3-c90b-4d58-b8d8-5c3028130696","status":200,"timestamp":"2026-05-22T12:19:17.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"879084d0-0306-4c95-bd64-581378536e61","direction":"outgoing","index":127065,"result_id":"6a69dcd3-c90b-4d58-b8d8-5c3028130696","status":200,"timestamp":"2026-05-22T12:19:17.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"b994d0ec-e183-4ad3-a8d9-97af6cc8a7d3","direction":"outgoing","index":127066,"result_id":"6a69dcd3-c90b-4d58-b8d8-5c3028130696","status":200,"timestamp":"2026-05-22T12:19:17.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:17.635-04:00"},{"id":"c1aa7df5-713a-44c3-9c9c-572f4831acd8","created_at":"2026-05-22T12:19:20.122-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:20.122-04:00"},{"id":"7695421d-010c-4f2a-9c55-056344b3bde1","created_at":"2026-05-22T12:19:20.176-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:20.176-04:00"},{"id":"f170bca0-7329-4dc4-9621-6d24c03ff0b3","created_at":"2026-05-22T12:19:20.924-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e888c25f-25c6-4015-bb9f-754b3c15cc63","direction":"outgoing","index":127067,"result_id":"f170bca0-7329-4dc4-9621-6d24c03ff0b3","status":200,"timestamp":"2026-05-22T12:19:20.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/34e30948-9926-419e-8879-4835370bf5d7","verb":"get"},{"id":"3ae6a6cc-54be-496d-a04f-46c970c4c602","direction":"outgoing","index":127068,"result_id":"f170bca0-7329-4dc4-9621-6d24c03ff0b3","status":200,"timestamp":"2026-05-22T12:19:20.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:20.924-04:00"},{"id":"df224b77-cc6f-4d58-b600-75a8cf33bd21","created_at":"2026-05-22T12:19:20.961-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_lab","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:20.961-04:00"},{"id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","created_at":"2026-05-22T12:19:21.705-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"03c51ec6-7689-410b-851a-1d908c3ccd38","direction":"outgoing","index":127069,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"8356f765-1376-4f0d-b5da-74c495aaf092","direction":"outgoing","index":127070,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"969900e0-d0d4-4910-bcd9-75e408011194","direction":"outgoing","index":127071,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"ef9b747c-d91c-4112-b4f5-1579a87eea63","direction":"outgoing","index":127072,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"a5d6ddf1-9255-4cd8-b907-3e7ac52d1ff8","direction":"outgoing","index":127073,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"8fb033e6-b161-4b91-b082-41f16b4a059b","direction":"outgoing","index":127074,"result_id":"d0a8ace4-25b5-4a5b-9a62-620035f6e64b","status":200,"timestamp":"2026-05-22T12:19:21.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:21.705-04:00"},{"id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","created_at":"2026-05-22T12:19:24.827-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5257c93b-3f02-4ac5-8787-76a32e13dbbb","direction":"outgoing","index":127075,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"ea972312-5f49-4446-84fa-5d7ea7133d93","direction":"outgoing","index":127076,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"5938936e-d86d-42d9-90ee-708bcb8bcd92","direction":"outgoing","index":127077,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"f74a2588-8952-4438-9400-3eba9f9184e4","direction":"outgoing","index":127078,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"d3b0f1ce-b235-4c86-8da4-736e11e9b1ca","direction":"outgoing","index":127079,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cabae05-5e0a-48df-8da9-beac2ce5ae00\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d9873b9-b1a3-46bb-9b63-e16678c019ea","direction":"outgoing","index":127080,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cabae05-5e0a-48df-8da9-beac2ce5ae00\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"273685b7-0566-448f-9687-f46e29fd04cd","direction":"outgoing","index":127081,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cabae05-5e0a-48df-8da9-beac2ce5ae00\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03c30bbf-9bb9-471a-ba5b-6fde3453a52e","direction":"outgoing","index":127082,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8cabae05-5e0a-48df-8da9-beac2ce5ae00\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"248b3dfd-2fa6-4a38-9ff7-122a70827f56","direction":"outgoing","index":127083,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.919-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"883ce399-ee73-426e-b395-ac6791849862","direction":"outgoing","index":127084,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3089fce-18a1-4f2d-95d3-3b89972b7b55\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e818a90-2a1a-4b18-b4c0-0067150306e1","direction":"outgoing","index":127085,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3089fce-18a1-4f2d-95d3-3b89972b7b55\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99a60cf9-0fcb-4f57-9d5e-46d8ca368b59","direction":"outgoing","index":127086,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3089fce-18a1-4f2d-95d3-3b89972b7b55\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfc23c9b-649a-4490-a909-206f78e2c539","direction":"outgoing","index":127087,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3089fce-18a1-4f2d-95d3-3b89972b7b55\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dfa6c9e-6fd5-4bd6-b2e0-142cf0acbdd2","direction":"outgoing","index":127088,"result_id":"ccc08f76-f656-4a02-a811-58d333ca6a8d","status":200,"timestamp":"2026-05-22T12:19:24.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:24.827-04:00"},{"id":"c26d6712-763d-45de-abec-eb7337a33c46","created_at":"2026-05-22T12:19:25.750-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7fb260e5-12ae-4cee-93b5-fdaedb2ee712","direction":"outgoing","index":127089,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"431d4eac-1b65-4f9f-a4e9-0bfd4fcefc08","direction":"outgoing","index":127090,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"becc4b54-80d4-41e8-829c-0e7aa78130b8","direction":"outgoing","index":127091,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"e14b6c9a-b1f5-4222-852c-41d2952199c6","direction":"outgoing","index":127092,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"747ba870-d1ae-410f-a6fe-c3f84b7b7dfd","direction":"outgoing","index":127093,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"0e7010ec-9e10-4bcf-9c15-94a4e0d256ca","direction":"outgoing","index":127094,"result_id":"c26d6712-763d-45de-abec-eb7337a33c46","status":200,"timestamp":"2026-05-22T12:19:25.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:25.750-04:00"},{"id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","created_at":"2026-05-22T12:19:29.754-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e051b173-20cc-4255-8245-afb56652e468","direction":"outgoing","index":127095,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"6cdf7138-affa-430f-9587-09437178401c","direction":"outgoing","index":127096,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"578c3fb0-ac5a-4c16-8bbd-9ac5175967c8","direction":"outgoing","index":127097,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29e8acc9-4933-44eb-aa66-c31800482c75","direction":"outgoing","index":127098,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4695915f-25b8-43bb-9b8e-be6a31dea60e","direction":"outgoing","index":127099,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a38b5b7d-468e-4cd4-901f-17d2f9d508ae","direction":"outgoing","index":127100,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"38c40c6f-8680-4e5d-9cc0-b5ab3a414901","direction":"outgoing","index":127101,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.851-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"98ce6c90-02db-4ddd-af20-3fb65672fc97","direction":"outgoing","index":127102,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29ae2cc8-fbca-4edd-b567-d24b4e248b2b","direction":"outgoing","index":127103,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca43f897-e533-4634-b3ef-327fb2ecebce","direction":"outgoing","index":127104,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6796500-78ad-49cc-ac6c-1e6228e52546","direction":"outgoing","index":127105,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"c977ed8e-e864-4ff2-95e8-fbb18683ede6","direction":"outgoing","index":127106,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79eeaa04-4668-4518-97b2-043eff898d3f","direction":"outgoing","index":127107,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.919-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"816d587e-bb79-4a96-a2e6-e61d291a44c3","direction":"outgoing","index":127108,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e33f574-f36f-44c4-a199-bc89fbbadfdf","direction":"outgoing","index":127109,"result_id":"20546521-8ead-4809-b90a-b6ce48dc2f2d","status":200,"timestamp":"2026-05-22T12:19:29.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:29.754-04:00"},{"id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","created_at":"2026-05-22T12:19:33.040-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a8b167ef-1a45-463b-bc32-326877341a5d","direction":"outgoing","index":127110,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"21d582e1-1def-4594-80b1-e0dabd8fde41","direction":"outgoing","index":127111,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbfb30db-c919-4e94-952e-d82f49618f8c","direction":"outgoing","index":127112,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"abcde3e3-ac01-4233-b9fe-e8f4602cb922","direction":"outgoing","index":127113,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"538ed83a-2733-4323-b3c8-f146a9357154","direction":"outgoing","index":127114,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b329f9b-3945-4264-85a4-c4f3a76e2ca4","direction":"outgoing","index":127115,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"0352d816-9e84-4c20-bf02-eaefab54da64","direction":"outgoing","index":127116,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f59df79a-e710-4965-9515-fa17dcafc5ca","direction":"outgoing","index":127117,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ded0319-8d0f-472d-9cc2-c8e7377dc9e9","direction":"outgoing","index":127118,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a21368b3-41ad-4a3d-9e0a-b3db31577fbc","direction":"outgoing","index":127119,"result_id":"6111e3b6-87dd-45d0-8ea1-2861f471cace","status":200,"timestamp":"2026-05-22T12:19:33.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:33.040-04:00"},{"id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","created_at":"2026-05-22T12:19:35.799-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b9a63450-0418-4f83-8c77-f468f2179bab","direction":"outgoing","index":127120,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"7ccb4dfc-4b5b-4369-ac1c-869fa3faf791","direction":"outgoing","index":127121,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9e411bf-fb10-4257-9b59-a038cca1f9a8","direction":"outgoing","index":127122,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82ff64f8-06f1-4576-99a5-7812b815e1ca","direction":"outgoing","index":127123,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3504f61-9ece-42ac-8388-ffac2e28992c","direction":"outgoing","index":127124,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb9c974-0604-4d60-ab5b-af429eb17a3a","direction":"outgoing","index":127125,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"375da1c4-d99b-4ec9-a6e2-668d768e2a9f","direction":"outgoing","index":127126,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d06a9819-7452-4805-99d3-6aa303c17d77","direction":"outgoing","index":127127,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dc26ff08-9dab-41d8-be5c-00c013ee316b","direction":"outgoing","index":127128,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a17e7b7f-6f97-4126-b679-c15badbeee66","direction":"outgoing","index":127129,"result_id":"5a2d0e4f-55f2-4dd1-bd19-1d6c1feb10f8","status":200,"timestamp":"2026-05-22T12:19:35.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:35.799-04:00"},{"id":"f73d72e2-21b0-4ed6-8de9-188c4e5fc4cd","created_at":"2026-05-22T12:19:36.078-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ad2ec930-263a-4680-9d13-c04009beea09","direction":"outgoing","index":127130,"result_id":"f73d72e2-21b0-4ed6-8de9-188c4e5fc4cd","status":200,"timestamp":"2026-05-22T12:19:36.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:36.078-04:00"},{"id":"e29134cd-fa3e-40e1-8418-fb674ff421d0","created_at":"2026-05-22T12:19:36.530-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b76a57c7-6e03-4118-a6c4-61b60ba059f6","direction":"outgoing","index":127131,"result_id":"e29134cd-fa3e-40e1-8418-fb674ff421d0","status":200,"timestamp":"2026-05-22T12:19:36.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=85","verb":"get"},{"id":"a20bbfea-708c-49c5-b99a-1a5d0be310d0","direction":"outgoing","index":127132,"result_id":"e29134cd-fa3e-40e1-8418-fb674ff421d0","status":200,"timestamp":"2026-05-22T12:19:36.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=355","verb":"get"},{"id":"04abd31a-fa36-4c6e-9ba3-6868a4f2eedb","direction":"outgoing","index":127133,"result_id":"e29134cd-fa3e-40e1-8418-fb674ff421d0","status":200,"timestamp":"2026-05-22T12:19:36.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:36.530-04:00"},{"id":"99a70156-ff64-4293-8959-4fd974478a02","created_at":"2026-05-22T12:19:37.226-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:37.226-04:00"},{"id":"88fe1d35-66c5-4530-8ba5-1ba481ae3c6e","created_at":"2026-05-22T12:19:37.230-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:37.230-04:00"},{"id":"875c019f-d328-43c8-b875-24598b9c86fe","created_at":"2026-05-22T12:19:37.233-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:37.233-04:00"},{"id":"b731b51a-6117-4ce7-8222-7ed2733e4019","created_at":"2026-05-22T12:19:37.234-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:37.234-04:00"},{"id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","created_at":"2026-05-22T12:19:38.028-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"04ed81c6-895e-43a5-a8b2-8ea027d31036","direction":"outgoing","index":127134,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"035e95ed-3bdc-4e17-8499-ebfae6cd819e","direction":"outgoing","index":127135,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"d4393810-3f97-41a2-8d96-149feb1545a1","direction":"outgoing","index":127136,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"bed8bece-cd69-491e-9097-8c2092869001","direction":"outgoing","index":127137,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"e8fc59c0-0233-4c50-aef0-98e494716504","direction":"outgoing","index":127138,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"0a406c83-ddb5-42db-a754-abc3a9503e97","direction":"outgoing","index":127139,"result_id":"9e249a95-c369-4cbd-a0f6-a233e15edc17","status":200,"timestamp":"2026-05-22T12:19:38.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:38.028-04:00"},{"id":"adfd3074-53fb-4908-b867-7576891f5555","created_at":"2026-05-22T12:19:41.456-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4ee86866-f554-4cc3-bd57-28d05187ba4c","direction":"outgoing","index":127140,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"321b9bce-3fd4-4796-80d0-24ef45833f38","direction":"outgoing","index":127141,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"1e29f947-ce65-4972-ae8a-a726e446eb01","direction":"outgoing","index":127142,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"3debd265-26a8-48e0-866a-c3d18d655088","direction":"outgoing","index":127143,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"a3ea4424-d18a-42b0-947b-67454dde1512","direction":"outgoing","index":127144,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92bd876c-faaa-44a7-a2ff-d0c1200d53d8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a877bc8a-6c18-4567-be9f-d8ca1da8b4db","direction":"outgoing","index":127145,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92bd876c-faaa-44a7-a2ff-d0c1200d53d8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"771c2119-9a72-4bb9-b08f-f4473aeabafe","direction":"outgoing","index":127146,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92bd876c-faaa-44a7-a2ff-d0c1200d53d8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de380a98-11d5-4a9e-a2e0-a02a637f0851","direction":"outgoing","index":127147,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92bd876c-faaa-44a7-a2ff-d0c1200d53d8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"862373d9-14f8-4541-b34b-df4be1267d70","direction":"outgoing","index":127148,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"ee58b218-ed02-4968-846d-261a8227b7ec","direction":"outgoing","index":127149,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b2628d-543d-4e92-892b-8d6bdb726f50\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fc8b054-b2d4-4b42-b768-5fe8e2683846","direction":"outgoing","index":127150,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b2628d-543d-4e92-892b-8d6bdb726f50\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd0f83f1-75f3-41db-bbab-6ae0fe9836eb","direction":"outgoing","index":127151,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b2628d-543d-4e92-892b-8d6bdb726f50\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e1c29a4-94dc-4071-bf55-0338178ca354","direction":"outgoing","index":127152,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35b2628d-543d-4e92-892b-8d6bdb726f50\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4b09163f-1d09-43c5-b1de-bd3f7642f892","direction":"outgoing","index":127153,"result_id":"adfd3074-53fb-4908-b867-7576891f5555","status":200,"timestamp":"2026-05-22T12:19:41.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:41.456-04:00"},{"id":"4ab966db-030b-4285-8154-324c633d724c","created_at":"2026-05-22T12:19:42.437-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"54b828bd-940e-44f3-a0d9-39b0c247621f","direction":"outgoing","index":127154,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.442-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"a378806a-17b0-45d4-941f-6863a3a60e60","direction":"outgoing","index":127155,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"1f0f10f7-85df-46b4-bbf2-12acda81190f","direction":"outgoing","index":127156,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"95736da0-1d62-44a4-9aae-5611cd0dc1a7","direction":"outgoing","index":127157,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"5a1ee5d2-3340-4ef4-a472-855e8f49128e","direction":"outgoing","index":127158,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"e1b21247-1767-49b5-8130-175063f7b2f8","direction":"outgoing","index":127159,"result_id":"4ab966db-030b-4285-8154-324c633d724c","status":200,"timestamp":"2026-05-22T12:19:42.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:42.437-04:00"},{"id":"083fa03a-37fb-489f-9b37-905163b4dd66","created_at":"2026-05-22T12:19:45.001-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c04da942-5fd7-4844-8f82-96b161af31ad","direction":"outgoing","index":127160,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"05625674-0239-4cc5-83e1-a24a33e8468b","direction":"outgoing","index":127161,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eca4824d-ab93-47dd-a86f-9158b96a5480","direction":"outgoing","index":127162,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78181029-f129-41cb-ae2d-6b3e55ec46ad","direction":"outgoing","index":127163,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7bcab93-69d9-4c2a-bad8-dd8f7423ecf6","direction":"outgoing","index":127164,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bfb7f0d8-b871-437f-aca7-d325855a596e","direction":"outgoing","index":127165,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"31b110b4-c977-4b08-9897-eb9cd7c9baf7","direction":"outgoing","index":127166,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54a6296e-3ddf-4662-bd71-c2dda733df42","direction":"outgoing","index":127167,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"242fd949-e270-41b3-a75b-da429e8d658a","direction":"outgoing","index":127168,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b9da06e6-fb47-4e85-861a-621a7745a20a","direction":"outgoing","index":127169,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b39524d4-2b25-4ea8-9f11-649a69e90d47","direction":"outgoing","index":127170,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"90922d6d-7486-4d36-b67d-5cd98aa93734","direction":"outgoing","index":127171,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31b8a30a-e11b-4889-97d5-8bcefdf55cd1","direction":"outgoing","index":127172,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d36be5bb-1cc9-4f72-8a6d-663dec2440fe","direction":"outgoing","index":127173,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cbba312-9307-47ea-b264-3aea5d87833b","direction":"outgoing","index":127174,"result_id":"083fa03a-37fb-489f-9b37-905163b4dd66","status":200,"timestamp":"2026-05-22T12:19:45.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:45.001-04:00"},{"id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","created_at":"2026-05-22T12:19:46.861-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1da4a912-8ebf-46a4-a492-0e879dee77f4","direction":"outgoing","index":127175,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"c86749cd-9c98-4d48-91b0-5db36db7ea18","direction":"outgoing","index":127176,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df503ad7-4145-477b-94e8-bbe0a6f54ea8","direction":"outgoing","index":127177,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c862cab6-7636-4285-a7c5-0e41f9369038","direction":"outgoing","index":127178,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59213e15-b0d7-4b27-99e1-a4aea358e732","direction":"outgoing","index":127179,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae677b67-10d5-42d1-9ae3-38e5497e848d","direction":"outgoing","index":127180,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"1b5b2915-de36-45d4-94f2-691abccfd4f2","direction":"outgoing","index":127181,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71f1f7a8-381f-441f-85a4-a87486644ac1","direction":"outgoing","index":127182,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9cc5b970-b91d-4507-8500-4f1fbd11b8c9","direction":"outgoing","index":127183,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7427313-5b4d-42f9-82ef-e3255e9baf7c","direction":"outgoing","index":127184,"result_id":"23328b1c-a06d-4c9b-8b92-9ff63839a325","status":200,"timestamp":"2026-05-22T12:19:46.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:46.861-04:00"},{"id":"48b187c3-679c-4e65-8427-f8540e816f91","created_at":"2026-05-22T12:19:49.283-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8a831fae-a302-4d2c-8795-b01488eb5679","direction":"outgoing","index":127185,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"072d3574-aa4b-4db8-ac50-a7438857d037","direction":"outgoing","index":127186,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e6d4f418-fc32-4326-af68-f505add47f48","direction":"outgoing","index":127187,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2a5fdad7-4cf3-4a31-bda1-551ee4303b60","direction":"outgoing","index":127188,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff2767c5-5603-4e38-b69a-02a1ac56a5cf","direction":"outgoing","index":127189,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9695d995-b5d7-4d68-aead-62ab53807f9a","direction":"outgoing","index":127190,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ac2dd6d8-b72b-4c2c-9ff7-a749206912b0","direction":"outgoing","index":127191,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a88bd70-99ce-4fb9-ae69-1b2c9d83b24c","direction":"outgoing","index":127192,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6b43511a-70e4-4148-aee7-e8e7351bf023","direction":"outgoing","index":127193,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"228683ef-2ae6-4e24-a40b-dc2b1d9ae33e","direction":"outgoing","index":127194,"result_id":"48b187c3-679c-4e65-8427-f8540e816f91","status":200,"timestamp":"2026-05-22T12:19:49.442-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:49.283-04:00"},{"id":"87ea4af5-89e0-4c0f-b209-bb80005ab5b4","created_at":"2026-05-22T12:19:49.583-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"867ff894-e2e2-4106-9baa-ad47442e6da5","direction":"outgoing","index":127195,"result_id":"87ea4af5-89e0-4c0f-b209-bb80005ab5b4","status":200,"timestamp":"2026-05-22T12:19:49.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:49.583-04:00"},{"id":"ad93365b-419a-490b-8111-091a4222e3c0","created_at":"2026-05-22T12:19:50.113-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d1c62e01-f1b8-4f07-be4a-59a571a809a8","direction":"outgoing","index":127196,"result_id":"ad93365b-419a-490b-8111-091a4222e3c0","status":200,"timestamp":"2026-05-22T12:19:50.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=85","verb":"get"},{"id":"13aa024c-3079-4c65-b267-d21e89193855","direction":"outgoing","index":127197,"result_id":"ad93365b-419a-490b-8111-091a4222e3c0","status":200,"timestamp":"2026-05-22T12:19:50.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=355","verb":"get"},{"id":"91290a1a-c07e-4c3a-9f5a-7b345fe45c39","direction":"outgoing","index":127198,"result_id":"ad93365b-419a-490b-8111-091a4222e3c0","status":200,"timestamp":"2026-05-22T12:19:50.150-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:50.113-04:00"},{"id":"210dcce4-341a-456e-890f-1af6c3cbd325","created_at":"2026-05-22T12:19:50.944-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:50.944-04:00"},{"id":"57c733e7-1134-4ec8-bf6a-a39ff0cf0ace","created_at":"2026-05-22T12:19:50.962-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:50.962-04:00"},{"id":"155d1586-e65b-4de3-a544-db227f17aaaa","created_at":"2026-05-22T12:19:50.972-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:50.972-04:00"},{"id":"9dbb91b1-7346-4f48-a361-9cd083bafd62","created_at":"2026-05-22T12:19:50.976-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:50.976-04:00"},{"id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","created_at":"2026-05-22T12:19:52.091-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c150083e-bb4b-4858-885d-8e7e4b82b8bb","direction":"outgoing","index":127199,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"7dd1c2fa-733a-400a-97d9-eff6716a7793","direction":"outgoing","index":127200,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"737cfb1d-7853-4294-8886-74eaf582a049","direction":"outgoing","index":127201,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"7745e640-9bf4-4f7b-aba3-7cfdde24abd7","direction":"outgoing","index":127202,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"88d2687c-0a98-4208-975e-45b85921a851","direction":"outgoing","index":127203,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"b1038c64-1dba-4473-82f8-6d25c6d2efaf","direction":"outgoing","index":127204,"result_id":"f9fa9d9c-bace-4d50-954e-7f0155f39138","status":200,"timestamp":"2026-05-22T12:19:52.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:52.091-04:00"},{"id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","created_at":"2026-05-22T12:19:55.717-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8c72847d-134d-49c5-999a-3d0671c18a66","direction":"outgoing","index":127205,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3731aa3a-e3e7-40a0-94bd-0da21edac300","direction":"outgoing","index":127206,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bb741a02-0705-42ff-964d-d9fc0290148a","direction":"outgoing","index":127207,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"44495bfa-2cd5-45ca-9d95-42a9ab657cdc","direction":"outgoing","index":127208,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7c6a94a0-0942-4841-9a6f-e91f85a2add4","direction":"outgoing","index":127209,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dc7a3e1-0689-41aa-bfc7-d2c749f8be21\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"319a3d38-5b2e-4b0b-9b14-2869c75827ca","direction":"outgoing","index":127210,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.851-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dc7a3e1-0689-41aa-bfc7-d2c749f8be21\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"927fcc87-00a1-4644-bd16-b0d9ccaf2469","direction":"outgoing","index":127211,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dc7a3e1-0689-41aa-bfc7-d2c749f8be21\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17a57927-bb04-4f13-be49-63c3d54a88de","direction":"outgoing","index":127212,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e29c95e4-2e3c-491d-9567-27eece745ec5","direction":"outgoing","index":127213,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.889-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=78222df5-7111-4eb4-a5e1-7df34a6723dc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6b39cbb1-b5ac-4410-a185-e11b9b7857c1","direction":"outgoing","index":127214,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=78222df5-7111-4eb4-a5e1-7df34a6723dc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e4b02a8f-1445-4c5c-8d7f-9b09c938f59e","direction":"outgoing","index":127215,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=78222df5-7111-4eb4-a5e1-7df34a6723dc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba7f56be-9371-47cd-84ea-a168e94913fb","direction":"outgoing","index":127216,"result_id":"b4dcf760-e91e-4cda-a510-a7429d26e86a","status":200,"timestamp":"2026-05-22T12:19:55.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:55.717-04:00"},{"id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","created_at":"2026-05-22T12:19:57.517-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1e3e2b4f-6734-430a-8af7-2b8f7d3468a7","direction":"outgoing","index":127217,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"90efc258-71bc-4805-a5ea-9afbabe3fabe","direction":"outgoing","index":127218,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4baedeb3-22bf-4603-b28b-6629dc70d2d0","direction":"outgoing","index":127219,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"979462aa-5dba-4f03-b215-e7aa75192402","direction":"outgoing","index":127220,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"854a5c5c-8861-4ec4-8c96-f1d074a66446","direction":"outgoing","index":127221,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"36c24f84-cc90-41c3-9383-0413b283d4e6","direction":"outgoing","index":127222,"result_id":"f5d1ef1e-2fbf-4f2b-89ba-3d23e83b7c23","status":200,"timestamp":"2026-05-22T12:19:57.602-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:19:57.517-04:00"},{"id":"7750f710-4459-49bc-95f5-a9a0614384a2","created_at":"2026-05-22T12:20:00.509-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e5329e3d-98cd-4f08-b46c-7894bdf63851","direction":"outgoing","index":127223,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"f70d7e56-3eee-4ed7-a861-9a7172075c8c","direction":"outgoing","index":127224,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de4be5c3-0b08-4a8c-8baf-8f933ed90b46","direction":"outgoing","index":127225,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f0fdf5c-4360-4d0e-a028-4c646ef7ee31","direction":"outgoing","index":127226,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3547be3e-4207-41e5-b684-6f98a7420733","direction":"outgoing","index":127227,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=475ea2af-a3ba-4a58-8225-fd7cf38674c7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a96c3c4f-4ff5-4dce-9eec-49566d14283d","direction":"outgoing","index":127228,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"0810643f-fe3d-407c-b3ad-3d5c1c975d85","direction":"outgoing","index":127229,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a1a3ce5-e11b-43fe-a29f-e1219af0f8a8","direction":"outgoing","index":127230,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f63510a-72e8-46d7-9ea1-aa597deae32b","direction":"outgoing","index":127231,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38d205da-a9bc-4144-8496-ce3ae4c214c5","direction":"outgoing","index":127232,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9240899a-78c5-4490-a8a1-5f08625517f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7fc634e-288f-46cc-91be-16a7c737d005","direction":"outgoing","index":127233,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2d6277f8-41d0-47bc-b97c-362ad6cc595b","direction":"outgoing","index":127234,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"680686b1-dca1-44f3-904f-49a97085ed32","direction":"outgoing","index":127235,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c12863af-f43e-491a-a6ee-8c0e051973a8","direction":"outgoing","index":127236,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fef4b2ff-eedf-4eb0-b139-6579fa6a2cc7","direction":"outgoing","index":127237,"result_id":"7750f710-4459-49bc-95f5-a9a0614384a2","status":200,"timestamp":"2026-05-22T12:20:00.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a88f8fa-f1c4-4f6a-88b1-ec9885a1db76\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:00.509-04:00"},{"id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","created_at":"2026-05-22T12:20:02.807-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7a7924c3-170d-469c-809e-3b560f36667a","direction":"outgoing","index":127238,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"45fd7fbf-18e0-4c80-a378-410c4f1ace97","direction":"outgoing","index":127239,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.842-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ec8b907-339b-4028-a1f6-96cba32f9c64","direction":"outgoing","index":127240,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0169d91d-2a33-425c-b28c-b8ef19968be0","direction":"outgoing","index":127241,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d9243d9-7e58-4c84-8cc2-aac1bfd71deb","direction":"outgoing","index":127242,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1c2e5ff8-287e-4af0-8ed9-646eb027225b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"182b4866-321d-42b9-a358-79f049845a65","direction":"outgoing","index":127243,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"c11eca61-b89c-4489-87b9-619337dc48ee","direction":"outgoing","index":127244,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b39ad639-acda-453d-a77d-570caf756476","direction":"outgoing","index":127245,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f2d0a5a-c1ba-4d40-bea5-c0a91f95fa7b","direction":"outgoing","index":127246,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44fca973-bd17-4f9b-b6d0-939a0c42f7db","direction":"outgoing","index":127247,"result_id":"a49d6b75-98d5-435a-a695-9ff09bad72c9","status":200,"timestamp":"2026-05-22T12:20:02.937-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef948dfd-8b59-4be8-bcfa-a06af88a76be\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:02.807-04:00"},{"id":"74b4edbb-17c3-4076-8361-6ee819d0de18","created_at":"2026-05-22T12:20:04.645-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"506a31fb-ce9c-444f-8fe1-ed143ec5015b","direction":"outgoing","index":127248,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"2ed3bed8-c086-4010-aa66-c9dc98c7e7ca","direction":"outgoing","index":127249,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e498a1b-b577-45cf-a245-0b8b1d520175","direction":"outgoing","index":127250,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"435b1eff-90ba-47bb-b3d3-03d08c721a22","direction":"outgoing","index":127251,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aef379f6-7907-42f8-bd7d-dd41a1e03c71","direction":"outgoing","index":127252,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a185abd0-b6d0-4510-940b-545582dc9d4c","direction":"outgoing","index":127253,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"869eb54e-894b-47eb-b26d-0b8d34a5adcb","direction":"outgoing","index":127254,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"afdc8e67-a673-4916-b8a5-525764f364f0","direction":"outgoing","index":127255,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"733787df-945f-4851-8a46-b698371fa2c5","direction":"outgoing","index":127256,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99a4b6e9-77be-4b82-a837-f8bcb41c5de7","direction":"outgoing","index":127257,"result_id":"74b4edbb-17c3-4076-8361-6ee819d0de18","status":200,"timestamp":"2026-05-22T12:20:04.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b36a3b31-f3a2-43f9-ad75-70a3a587130d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:04.645-04:00"},{"id":"44a73650-20fd-45f9-98e9-74e29db553b5","created_at":"2026-05-22T12:20:04.883-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e4dfb3b6-079c-42d8-a9b5-fa5b719d5780","direction":"outgoing","index":127258,"result_id":"44a73650-20fd-45f9-98e9-74e29db553b5","status":200,"timestamp":"2026-05-22T12:20:04.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/1c54dcaf-6414-4365-95f9-685b5e405e46","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:04.883-04:00"},{"id":"f9187917-4cae-4170-a976-210d820cf45f","created_at":"2026-05-22T12:20:05.299-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6e47e3eb-b00b-4970-a947-effa3d9ea72d","direction":"outgoing","index":127259,"result_id":"f9187917-4cae-4170-a976-210d820cf45f","status":200,"timestamp":"2026-05-22T12:20:05.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=85","verb":"get"},{"id":"1711c4e1-c1df-4a0f-94be-a05d53eac7e8","direction":"outgoing","index":127260,"result_id":"f9187917-4cae-4170-a976-210d820cf45f","status":200,"timestamp":"2026-05-22T12:20:05.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=355","verb":"get"},{"id":"d626d77e-52be-4247-8c6f-d37590cc0906","direction":"outgoing","index":127261,"result_id":"f9187917-4cae-4170-a976-210d820cf45f","status":200,"timestamp":"2026-05-22T12:20:05.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:05.299-04:00"},{"id":"e2245a73-b3b7-4311-a014-ed8d0149dcd9","created_at":"2026-05-22T12:20:12.144-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:12.144-04:00"},{"id":"10ecf980-1fee-47c1-9f8b-e170c262006a","created_at":"2026-05-22T12:20:12.163-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:12.163-04:00"},{"id":"bbdc4eef-2789-41df-ba67-23a6fed34448","created_at":"2026-05-22T12:20:12.172-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:12.172-04:00"},{"id":"6f3a2445-e67b-4118-9d99-6bb7b1850a8d","created_at":"2026-05-22T12:20:12.174-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_occupation","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:12.174-04:00"},{"id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","created_at":"2026-05-22T12:20:13.058-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7c5c02af-adcb-43de-beee-35926fbb9710","direction":"outgoing","index":127262,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"0c9086b1-ed3b-409f-9858-b74d1a112f48","direction":"outgoing","index":127263,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"8b274805-5500-42e6-b9d0-ecd64482a672","direction":"outgoing","index":127264,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"fba0720e-acd5-43ad-a61e-34d8da750ab3","direction":"outgoing","index":127265,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"782f2472-32de-4264-9729-03e42514a266","direction":"outgoing","index":127266,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"1fba1284-8ba9-4c71-8c3d-024a54ae9d50","direction":"outgoing","index":127267,"result_id":"8a3a1037-d007-4254-a1f2-ccae81e9d4cd","status":200,"timestamp":"2026-05-22T12:20:13.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:13.058-04:00"},{"id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","created_at":"2026-05-22T12:20:16.857-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0150819b-e3cd-48c8-8a72-1094d2660a3b","direction":"outgoing","index":127268,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f60e00d9-a719-418b-b50c-32d6e3ccb21d","direction":"outgoing","index":127269,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ef89e20c-2fe9-443c-a9d1-d764ea4637e0","direction":"outgoing","index":127270,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=159f7e39-3074-40bc-bcaf-057e4a1c1ed7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2fa2b2d-87e5-4496-bc53-71abf091d7e4","direction":"outgoing","index":127271,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b0266e6c-f908-4aa2-bc9f-4c4501c3790a","direction":"outgoing","index":127272,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d979cc33-2f9b-40b2-b29b-0fcfa6fe63e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d94fc47d-d17c-4715-b24e-926eb1ef0860","direction":"outgoing","index":127273,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"394abf8c-c301-4e4d-8fd0-5e8566eeab86","direction":"outgoing","index":127274,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f75bc482-01ba-4161-930b-7249bc6c5349\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b05171f5-dd25-435b-90ce-a6b290fdbace","direction":"outgoing","index":127275,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"27b0dd3e-5ee1-4e90-8f4d-f7fc48219bf2","direction":"outgoing","index":127276,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=171ca2e7-8aec-47f7-abea-032dc727c50c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddd4b994-01e0-458b-96fa-8ab21b43fe89","direction":"outgoing","index":127277,"result_id":"4680a724-b72d-41bd-a8d7-71b14ad2c6c4","status":200,"timestamp":"2026-05-22T12:20:16.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:16.857-04:00"},{"id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","created_at":"2026-05-22T12:20:17.804-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"56632b3d-ccd0-4ecc-b779-48eea0a9bbd6","direction":"outgoing","index":127278,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8623eb3a-6102-4f4d-94a5-3ac491959d66","direction":"outgoing","index":127279,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f98d2bae-49f5-4530-82ec-ef3ece2d2a09","direction":"outgoing","index":127280,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"15d092ed-7b23-48b2-9f06-5fd0545189fd","direction":"outgoing","index":127281,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b1fb0054-51fb-4039-834f-af110197e2d2","direction":"outgoing","index":127282,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"20f8cf51-abf8-4f8c-a588-663def451b00","direction":"outgoing","index":127283,"result_id":"27ecefcd-6536-4102-b9b2-a574ec4abe2b","status":200,"timestamp":"2026-05-22T12:20:17.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:17.804-04:00"},{"id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","created_at":"2026-05-22T12:20:21.007-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d7de7395-4c9f-4975-ba40-7a7b92307db7","direction":"outgoing","index":127284,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f2e9856e-78b8-44eb-bc72-d9b0929f78d7","direction":"outgoing","index":127285,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=71680668-a3e8-4a81-815f-4be7f65e44e8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e609329-6477-4402-b9fb-c98dfc8fbe6d","direction":"outgoing","index":127286,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=71680668-a3e8-4a81-815f-4be7f65e44e8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"69515125-6abc-4c41-9aeb-a979acc60a01","direction":"outgoing","index":127287,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"e45355b7-47ca-4980-87da-536a2c23e2a8","direction":"outgoing","index":127288,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ce1086e-f19b-45f9-a769-6cc0954eb8f7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0e01d1e-95e4-46bb-8bab-f7f949fd2033","direction":"outgoing","index":127289,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ce1086e-f19b-45f9-a769-6cc0954eb8f7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c35c1b6e-ae8e-412f-928c-4b5f7011e081","direction":"outgoing","index":127290,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b2627fde-8b44-4777-9a3f-a9e1ef1ef36e","direction":"outgoing","index":127291,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=511081d4-861e-43d2-b0bd-1a969033e942\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"77cc93e9-c416-445e-8652-2eb2cdcafe41","direction":"outgoing","index":127292,"result_id":"2726fc58-1660-4126-9b5f-1b4c14d0d683","status":200,"timestamp":"2026-05-22T12:20:21.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=511081d4-861e-43d2-b0bd-1a969033e942\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:21.007-04:00"},{"id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","created_at":"2026-05-22T12:20:23.222-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a1329ed2-81a5-410a-9321-0adea7927030","direction":"outgoing","index":127293,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"fa488152-df20-4f9b-8970-fcb7cb076e2b","direction":"outgoing","index":127294,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=62d10bd8-17ac-4f0a-9c50-658ee1497a4e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e43a14ad-a990-4b8f-a6c1-54662534d58d","direction":"outgoing","index":127295,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=62d10bd8-17ac-4f0a-9c50-658ee1497a4e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4bdd74fc-287a-4a5f-811d-39c1ded24e85","direction":"outgoing","index":127296,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"bc1d1638-64bd-41d2-b352-357ca0c77d28","direction":"outgoing","index":127297,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb1144f3-d3cf-44f9-a358-687e3257b791\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d71a5c59-496b-4ae4-94de-b6ec20e95d68","direction":"outgoing","index":127298,"result_id":"d5c9aab3-dece-42ae-bd95-73f2cc57acd5","status":200,"timestamp":"2026-05-22T12:20:23.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb1144f3-d3cf-44f9-a358-687e3257b791\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:23.222-04:00"},{"id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","created_at":"2026-05-22T12:20:25.570-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4de7f8e0-d353-4220-83be-7c1a809f277f","direction":"outgoing","index":127299,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f5b897cb-d680-4905-9298-f8d6c613995c","direction":"outgoing","index":127300,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92cfab3b-2cb4-4ace-b651-24583f5fe413\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1df6d280-5477-40a2-901a-18dff2cce38f","direction":"outgoing","index":127301,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92cfab3b-2cb4-4ace-b651-24583f5fe413\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"994eca6e-8d72-4c8d-aa75-21ac2de07291","direction":"outgoing","index":127302,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"34292fa8-009c-4ed1-b341-9f3b7b2a33b3","direction":"outgoing","index":127303,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bf473b4-875b-4fe5-b302-3043b0f3ab9f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2fc4dd01-445b-4eef-a599-c7f0c54c6226","direction":"outgoing","index":127304,"result_id":"8e3ad19e-909b-465e-b0cf-bf489a33c75d","status":200,"timestamp":"2026-05-22T12:20:25.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2bf473b4-875b-4fe5-b302-3043b0f3ab9f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:25.570-04:00"},{"id":"3afabb76-7ecd-42b0-ab3e-6055c2cb1af5","created_at":"2026-05-22T12:20:25.765-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b02b5ab8-1714-4614-9ce7-dfc32ad485a5","direction":"outgoing","index":127305,"result_id":"3afabb76-7ecd-42b0-ab3e-6055c2cb1af5","status":200,"timestamp":"2026-05-22T12:20:25.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:25.765-04:00"},{"id":"3d6d876e-e8e4-466c-9492-29d7dd167cbf","created_at":"2026-05-22T12:20:26.241-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ae06a6df-4d69-44dd-99ba-888837d39844","direction":"outgoing","index":127306,"result_id":"3d6d876e-e8e4-466c-9492-29d7dd167cbf","status":200,"timestamp":"2026-05-22T12:20:26.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85","verb":"get"},{"id":"3cf5a7e9-3ccb-4163-8cf5-624431721d16","direction":"outgoing","index":127307,"result_id":"3d6d876e-e8e4-466c-9492-29d7dd167cbf","status":200,"timestamp":"2026-05-22T12:20:26.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355","verb":"get"},{"id":"6f5158f1-fa21-4a9f-a7d6-cf24d18dcc98","direction":"outgoing","index":127308,"result_id":"3d6d876e-e8e4-466c-9492-29d7dd167cbf","status":200,"timestamp":"2026-05-22T12:20:26.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:26.241-04:00"},{"id":"7c71c9af-bc11-4825-8c08-5f5aac25a065","created_at":"2026-05-22T12:20:27.012-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:27.012-04:00"},{"id":"b6a9c299-1446-478e-ae57-3eba509fa824","created_at":"2026-05-22T12:20:27.026-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:27.026-04:00"},{"id":"e9c0abd0-2d4a-4e70-bc18-ed02ff232bc5","created_at":"2026-05-22T12:20:27.028-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:27.028-04:00"},{"id":"388217f9-6a34-4a65-ae3b-3ea808603633","created_at":"2026-05-22T12:20:27.029-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_respiratory_rate","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:27.029-04:00"},{"id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","created_at":"2026-05-22T12:20:36.973-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5c2c37dc-cd7e-4e6e-9833-651f81e138a6","direction":"outgoing","index":127309,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:36.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"b3c3e4ef-9c0a-423e-b721-af8fb095be22","direction":"outgoing","index":127310,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"777d79a3-67c9-4924-89ca-522574ef7608","direction":"outgoing","index":127311,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"a86cfbd3-e178-4e08-842b-6a9b100c65b3","direction":"outgoing","index":127312,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"a98d0313-5e3b-4401-8ad1-d2b4243545eb","direction":"outgoing","index":127313,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"27179b3d-f29b-4729-9ace-170a4f287c1d","direction":"outgoing","index":127314,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"c2ab7193-990e-4dc0-9c27-6697cff04f8e","direction":"outgoing","index":127315,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"ef1041c2-12c5-452c-b7a1-226fb9661b81","direction":"outgoing","index":127316,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85","verb":"get"},{"id":"66480b30-a505-499a-9dbb-5f89782250fc","direction":"outgoing","index":127317,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85","verb":"get"},{"id":"37d938eb-9075-465d-ab84-cdb8ea93845d","direction":"outgoing","index":127318,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"ac8923b3-5401-4e4e-b791-736f70f21212","direction":"outgoing","index":127319,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6dc8886c-b724-4100-9d62-bc3ebef05aaa","direction":"outgoing","index":127320,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b32d0f72-0500-44e3-95be-5b46950b59e2","direction":"outgoing","index":127321,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2bcaca2d-27a7-4109-b9f0-1eeb089679d1","direction":"outgoing","index":127322,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e731797-fc9a-46e6-aa4f-74c4df483b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6e3e2b4-0665-4095-a1d2-9b56e7ff95ab","direction":"outgoing","index":127323,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"5426e80e-217e-4061-a529-12fb1d49b6bc","direction":"outgoing","index":127324,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"bdef909a-9be9-47bb-affe-2532ad677e89","direction":"outgoing","index":127325,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"a56604c2-d0c9-43bd-8adc-9082c50a926e","direction":"outgoing","index":127326,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"200cb01a-a2a7-4010-8eca-a87b15e8b804","direction":"outgoing","index":127327,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"4306c7ca-813e-47fc-93e0-c2c9c3684691","direction":"outgoing","index":127328,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"af225d5b-2883-4a1a-a127-7b931c07b654","direction":"outgoing","index":127329,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"26a35afb-6640-45c8-81df-e85162e8b2aa","direction":"outgoing","index":127330,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"aeeac484-fc61-4079-bd81-46b837648422","direction":"outgoing","index":127331,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"37e323d2-801f-454c-80d8-5249af54e3c4","direction":"outgoing","index":127332,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"2898ceca-ebc5-4709-b3c6-c6586d79f383","direction":"outgoing","index":127333,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"dd94277a-631d-4e38-a141-165ea9161ebd","direction":"outgoing","index":127334,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"9a4370e0-9139-4005-8452-78a4cd830713","direction":"outgoing","index":127335,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=355","verb":"get"},{"id":"f9a33e85-c4a1-4aec-be98-1d9978fa0343","direction":"outgoing","index":127336,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=355","verb":"get"},{"id":"634f3c76-9462-49b2-9ed9-2a950cdec3b3","direction":"outgoing","index":127337,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"c25dc7d7-8ebe-4932-9021-5f5f6247bed6","direction":"outgoing","index":127338,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.344-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a129489d-d2e4-4652-b845-1c8e97ee7306","direction":"outgoing","index":127339,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e4ce9032-b7b6-46a3-b034-9f3d00e49282","direction":"outgoing","index":127340,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3fb49540-9db4-4e00-aed4-27f94f324dbe","direction":"outgoing","index":127341,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39eab8ea-870b-4394-9873-60385b3cec87","direction":"outgoing","index":127342,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e856c55-2fa7-4ae0-9f04-3e764b036796","direction":"outgoing","index":127343,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88a0b95f-13a1-4b0d-9104-3528e59887da","direction":"outgoing","index":127344,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8960f694-1574-47ee-8624-db1193ac91de","direction":"outgoing","index":127345,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9aea4027-06e6-44ce-99b6-e9685649e378","direction":"outgoing","index":127346,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90199d10-8836-4fcd-8f33-0a3dbe1f1897\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca58d31f-bd13-4e52-8e8c-ccd67c9a700b","direction":"outgoing","index":127347,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"1eb2f1f9-274d-4cb6-b06a-53d405ea8f56","direction":"outgoing","index":127348,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92cfab3b-2cb4-4ace-b651-24583f5fe413\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92f2b147-527f-47fe-b421-7f00c76ea1e8","direction":"outgoing","index":127349,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=92cfab3b-2cb4-4ace-b651-24583f5fe413\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff6a92ac-8dd3-4946-8294-d950696414dd","direction":"outgoing","index":127350,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.463-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"bfb2ab2b-bf95-450d-8677-fea8fcb8e800","direction":"outgoing","index":127351,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"6bb0c000-5dbf-410f-97e5-ae8d18f93721","direction":"outgoing","index":127352,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"aa0ca634-6cef-4cfe-85bc-32c6e796ef4f","direction":"outgoing","index":127353,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"12abb917-9706-48d0-ab06-ec8b0894b3dc","direction":"outgoing","index":127354,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"d6a91efc-9440-42fc-9708-6691e753682e","direction":"outgoing","index":127355,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"4bb58906-4ed7-4fb5-9321-94ca3a8b4e16","direction":"outgoing","index":127356,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"76f8f5b6-7426-4b20-b2da-5501c8bab5fa","direction":"outgoing","index":127357,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"4f1882b6-15e0-400a-99b4-8a3361a6a6fe","direction":"outgoing","index":127358,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"c4b35c5e-790d-4f19-ab63-293777cbc1bb","direction":"outgoing","index":127359,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"ffa67c30-8911-4617-84ce-9977e72be26f","direction":"outgoing","index":127360,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"fe6f9aa6-fd42-436a-9a91-f4129d7ce625","direction":"outgoing","index":127361,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=907","verb":"get"},{"id":"bd8be0e1-442b-42c4-b93a-c95b57e11833","direction":"outgoing","index":127362,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=907","verb":"get"},{"id":"198c2e94-cf5d-4950-9dfe-d845e5158bb8","direction":"outgoing","index":127363,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"4f61254f-f6e0-461f-906a-e6cc41e325c9","direction":"outgoing","index":127364,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"4f01545b-7bc4-48dc-9c25-83dcee19bc8e","direction":"outgoing","index":127365,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"bc46f467-2c16-493b-bcc6-fe3290cb985e","direction":"outgoing","index":127366,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"fc733f5c-fdba-4c93-819d-6bcf4e22eeb3","direction":"outgoing","index":127367,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"5d6c4cf7-8d3b-4887-9ef1-bc97f04a8446","direction":"outgoing","index":127368,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"bc73279f-44cd-4589-92b2-090c95a6eec9","direction":"outgoing","index":127369,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"4526d10f-9d00-47c0-a0eb-c8aff4c432e0","direction":"outgoing","index":127370,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6efdf5b1-df92-4867-b40e-41d8264f26a2","direction":"outgoing","index":127371,"result_id":"7d14b740-86bd-4bcf-b2ad-37bbc76e046d","status":200,"timestamp":"2026-05-22T12:20:37.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:36.973-04:00"},{"id":"b51ca98e-d491-4249-b383-02ed2df3e8fd","created_at":"2026-05-22T12:20:38.116-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ea35eff2-581d-4ad5-8409-56fe6fabcb41","direction":"outgoing","index":127372,"result_id":"b51ca98e-d491-4249-b383-02ed2df3e8fd","status":200,"timestamp":"2026-05-22T12:20:38.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"f2d3a223-dab5-4d50-895e-2402ed415d24","direction":"outgoing","index":127373,"result_id":"b51ca98e-d491-4249-b383-02ed2df3e8fd","status":200,"timestamp":"2026-05-22T12:20:38.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"f227864a-7212-46f4-813e-be3553e40bb2","direction":"outgoing","index":127374,"result_id":"b51ca98e-d491-4249-b383-02ed2df3e8fd","status":200,"timestamp":"2026-05-22T12:20:38.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:38.116-04:00"},{"id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","created_at":"2026-05-22T12:20:39.177-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bf6463cf-ffe5-4249-967c-08ed5fff5c91","direction":"outgoing","index":127375,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"6a16cbd1-7001-435c-8428-45759925aa16","direction":"outgoing","index":127376,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e998a3f7-55ca-4a33-b93b-15a52f60dbff","direction":"outgoing","index":127377,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"80ebc43d-80d4-4af1-bcc3-010338304ae5","direction":"outgoing","index":127378,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e67ae009-0e35-48b3-b4ae-6c93ab21e653","direction":"outgoing","index":127379,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d35c0c28-5152-4999-9afe-89d2698fff9e","direction":"outgoing","index":127380,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"258686de-88e1-46da-b78d-4348795f6e3e","direction":"outgoing","index":127381,"result_id":"44a4866c-b423-48dd-bf1d-1221120ab9ca","status":200,"timestamp":"2026-05-22T12:20:39.287-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:39.177-04:00"},{"id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","created_at":"2026-05-22T12:20:40.317-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b600138a-3bb5-4100-8608-d0d67094622b","direction":"outgoing","index":127382,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"91ce66f0-10b0-4654-b536-5c689451955d","direction":"outgoing","index":127383,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"aabc011c-9f4a-4a93-86c4-795521300987","direction":"outgoing","index":127384,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c157769a-de2e-4061-b496-65bf43f42ec0","direction":"outgoing","index":127385,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"7ff2f275-d982-46c7-8b94-7fe37c838588","direction":"outgoing","index":127386,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"661536ed-860d-4661-ae34-e103fa3f97fe","direction":"outgoing","index":127387,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"8f90e923-d11b-43f9-9a3b-e28163ad385b","direction":"outgoing","index":127388,"result_id":"0bb3a667-9aec-4dd7-beee-e5362ac4e89b","status":200,"timestamp":"2026-05-22T12:20:40.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:40.317-04:00"},{"id":"f437c558-152a-4287-a69a-3c982a40bcdd","created_at":"2026-05-22T12:20:42.969-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c04ac7de-d4c6-44eb-a3f5-779a1a83c76c","direction":"outgoing","index":127389,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:42.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"9873a207-3482-4f52-9be7-8a3bd3a5b6a4","direction":"outgoing","index":127390,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:42.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"91f45124-5777-4917-b8da-059f027f8c83","direction":"outgoing","index":127391,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.013-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"43bc7419-c332-42da-b4b8-6fe54606df80","direction":"outgoing","index":127392,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"084eca16-0734-4811-a945-eba870bea082","direction":"outgoing","index":127393,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44041333-859c-4786-b0dd-358f7224fc0e","direction":"outgoing","index":127394,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7937fb77-3799-4ec1-b341-dc703e954475","direction":"outgoing","index":127395,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e037417-6584-4b1f-8c3a-77573e82e30c","direction":"outgoing","index":127396,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af402127-d08f-44a1-9a99-84fedb493d04","direction":"outgoing","index":127397,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13e0bd9a-6da5-4958-9a29-d57f65e1f1da","direction":"outgoing","index":127398,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d064175-929e-41e3-a132-c8743ff0ce90","direction":"outgoing","index":127399,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"80316d42-a400-49d1-b9a0-fc426e3ef559","direction":"outgoing","index":127400,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=12e75da2-501f-48f9-8f6c-33574c8e73ac\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e86fc221-ca12-4f46-931f-82341b77a9d0","direction":"outgoing","index":127401,"result_id":"f437c558-152a-4287-a69a-3c982a40bcdd","status":200,"timestamp":"2026-05-22T12:20:43.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:42.969-04:00"},{"id":"4796a2bf-480b-4836-9afc-75fde9952eb8","created_at":"2026-05-22T12:20:45.666-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"053f75ba-37e0-40b5-ae6b-4c0ad4af957a","direction":"outgoing","index":127402,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=sdoh\u0026patient=85","verb":"get"},{"id":"46f68a7d-b776-4e42-a5b0-e45128193f11","direction":"outgoing","index":127403,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"07c74be3-6961-49cc-b44f-2eeeba44a734","direction":"outgoing","index":127404,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"f7661c1c-fdde-4528-a464-e7d0cf5a4d5c","direction":"outgoing","index":127405,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b13e30d-edca-4b7e-b2b5-8032b13ff777","direction":"outgoing","index":127406,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18033acc-440a-4e50-b4c3-a4e81c52b1af","direction":"outgoing","index":127407,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63c7f53d-5c99-4395-b341-79ccfd14e9fc","direction":"outgoing","index":127408,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"602486e5-8c16-451e-84e1-4f86b0d4538e","direction":"outgoing","index":127409,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa9bbe49-24b1-49db-8cf8-f24a40dc231f","direction":"outgoing","index":127410,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"21ddcc75-5089-4676-b055-76bfd635f476","direction":"outgoing","index":127411,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad4bf614-f2a8-473f-a7a8-82c1c986d50b","direction":"outgoing","index":127412,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3866787b-7ce3-4c1f-826f-f24dd0fc5e43","direction":"outgoing","index":127413,"result_id":"4796a2bf-480b-4836-9afc-75fde9952eb8","status":200,"timestamp":"2026-05-22T12:20:45.798-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c77ebcbc-29ac-400f-9ef6-aa22e6e5b88d\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:45.666-04:00"},{"id":"0e940f81-6062-411e-8022-b82867aa5523","created_at":"2026-05-22T12:20:45.921-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d832a2c-92a5-4f1d-84a0-f01126892c96","direction":"outgoing","index":127414,"result_id":"0e940f81-6062-411e-8022-b82867aa5523","status":200,"timestamp":"2026-05-22T12:20:45.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:45.921-04:00"},{"id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","created_at":"2026-05-22T12:20:57.882-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b190a1f6-0ff7-4498-8542-dd99ca628ffd","direction":"outgoing","index":127415,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=85","verb":"get"},{"id":"53bc00ba-272a-4fec-bf8a-122a3a9c54bd","direction":"outgoing","index":127416,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=85","verb":"get"},{"id":"fde3896b-ad36-475b-b992-58e29de925fd","direction":"outgoing","index":127417,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=85","verb":"get"},{"id":"bad2f42e-c995-4d67-bf7f-a8c5b38306f9","direction":"outgoing","index":127418,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=85","verb":"get"},{"id":"30e5fdb7-bad9-40c5-b953-9bc20ed7293c","direction":"outgoing","index":127419,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=treatment-intervention-preference\u0026patient=85","verb":"get"},{"id":"5f717425-692f-4d55-966c-45de1c65e351","direction":"outgoing","index":127420,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=care-experience-preference\u0026patient=85","verb":"get"},{"id":"f2157092-37e8-4997-9eda-ab1df4fbe8ae","direction":"outgoing","index":127421,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"d4d4b0fc-aacc-4409-9a86-107e5492b2f8","direction":"outgoing","index":127422,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d8af1adb-80c3-41cd-9177-3839415a913d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6592c1ca-61e7-4483-8c4e-ccac9d41320c","direction":"outgoing","index":127423,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:57.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d8af1adb-80c3-41cd-9177-3839415a913d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f093a0b8-88a2-40f5-97c1-7224c767dbd2","direction":"outgoing","index":127424,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.002-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d8af1adb-80c3-41cd-9177-3839415a913d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e9f8d1d-a782-4b29-8dd5-4d2e24546691","direction":"outgoing","index":127425,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d8af1adb-80c3-41cd-9177-3839415a913d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4ebcf4e8-931f-4009-8416-3e7241ead273","direction":"outgoing","index":127426,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"7bed7c56-83e0-4f74-95fc-275a27c225ec","direction":"outgoing","index":127427,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.040-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"681a7f15-b401-4af3-ae94-76089965ae3e","direction":"outgoing","index":127428,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"4000ef39-3d98-4a11-b638-31110e79d526","direction":"outgoing","index":127429,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"b154f537-762b-483f-b8ea-28695c3fa022","direction":"outgoing","index":127430,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"f51f2eca-85c6-4626-9ffe-c4510c9d8f4d","direction":"outgoing","index":127431,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"d41ddf18-4e9c-4d07-bfbc-4ca2eb64b326","direction":"outgoing","index":127432,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"9f8d88a1-0af3-4a1d-8652-1b36b63de585","direction":"outgoing","index":127433,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"ed9bc5a9-e7d3-4b0c-93b4-60fcba1ade66","direction":"outgoing","index":127434,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=355","verb":"get"},{"id":"7be9e3ab-a548-4bd3-9362-3a57914d69fb","direction":"outgoing","index":127435,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=355","verb":"get"},{"id":"71145c15-3f53-4e23-9afd-e0373929d35b","direction":"outgoing","index":127436,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=355","verb":"get"},{"id":"5af4bffc-e1bf-482a-afeb-03a5d3fb6e8e","direction":"outgoing","index":127437,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=355","verb":"get"},{"id":"f441aa17-783d-4049-a825-7dbeac872aac","direction":"outgoing","index":127438,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=treatment-intervention-preference\u0026patient=355","verb":"get"},{"id":"633a3e50-d993-4d85-890e-fff94c87f9aa","direction":"outgoing","index":127439,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=care-experience-preference\u0026patient=355","verb":"get"},{"id":"7424ceec-aac6-4723-a3d6-f76ffd916706","direction":"outgoing","index":127440,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"bd4d5e78-eb2f-455b-b5a9-5ace11ef0115","direction":"outgoing","index":127441,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8a091dd7-ef9c-4800-9e76-de268b08da16","direction":"outgoing","index":127442,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1b66fdd-9113-46b0-8c51-292b3aff5135","direction":"outgoing","index":127443,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e1ec865-245d-4126-a022-34177dae2b6a","direction":"outgoing","index":127444,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a008ec91-ce94-46f5-8aaa-330d0a9a8853","direction":"outgoing","index":127445,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"814a4365-e177-4e39-8680-3be58664b1df","direction":"outgoing","index":127446,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"647b0e3e-af60-45b4-86c3-a056d8e98442","direction":"outgoing","index":127447,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83690901-f764-443f-aaa9-8248d7d2386f","direction":"outgoing","index":127448,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"10788702-50ef-4006-a091-1d94930fcaf5","direction":"outgoing","index":127449,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fe9817-51c9-4a2a-8c40-324e45cc3959\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a503563-8298-496b-ba08-d04dbf979265","direction":"outgoing","index":127450,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"309fc2d9-ccf9-41fd-9f2b-3c9829823dc9","direction":"outgoing","index":127451,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=114e132c-a5ac-45b8-95f0-caa5161e830e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a283867-2f01-452c-97e6-3b027108373a","direction":"outgoing","index":127452,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=114e132c-a5ac-45b8-95f0-caa5161e830e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee5a150f-55cb-4a7a-bb4d-193d8c6ac3b8","direction":"outgoing","index":127453,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"9a16e8bb-8db5-465c-968c-6ef873d0d6d4","direction":"outgoing","index":127454,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"89ee1060-ea4f-4a08-a196-ae4cd252aa4e","direction":"outgoing","index":127455,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"ac423277-e24e-4019-b33e-d4e82d989c45","direction":"outgoing","index":127456,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"3dbac1f9-c952-417b-b37e-c983ef1c5e42","direction":"outgoing","index":127457,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"de669127-e586-4caa-bb58-e9f0027f24e5","direction":"outgoing","index":127458,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"94d27aed-af12-40ab-b866-f79b5fd1ada5","direction":"outgoing","index":127459,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"513a5113-1bfc-455b-b16f-cdbeb4eb20c1","direction":"outgoing","index":127460,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=907","verb":"get"},{"id":"2d96987d-a978-44de-a7c3-ba5017f08009","direction":"outgoing","index":127461,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=907","verb":"get"},{"id":"61d3faf3-5ba3-4bf6-97a8-d9369b4f10b9","direction":"outgoing","index":127462,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=907","verb":"get"},{"id":"664ba9c0-2a60-4756-8ab4-b975434eac05","direction":"outgoing","index":127463,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=907","verb":"get"},{"id":"49c22433-3da9-487d-83e5-6559b7a45129","direction":"outgoing","index":127464,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=treatment-intervention-preference\u0026patient=907","verb":"get"},{"id":"f2f3f29f-8f00-48ee-b2ac-22d59237d426","direction":"outgoing","index":127465,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=care-experience-preference\u0026patient=907","verb":"get"},{"id":"a8a15381-1f16-4c76-b819-97466c6b3593","direction":"outgoing","index":127466,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=907","verb":"get"},{"id":"95079193-fc62-4639-8211-72b230d24c33","direction":"outgoing","index":127467,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"ef907bef-aa65-4bb2-97e5-5b727f716d6f","direction":"outgoing","index":127468,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"7541ea08-b6af-4066-8953-4c5ff30b6c4d","direction":"outgoing","index":127469,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"12f3c016-e7aa-474a-a288-2c11b742f5e2","direction":"outgoing","index":127470,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.586-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"f2b208b8-c6bc-412d-8beb-d3e6d94c15ec","direction":"outgoing","index":127471,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"},{"id":"18dd8058-e440-4101-ab1e-697f5ffb8505","direction":"outgoing","index":127472,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"c185a62e-858a-4400-9f6f-4c9bd619f19e","direction":"outgoing","index":127473,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"7d024f98-bfcd-4ba9-9e3a-211057ee0732","direction":"outgoing","index":127474,"result_id":"932f998a-2b04-46e8-8de8-4e8944ce7cd7","status":200,"timestamp":"2026-05-22T12:20:58.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:20:57.882-04:00"},{"id":"1a788155-9486-4b42-9ab2-0965ae730d62","created_at":"2026-05-22T12:21:22.589-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#401201003)","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#449868002)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#741062008)","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.performer[0]: A Reference without an actual reference or identifier should have a display","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:22.589-04:00"},{"id":"665d46c6-bd5e-4cff-8c34-1de5dbfb6ed3","created_at":"2026-05-22T12:21:23.381-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:23.381-04:00"},{"id":"d40e7dfd-a44e-4ad5-aa58-9552006c6337","created_at":"2026-05-22T12:21:23.501-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"aedd26dc-389c-497f-a365-9deb027a6025","direction":"outgoing","index":127475,"result_id":"d40e7dfd-a44e-4ad5-aa58-9552006c6337","status":200,"timestamp":"2026-05-22T12:21:23.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:23.501-04:00"},{"id":"97714cfb-0029-4f4d-813d-a91d41155e5e","created_at":"2026-05-22T12:21:23.546-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_simple_observation","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:23.546-04:00"},{"id":"03c97b3b-1754-4dde-a789-860d9d815f96","created_at":"2026-05-22T12:21:24.436-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6a4d425c-8c41-4192-a801-2547b31c2de8","direction":"outgoing","index":127476,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.442-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=85","verb":"get"},{"id":"37e8c5a3-3645-45bc-8830-ca836972021e","direction":"outgoing","index":127477,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"871d8452-5028-4c97-bd60-a8eaa083c252","direction":"outgoing","index":127478,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=Patient/85","verb":"get"},{"id":"e0d36063-edc4-4046-9f2d-117caa918619","direction":"outgoing","index":127479,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C75773-2\u0026patient=85","verb":"get"},{"id":"c125d872-1adf-43de-9164-cbdeec2fd1f6","direction":"outgoing","index":127480,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=355","verb":"get"},{"id":"8264083b-7fb8-43fd-9842-07aa5b4bfcb7","direction":"outgoing","index":127481,"result_id":"03c97b3b-1754-4dde-a789-860d9d815f96","status":200,"timestamp":"2026-05-22T12:21:24.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:24.436-04:00"},{"id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","created_at":"2026-05-22T12:21:25.351-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"45294566-8efc-456f-a135-03bb9491b0e8","direction":"outgoing","index":127482,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d24c2d90-e245-461a-b9e1-a20f3782291c","direction":"outgoing","index":127483,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d2bbb821-7632-431f-a3bf-0d4418333ce7","direction":"outgoing","index":127484,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e3987ae1-54e7-4b2d-8a54-f6ef51d79712","direction":"outgoing","index":127485,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"53db7689-f1a8-4643-bb9d-30746afdbb4a","direction":"outgoing","index":127486,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.423-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"25671190-0c08-4828-9c5c-44476b968ec7","direction":"outgoing","index":127487,"result_id":"b8351d79-f9df-4016-a6ac-4fb9414770d9","status":200,"timestamp":"2026-05-22T12:21:25.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:25.351-04:00"},{"id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","created_at":"2026-05-22T12:21:26.268-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"22bdfcae-a153-4305-b4eb-9590afa96aa1","direction":"outgoing","index":127488,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6842ba2f-95c1-409e-84cc-3bee1687b08e","direction":"outgoing","index":127489,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4222eb09-0d51-4189-a866-7a30a04a6668","direction":"outgoing","index":127490,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"14bb836f-2311-4280-b942-035dc67cc922","direction":"outgoing","index":127491,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d5aafc94-e8aa-4edf-b677-3a7ae212a9ec","direction":"outgoing","index":127492,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"03d2fd38-adb3-4fec-b72d-b38718f2bc01","direction":"outgoing","index":127493,"result_id":"0c83feb8-8c97-440a-877c-a0f89764a2ed","status":200,"timestamp":"2026-05-22T12:21:26.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:26.268-04:00"},{"id":"a97f6683-4845-46ab-b8cf-227aaad0de66","created_at":"2026-05-22T12:21:26.839-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"dc1ebb78-074d-45e7-97f7-a0354658639c","direction":"outgoing","index":127494,"result_id":"a97f6683-4845-46ab-b8cf-227aaad0de66","status":200,"timestamp":"2026-05-22T12:21:26.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85\u0026status=final","verb":"get"},{"id":"8e80a6c3-d772-4734-9173-0a2e8d0367f7","direction":"outgoing","index":127495,"result_id":"a97f6683-4845-46ab-b8cf-227aaad0de66","status":200,"timestamp":"2026-05-22T12:21:26.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85\u0026status=final","verb":"get"},{"id":"436c660c-6a89-404a-b3b9-04432b0ab90e","direction":"outgoing","index":127496,"result_id":"a97f6683-4845-46ab-b8cf-227aaad0de66","status":200,"timestamp":"2026-05-22T12:21:26.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:26.839-04:00"},{"id":"91a183e8-c4fc-48ca-9a4d-d552de502778","created_at":"2026-05-22T12:21:27.253-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9ed3815f-9221-4f35-ad94-98ac979449ce","direction":"outgoing","index":127497,"result_id":"91a183e8-c4fc-48ca-9a4d-d552de502778","status":200,"timestamp":"2026-05-22T12:21:27.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=treatment-intervention-preference\u0026patient=85","verb":"get"},{"id":"67644fb9-c5e5-48cf-b139-9f5993dbba35","direction":"outgoing","index":127498,"result_id":"91a183e8-c4fc-48ca-9a4d-d552de502778","status":200,"timestamp":"2026-05-22T12:21:27.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:27.253-04:00"},{"id":"0a3b15b3-5eee-4a61-b78a-4bdde5c5c1de","created_at":"2026-05-22T12:21:27.563-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d337e05d-8477-488c-b43b-6c32f53f58b8","direction":"outgoing","index":127499,"result_id":"0a3b15b3-5eee-4a61-b78a-4bdde5c5c1de","status":200,"timestamp":"2026-05-22T12:21:27.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85","verb":"get"},{"id":"09d6d45b-20c7-4136-98d0-f32d2e387233","direction":"outgoing","index":127500,"result_id":"0a3b15b3-5eee-4a61-b78a-4bdde5c5c1de","status":200,"timestamp":"2026-05-22T12:21:27.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:27.563-04:00"},{"id":"b6a6b99f-b9cf-4a93-ba69-d4d297ec627f","created_at":"2026-05-22T12:21:27.723-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"15c96e98-26ae-468b-b4da-e9911d0b51c5","direction":"outgoing","index":127501,"result_id":"b6a6b99f-b9cf-4a93-ba69-d4d297ec627f","status":200,"timestamp":"2026-05-22T12:21:27.726-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:27.723-04:00"},{"id":"622216b6-316c-421e-9be2-c7f360f41c25","created_at":"2026-05-22T12:21:28.206-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"22b8d445-367e-425c-afb3-e022d94866f8","direction":"outgoing","index":127502,"result_id":"622216b6-316c-421e-9be2-c7f360f41c25","status":200,"timestamp":"2026-05-22T12:21:28.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=85","verb":"get"},{"id":"950aa000-8dfa-45fa-8e2d-43a3ceba0d19","direction":"outgoing","index":127503,"result_id":"622216b6-316c-421e-9be2-c7f360f41c25","status":200,"timestamp":"2026-05-22T12:21:28.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=355","verb":"get"},{"id":"453cf05b-9f05-4a78-bf48-f351a63d3d09","direction":"outgoing","index":127504,"result_id":"622216b6-316c-421e-9be2-c7f360f41c25","status":200,"timestamp":"2026-05-22T12:21:28.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:28.206-04:00"},{"id":"22895e9a-5051-4b9c-83ad-c7abeca961c4","created_at":"2026-05-22T12:21:28.313-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:28.313-04:00"},{"id":"6a2c13a3-9619-41ed-9c6a-6ef80329231b","created_at":"2026-05-22T12:21:28.321-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:28.321-04:00"},{"id":"23e9df5c-7493-4de7-9dcd-556a19a48aa1","created_at":"2026-05-22T12:21:28.325-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:28.325-04:00"},{"id":"ddac8336-d594-4c81-84fc-90d719ea029e","created_at":"2026-05-22T12:21:28.326-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:28.326-04:00"},{"id":"2437e085-8531-42cd-9b07-fba387d3a0ca","created_at":"2026-05-22T12:21:29.196-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"84711530-a769-4657-ad7e-fa5b334c7f22","direction":"outgoing","index":127505,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=85","verb":"get"},{"id":"dce575ef-614d-4c0c-b876-e44093c90dc6","direction":"outgoing","index":127506,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"3e6d0499-280a-4053-848e-6bbdda1c0af3","direction":"outgoing","index":127507,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=Patient/85","verb":"get"},{"id":"be81bd09-b8f9-4d63-bf10-7be8b60c96ea","direction":"outgoing","index":127508,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C95541-9\u0026patient=85","verb":"get"},{"id":"2c97aa7c-7a0e-4cde-a04f-5c424293879c","direction":"outgoing","index":127509,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=355","verb":"get"},{"id":"54416dd8-21cd-4bec-8324-ceb5da82a84f","direction":"outgoing","index":127510,"result_id":"2437e085-8531-42cd-9b07-fba387d3a0ca","status":200,"timestamp":"2026-05-22T12:21:29.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:29.196-04:00"},{"id":"f7512520-fd0f-42b7-88f6-996d75682d3b","created_at":"2026-05-22T12:21:30.070-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"992ec08f-f002-427b-b197-05a792ec4b19","direction":"outgoing","index":127511,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6c5dc53d-d9ba-490b-8718-5b6a0f197fdd","direction":"outgoing","index":127512,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9b0d0ab5-f919-48d4-ab7f-abd239cc6e82","direction":"outgoing","index":127513,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e413c46e-04d9-4cbe-88f1-71c2f154a206","direction":"outgoing","index":127514,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"15bfaa95-8d97-4bfb-a633-76607f28af39","direction":"outgoing","index":127515,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5fd5be4c-c20c-4fe8-898f-46ac147973a6","direction":"outgoing","index":127516,"result_id":"f7512520-fd0f-42b7-88f6-996d75682d3b","status":200,"timestamp":"2026-05-22T12:21:30.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:30.070-04:00"},{"id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","created_at":"2026-05-22T12:21:30.966-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7fbeedd9-594f-4b77-b726-891c6837bbc4","direction":"outgoing","index":127517,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:30.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6b2e5201-64b6-4055-9eb4-f8a35e1eca4b","direction":"outgoing","index":127518,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:30.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3b860882-a246-46a2-a744-0253f71881a9","direction":"outgoing","index":127519,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:31.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"02c6b7b5-95f3-4633-8722-a4135c1f4df1","direction":"outgoing","index":127520,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:31.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c9453b36-aaf9-48ea-969e-270ac3474a44","direction":"outgoing","index":127521,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:31.027-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1a61b349-b3db-4662-8614-303592d02789","direction":"outgoing","index":127522,"result_id":"204d2f4a-79d6-40d9-ad13-6d7392f726da","status":200,"timestamp":"2026-05-22T12:21:31.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:30.966-04:00"},{"id":"b634bc0f-4f09-46a8-afec-f85518287177","created_at":"2026-05-22T12:21:31.439-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b93e0199-ab67-4e69-9435-f432a1e6fa63","direction":"outgoing","index":127523,"result_id":"b634bc0f-4f09-46a8-afec-f85518287177","status":200,"timestamp":"2026-05-22T12:21:31.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85\u0026status=final","verb":"get"},{"id":"ebd06f0e-5ceb-47ca-bece-c31992154590","direction":"outgoing","index":127524,"result_id":"b634bc0f-4f09-46a8-afec-f85518287177","status":200,"timestamp":"2026-05-22T12:21:31.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85\u0026status=final","verb":"get"},{"id":"83c12361-db6f-4643-9cd4-1107a6c3deab","direction":"outgoing","index":127525,"result_id":"b634bc0f-4f09-46a8-afec-f85518287177","status":200,"timestamp":"2026-05-22T12:21:31.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:31.439-04:00"},{"id":"136a2123-0496-4fb7-8d1f-91469679f7e9","created_at":"2026-05-22T12:21:31.770-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"71e4308a-8afd-4b2d-8dca-52a910650886","direction":"outgoing","index":127526,"result_id":"136a2123-0496-4fb7-8d1f-91469679f7e9","status":200,"timestamp":"2026-05-22T12:21:31.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=care-experience-preference\u0026patient=85","verb":"get"},{"id":"a0082684-e696-497c-9e70-c78f4cdc8722","direction":"outgoing","index":127527,"result_id":"136a2123-0496-4fb7-8d1f-91469679f7e9","status":200,"timestamp":"2026-05-22T12:21:31.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:31.770-04:00"},{"id":"3618e0ac-470c-4169-a191-21d696a27a18","created_at":"2026-05-22T12:21:32.059-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4f6ed1d9-e143-44d3-ac58-d7c8a7a9e544","direction":"outgoing","index":127528,"result_id":"3618e0ac-470c-4169-a191-21d696a27a18","status":200,"timestamp":"2026-05-22T12:21:32.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85","verb":"get"},{"id":"92c7aa26-ac69-4ee7-a672-1e5739462cc9","direction":"outgoing","index":127529,"result_id":"3618e0ac-470c-4169-a191-21d696a27a18","status":200,"timestamp":"2026-05-22T12:21:32.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.059-04:00"},{"id":"cd7a2421-2ffe-4eab-9ed0-22d0cc04ca45","created_at":"2026-05-22T12:21:32.201-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a11d3a43-d0f7-4b14-9c00-e5b3c9f0d335","direction":"outgoing","index":127530,"result_id":"cd7a2421-2ffe-4eab-9ed0-22d0cc04ca45","status":200,"timestamp":"2026-05-22T12:21:32.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.201-04:00"},{"id":"953f1498-1e7e-40bb-a696-08b3470ba95f","created_at":"2026-05-22T12:21:32.624-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2f34743b-db12-4ef1-a3f1-5e79e090f2ad","direction":"outgoing","index":127531,"result_id":"953f1498-1e7e-40bb-a696-08b3470ba95f","status":200,"timestamp":"2026-05-22T12:21:32.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=85","verb":"get"},{"id":"d2824592-43b4-4890-9c5c-f4bdad267bed","direction":"outgoing","index":127532,"result_id":"953f1498-1e7e-40bb-a696-08b3470ba95f","status":200,"timestamp":"2026-05-22T12:21:32.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=355","verb":"get"},{"id":"e34b9f1d-2a9c-44ea-bda2-b811bb7c507f","direction":"outgoing","index":127533,"result_id":"953f1498-1e7e-40bb-a696-08b3470ba95f","status":200,"timestamp":"2026-05-22T12:21:32.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.624-04:00"},{"id":"b5bacb41-9852-4196-b9ff-78adaebc2609","created_at":"2026-05-22T12:21:32.742-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.742-04:00"},{"id":"61170596-4761-423b-aacd-bf22c0fb5635","created_at":"2026-05-22T12:21:32.748-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.748-04:00"},{"id":"f4bb9e9d-58ac-4f77-a8b8-bdb2332705c4","created_at":"2026-05-22T12:21:32.750-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.750-04:00"},{"id":"62ea4205-fba2-43ce-92e5-9e35ab8297b7","created_at":"2026-05-22T12:21:32.751-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_care_experience_preference","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:32.751-04:00"},{"id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","created_at":"2026-05-22T12:21:33.506-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6cf770e7-937a-46ec-876a-6a15e6e8babd","direction":"outgoing","index":127534,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"88867e5b-0430-4ced-a06c-c5f3d5c00ab0","direction":"outgoing","index":127535,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"3bdb494a-3c9f-48c6-9b7b-86a7fe3ab2af","direction":"outgoing","index":127536,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"62fd19ea-4a59-4442-97d0-f5b0278f9209","direction":"outgoing","index":127537,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"3cfc92a4-c1d1-482e-8b4c-43306ad93ee0","direction":"outgoing","index":127538,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"7a5a5194-5a5f-4441-813a-cf62769553d9","direction":"outgoing","index":127539,"result_id":"00ff44d2-67a3-4f92-8c0c-9264b09b70e3","status":200,"timestamp":"2026-05-22T12:21:33.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:33.506-04:00"},{"id":"6f96af44-df2e-474f-8067-34833e882ecb","created_at":"2026-05-22T12:21:36.270-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"38ca239f-31a1-4d4b-9435-69becee09d17","direction":"outgoing","index":127540,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"28663e15-6443-46d9-b6e5-f718da3cd351","direction":"outgoing","index":127541,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"818ffa52-bab0-4105-99af-d2ede75c00a6","direction":"outgoing","index":127542,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cb9ce4fa-759b-4031-8cc7-1e8e7b0eecb1","direction":"outgoing","index":127543,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"045d63b5-21cc-4da6-9cf0-a84b0b5e70e7","direction":"outgoing","index":127544,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f8ddb117-0d93-45ac-b157-f3d393ecdff5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c75b28a7-4c2d-49be-9618-639c552c636e","direction":"outgoing","index":127545,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f8ddb117-0d93-45ac-b157-f3d393ecdff5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a6c351b-6099-4507-aae3-07b1837bced7","direction":"outgoing","index":127546,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5b4a8cea-d41f-40d2-99cc-70d22b2f7511","direction":"outgoing","index":127547,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47b86fe5-7d86-45df-b32d-55c8d418b31d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65102df7-135c-441d-bb3b-889fe35109c3","direction":"outgoing","index":127548,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47b86fe5-7d86-45df-b32d-55c8d418b31d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dbe17196-6e0f-4111-9910-9dc59d72da1e","direction":"outgoing","index":127549,"result_id":"6f96af44-df2e-474f-8067-34833e882ecb","status":200,"timestamp":"2026-05-22T12:21:36.409-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:36.270-04:00"},{"id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","created_at":"2026-05-22T12:21:37.336-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fd434e76-af75-43f9-851d-f2c3c3a82873","direction":"outgoing","index":127550,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"959da291-5af6-459a-b11f-3a41b0547804","direction":"outgoing","index":127551,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"88365fc6-fe93-4b5f-b9f6-f134e9fc7fab","direction":"outgoing","index":127552,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a9b7eb3b-2e8a-4639-9123-d9201a4aa991","direction":"outgoing","index":127553,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c08c9491-b26b-4479-93df-6173ef2f19bf","direction":"outgoing","index":127554,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"577e5f25-da15-4cd9-81fc-b3aca1bc9709","direction":"outgoing","index":127555,"result_id":"6a2e7e42-ceb8-46b8-bb4b-76342bf3bcc4","status":200,"timestamp":"2026-05-22T12:21:37.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:37.336-04:00"},{"id":"e21498c5-a910-4794-a20c-ab154d733251","created_at":"2026-05-22T12:21:40.537-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b1a3d120-78b3-48d6-9b33-428e40ed9e24","direction":"outgoing","index":127556,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1a80b8a3-5887-46b1-83df-f12e835df550","direction":"outgoing","index":127557,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"97c2927a-a594-47d5-b52d-a18a6b76704f","direction":"outgoing","index":127558,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83b4de92-0ff7-47ad-b1dd-3f51a32d54c7","direction":"outgoing","index":127559,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"c2d9ad97-6efc-414b-b5fb-3202233216d2","direction":"outgoing","index":127560,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f090a702-2fcf-4526-872e-b27d28fe0087","direction":"outgoing","index":127561,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c2e3dc2-8416-46a6-a2a2-0eb6555ce494","direction":"outgoing","index":127562,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"95dc8648-967a-4aca-aeec-18d822a590d7","direction":"outgoing","index":127563,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cabdd2ce-6d4c-43b7-be0a-c1a2dd23b49f","direction":"outgoing","index":127564,"result_id":"e21498c5-a910-4794-a20c-ab154d733251","status":200,"timestamp":"2026-05-22T12:21:40.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:40.537-04:00"},{"id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","created_at":"2026-05-22T12:21:42.724-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8b4723f2-2a55-4236-a90b-db0760894dbf","direction":"outgoing","index":127565,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"fb2dffeb-b3f1-4618-a18b-ebfa2461bd21","direction":"outgoing","index":127566,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2c5025c-5e63-457b-90d1-87f0fa456c21","direction":"outgoing","index":127567,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7091b47-2e73-41b0-8750-f324ecc9cc0e","direction":"outgoing","index":127568,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a757e247-2381-4dc5-a5ab-13d8aa36a758","direction":"outgoing","index":127569,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"68f762fb-1c7b-4fa3-b6e4-c12d50690a9f","direction":"outgoing","index":127570,"result_id":"d14ff62d-2534-4b2d-a3bb-d7db37dc5d1d","status":200,"timestamp":"2026-05-22T12:21:42.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:42.724-04:00"},{"id":"6a324aff-7641-4892-9931-ea77148114b2","created_at":"2026-05-22T12:21:44.916-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e64aa91a-1abf-411d-a9c4-94950b6557a0","direction":"outgoing","index":127571,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f7dc98ec-dfc1-4ff7-a459-63affcef80fb","direction":"outgoing","index":127572,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac1f6fb9-9e1f-4e1b-8def-7f5f752d0e54","direction":"outgoing","index":127573,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ea75c14-04ab-4a80-877e-190c8ff8e9db","direction":"outgoing","index":127574,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"c71c612a-c387-4ef2-988d-35ee0b446e6c","direction":"outgoing","index":127575,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50dcabdb-7528-4162-80cb-f7da71ef981c","direction":"outgoing","index":127576,"result_id":"6a324aff-7641-4892-9931-ea77148114b2","status":200,"timestamp":"2026-05-22T12:21:44.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:44.916-04:00"},{"id":"bb63da0a-e438-42b3-bfd8-2c4e84f69711","created_at":"2026-05-22T12:21:45.119-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ced105e6-bd71-4000-9abb-6593e8119ace","direction":"outgoing","index":127577,"result_id":"bb63da0a-e438-42b3-bfd8-2c4e84f69711","status":200,"timestamp":"2026-05-22T12:21:45.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.119-04:00"},{"id":"f81e97d4-61ec-4da2-9e81-e08e271406ef","created_at":"2026-05-22T12:21:45.571-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"18872c15-c3d2-4846-843a-c83aa69381b1","direction":"outgoing","index":127578,"result_id":"f81e97d4-61ec-4da2-9e81-e08e271406ef","status":200,"timestamp":"2026-05-22T12:21:45.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85","verb":"get"},{"id":"5a8c34d9-1716-4560-857c-d5074f75aa5b","direction":"outgoing","index":127579,"result_id":"f81e97d4-61ec-4da2-9e81-e08e271406ef","status":200,"timestamp":"2026-05-22T12:21:45.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355","verb":"get"},{"id":"3fa805cb-017f-4d1f-9df2-8c6b848b0d23","direction":"outgoing","index":127580,"result_id":"f81e97d4-61ec-4da2-9e81-e08e271406ef","status":200,"timestamp":"2026-05-22T12:21:45.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.571-04:00"},{"id":"2e95c4e8-7398-4ca9-99be-b0e4caaf5ed1","created_at":"2026-05-22T12:21:45.700-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.700-04:00"},{"id":"d081ebd3-6f85-4eca-bc7e-b89fa048d62c","created_at":"2026-05-22T12:21:45.711-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.711-04:00"},{"id":"ccae0a5f-8b15-4354-b04a-dbed7b58748b","created_at":"2026-05-22T12:21:45.713-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.713-04:00"},{"id":"d725127f-1ab2-4649-bd21-bb8b2e6ab180","created_at":"2026-05-22T12:21:45.714-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_heart_rate","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:45.714-04:00"},{"id":"1a22b920-b079-46cd-a05c-71f877a416ad","created_at":"2026-05-22T12:21:46.592-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f4a76a0c-5895-4ade-b82d-552b3c3175bf","direction":"outgoing","index":127581,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"3560ef19-c6fe-4034-9396-d081a486bd5c","direction":"outgoing","index":127582,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"73551707-d9a1-4396-8d0c-127049a1b947","direction":"outgoing","index":127583,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"2b82ae8e-cc95-43c6-96ef-159e6c77501b","direction":"outgoing","index":127584,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.664-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"ffb7a1d1-7465-4b99-9fb5-074396d96bfd","direction":"outgoing","index":127585,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"6cc18c60-908e-464c-8996-a0a412d05d45","direction":"outgoing","index":127586,"result_id":"1a22b920-b079-46cd-a05c-71f877a416ad","status":200,"timestamp":"2026-05-22T12:21:46.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:46.592-04:00"},{"id":"7a49907e-5a36-4968-899a-ecc16e951adb","created_at":"2026-05-22T12:21:49.422-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e0954c42-6bf4-4533-9689-ff9009ba6014","direction":"outgoing","index":127587,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8595ad6d-fa8f-4e90-9c5a-05042554a5da","direction":"outgoing","index":127588,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3c77462d-6a60-4483-987c-e8c8da01a79d","direction":"outgoing","index":127589,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f37d89c9-3d57-4ff7-a357-e51781642421","direction":"outgoing","index":127590,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"36ad3b12-631a-4f7e-b1c8-5bf88b0d5d83","direction":"outgoing","index":127591,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e92ab684-78db-40e2-b526-0011c9dfba61\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1a50e35-1712-4bbe-b42a-09ef57147747","direction":"outgoing","index":127592,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e92ab684-78db-40e2-b526-0011c9dfba61\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d27447c-51aa-48ed-85f1-2ea58d4feff7","direction":"outgoing","index":127593,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"31eff23c-6496-4f26-a340-d73a098317df","direction":"outgoing","index":127594,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c60a8383-5d38-4176-826c-d62f82ba6e65\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a328171-8707-4044-b1f4-7f675158970b","direction":"outgoing","index":127595,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c60a8383-5d38-4176-826c-d62f82ba6e65\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b61661c-f422-4cf2-8eb9-1e52737479c9","direction":"outgoing","index":127596,"result_id":"7a49907e-5a36-4968-899a-ecc16e951adb","status":200,"timestamp":"2026-05-22T12:21:49.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:49.422-04:00"},{"id":"606aae01-3f6a-45b3-b432-8d126fcde485","created_at":"2026-05-22T12:21:50.389-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"af27b831-0deb-4883-b80e-eaba1b6f61e9","direction":"outgoing","index":127597,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cb40869b-aee7-49b6-816a-f79741f5f034","direction":"outgoing","index":127598,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ee85b451-595b-4010-9597-a39a2eb02942","direction":"outgoing","index":127599,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"adc6eb82-9459-4ad7-8ef3-641e1cd52a57","direction":"outgoing","index":127600,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"26580bfc-3d8b-47ea-a5b3-4f068e141265","direction":"outgoing","index":127601,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ff77e6f4-0289-4f95-a82a-80f57adc86db","direction":"outgoing","index":127602,"result_id":"606aae01-3f6a-45b3-b432-8d126fcde485","status":200,"timestamp":"2026-05-22T12:21:50.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:50.389-04:00"},{"id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","created_at":"2026-05-22T12:21:51.931-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"355b3557-09ff-4212-b15f-17509f1c194e","direction":"outgoing","index":127603,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:51.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"13f5ac16-001a-4598-a1c0-db8a002c5cf9","direction":"outgoing","index":127604,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:51.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7bd9d41b-e981-4101-a119-abdbca605c18","direction":"outgoing","index":127605,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:51.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b59ed937-cbe9-4a37-b0ee-b52ff5c56ce4","direction":"outgoing","index":127606,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:51.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"ed0e479c-8c42-4a38-a68f-a7b6a1cb38b9","direction":"outgoing","index":127607,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:51.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07eafe02-956d-477b-b95b-8dd6ff7801f6","direction":"outgoing","index":127608,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:52.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b47243b-fc8d-4c90-9887-4bc2aae90958","direction":"outgoing","index":127609,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:52.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"09aecffc-f104-4a1d-a9e3-25db79d1b42d","direction":"outgoing","index":127610,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:52.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8b6e5e94-b1fa-43da-9218-39ea35e4fc3e","direction":"outgoing","index":127611,"result_id":"2fac611c-28b5-4b36-9d70-8a6f9e944309","status":200,"timestamp":"2026-05-22T12:21:52.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:51.931-04:00"},{"id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","created_at":"2026-05-22T12:21:53.075-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"52c610d7-7f33-4764-90b0-518ed95051de","direction":"outgoing","index":127612,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.077-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"5c3342a9-36c9-4c37-998e-38ce81fb9a55","direction":"outgoing","index":127613,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"48227d6b-18b9-43b6-b491-73fb7fad4ae3","direction":"outgoing","index":127614,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76d8eee8-2cb3-4c24-a80b-41aeae2a312c","direction":"outgoing","index":127615,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"f0622c0d-4039-48bc-b0ab-4ec2a53b19c3","direction":"outgoing","index":127616,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1900426e-d653-442d-a341-a904170aeb06","direction":"outgoing","index":127617,"result_id":"43a26472-6db7-49ec-9ebe-9b2f6f702700","status":200,"timestamp":"2026-05-22T12:21:53.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:53.075-04:00"},{"id":"10280f59-907f-4744-ab59-c4fb6fa44f20","created_at":"2026-05-22T12:21:54.162-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bf20a4a2-8f27-4081-9d07-61e4d5d7bd3a","direction":"outgoing","index":127618,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"efff965f-3473-4ad1-a295-a10c5c107e66","direction":"outgoing","index":127619,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d75db927-49a7-4bfd-9fbf-4d8e512c7ef1","direction":"outgoing","index":127620,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"925b97cd-0fc4-4ccc-8069-51893594dfaf","direction":"outgoing","index":127621,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"2372146f-f82b-4710-9148-a81549474e5f","direction":"outgoing","index":127622,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"792c32ac-cff8-42b7-a89e-a147454e1fd3","direction":"outgoing","index":127623,"result_id":"10280f59-907f-4744-ab59-c4fb6fa44f20","status":200,"timestamp":"2026-05-22T12:21:54.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:54.162-04:00"},{"id":"1ca201b6-8e69-4445-a048-a9e5939af915","created_at":"2026-05-22T12:21:54.345-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3f827446-4e41-4376-a2f8-db13768accd6","direction":"outgoing","index":127624,"result_id":"1ca201b6-8e69-4445-a048-a9e5939af915","status":200,"timestamp":"2026-05-22T12:21:54.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:54.345-04:00"},{"id":"bca5ad53-9498-4d4c-8f67-ed8ec65bc7eb","created_at":"2026-05-22T12:21:54.856-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a78c870d-760d-40b8-8134-cc5c843b5bb2","direction":"outgoing","index":127625,"result_id":"bca5ad53-9498-4d4c-8f67-ed8ec65bc7eb","status":200,"timestamp":"2026-05-22T12:21:54.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85","verb":"get"},{"id":"cd763dfa-0e6e-4e14-bef5-3a33fafa28a6","direction":"outgoing","index":127626,"result_id":"bca5ad53-9498-4d4c-8f67-ed8ec65bc7eb","status":200,"timestamp":"2026-05-22T12:21:54.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355","verb":"get"},{"id":"7da0ea3d-99e0-457b-8272-c5cde6b17a4f","direction":"outgoing","index":127627,"result_id":"bca5ad53-9498-4d4c-8f67-ed8ec65bc7eb","status":200,"timestamp":"2026-05-22T12:21:54.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:54.856-04:00"},{"id":"da61d5f0-ad8f-4c0b-883f-7b40fc68eab6","created_at":"2026-05-22T12:21:54.983-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:54.983-04:00"},{"id":"1a4b38e7-e1e4-4e91-9545-6ffdf75042c4","created_at":"2026-05-22T12:21:54.996-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:54.996-04:00"},{"id":"09305be2-79a5-4f0b-a8be-4883f90633d7","created_at":"2026-05-22T12:21:55.000-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:55.000-04:00"},{"id":"1816025b-ad9c-48d0-936f-357090acb167","created_at":"2026-05-22T12:21:55.001-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_temperature","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:55.001-04:00"},{"id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","created_at":"2026-05-22T12:21:55.859-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"89aa1334-c5cb-4346-a9e7-683c3847494e","direction":"outgoing","index":127628,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"e972cedc-f581-4513-91e4-eac082a9ada3","direction":"outgoing","index":127629,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"8c6e1c98-6eca-4667-9c16-862497328e78","direction":"outgoing","index":127630,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"c5e82069-2b46-40a1-a85c-e5bfbb729816","direction":"outgoing","index":127631,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"b9c6ddb0-9761-4e33-a4d9-1d05bce3d692","direction":"outgoing","index":127632,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"01a16085-67a0-4140-9d5b-0139def41c55","direction":"outgoing","index":127633,"result_id":"5d7ed609-adb2-43b2-8fbb-0917e16efc42","status":200,"timestamp":"2026-05-22T12:21:55.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:55.859-04:00"},{"id":"ee09e317-b157-40f4-a57e-cffa1054373f","created_at":"2026-05-22T12:21:59.033-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3dc6728e-c0df-4fc2-a933-b7d685dd2a5b","direction":"outgoing","index":127634,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ee51b0f1-f320-4700-b272-f17b27858f66","direction":"outgoing","index":127635,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.066-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"adf92881-5f4a-43fd-9f0f-5e07dcdc5c06","direction":"outgoing","index":127636,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90e2a1c7-63b9-41ad-9b73-ebd5a8501976\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f6cd88d-48db-4ffc-9ce6-419aba141196","direction":"outgoing","index":127637,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90e2a1c7-63b9-41ad-9b73-ebd5a8501976\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20cd99ba-b6cf-45bb-80b7-49153610c6be","direction":"outgoing","index":127638,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"85d153e5-b279-421d-beb1-fb9cfc141172","direction":"outgoing","index":127639,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=40f2bf40-1a95-473a-99dd-380baa0ff670\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22ed7f12-da59-4a42-adb9-1b14c46fa30c","direction":"outgoing","index":127640,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=40f2bf40-1a95-473a-99dd-380baa0ff670\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6167530-7830-4b42-9e01-56077b152e0a","direction":"outgoing","index":127641,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"43d62af3-3cc0-4239-bdf1-574386d380cb","direction":"outgoing","index":127642,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7f1c942f-7e14-4a58-bc29-8505141a2bcf","direction":"outgoing","index":127643,"result_id":"ee09e317-b157-40f4-a57e-cffa1054373f","status":200,"timestamp":"2026-05-22T12:21:59.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:21:59.033-04:00"},{"id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","created_at":"2026-05-22T12:22:00.011-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"de0545b2-b603-4b99-b2ab-2997eee94c12","direction":"outgoing","index":127644,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"770520a8-b160-4d07-ac99-2c5458b5bbfe","direction":"outgoing","index":127645,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d2019480-ed3a-4cbd-b421-b512d142d1b6","direction":"outgoing","index":127646,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"70cd9ce3-fc2f-4b60-87fb-22e0fcd17402","direction":"outgoing","index":127647,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b8423873-55a8-4786-b8d9-68b289291adf","direction":"outgoing","index":127648,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fc39c86e-7b4c-4665-82a2-30e42e40399a","direction":"outgoing","index":127649,"result_id":"44bd0e74-45b5-44a1-8db4-67d64836d26f","status":200,"timestamp":"2026-05-22T12:22:00.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:00.011-04:00"},{"id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","created_at":"2026-05-22T12:22:01.582-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"84036360-e443-445b-a5a8-c0fe06aff37f","direction":"outgoing","index":127650,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"4ce4f7a4-bc2a-4bc5-ad8e-28ba79c90c78","direction":"outgoing","index":127651,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"206581af-1a5d-4b64-892f-1bc960284b29","direction":"outgoing","index":127652,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f1e8a336-13b8-4d9f-9e58-213fcae38024\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"946aaa8c-2e3e-4599-af4c-466312bd7afb","direction":"outgoing","index":127653,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7d328280-529c-4d6a-b13e-57c75875f32a","direction":"outgoing","index":127654,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6a9c6cb-4391-4ec3-bc3d-57878586bef4","direction":"outgoing","index":127655,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6537523f-35c7-46c0-baa1-c489c01faa8a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d737c8dc-6b0b-4469-b585-a5027aa32313","direction":"outgoing","index":127656,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"500a50c7-3771-425c-aa23-330d568ce69b","direction":"outgoing","index":127657,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62c6ecd6-aaa5-40ee-95c0-a58a6d966ecf","direction":"outgoing","index":127658,"result_id":"0d6d7adc-4179-45d0-8355-0aaf3b61a632","status":200,"timestamp":"2026-05-22T12:22:01.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8bb297e6-3446-4922-99e8-51323d9cc39b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:01.582-04:00"},{"id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","created_at":"2026-05-22T12:22:02.716-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"147483af-7423-4aa2-93e3-c7560fc9fe12","direction":"outgoing","index":127659,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"e88ae5b8-1151-4ea1-aff9-5203c4085732","direction":"outgoing","index":127660,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7142b3eb-2963-495e-a446-3f3930b7318d","direction":"outgoing","index":127661,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb5f332e-ce3c-460b-975f-6f947b1792b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82d8d01c-3ccd-4b8a-802d-3b67ff3674e9","direction":"outgoing","index":127662,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"5f35b246-7a2b-4acc-b7cf-5e4b23ac8e80","direction":"outgoing","index":127663,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3607946c-9b64-417b-8e3c-cbbf2e4a9634","direction":"outgoing","index":127664,"result_id":"12ab0b5b-e622-4d97-b4e2-db4f59ebb29f","status":200,"timestamp":"2026-05-22T12:22:02.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1d2e5f70-0685-40d5-8d0f-f96bac6af5b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:02.716-04:00"},{"id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","created_at":"2026-05-22T12:22:03.852-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1cb8c5a3-57f5-485e-a696-c30dd9fc2b19","direction":"outgoing","index":127665,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"cc2eb950-9641-4ff9-a851-7f805e6ec728","direction":"outgoing","index":127666,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7779a41-c2d0-4ae8-a281-df2ff30918f5","direction":"outgoing","index":127667,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4003c77f-2393-476c-83b2-5a05c6471f43\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cae701a8-9a53-4223-90cc-23fb08355970","direction":"outgoing","index":127668,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"148b526a-4fc6-4254-a256-d8aa330198ad","direction":"outgoing","index":127669,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e00490da-f151-41f8-bb70-799c84461bc2","direction":"outgoing","index":127670,"result_id":"d53bba9f-1dfd-4dbd-bca1-6b2af16121af","status":200,"timestamp":"2026-05-22T12:22:03.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5d4d7f5c-4d44-4293-a20b-2ca61120c3b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:03.852-04:00"},{"id":"4cc8c23e-ff53-4cd9-a528-75767aef9e17","created_at":"2026-05-22T12:22:04.110-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dac23917-e5c8-4803-abab-642d0cd8989d","direction":"outgoing","index":127671,"result_id":"4cc8c23e-ff53-4cd9-a528-75767aef9e17","status":200,"timestamp":"2026-05-22T12:22:04.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.110-04:00"},{"id":"250f16fa-d5d4-4ac7-b171-d0df79b87af4","created_at":"2026-05-22T12:22:04.687-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2600664d-8966-40c4-a7c2-11190985c880","direction":"outgoing","index":127672,"result_id":"250f16fa-d5d4-4ac7-b171-d0df79b87af4","status":200,"timestamp":"2026-05-22T12:22:04.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85","verb":"get"},{"id":"a48ebe49-39e5-4761-90c7-b226b01d0a52","direction":"outgoing","index":127673,"result_id":"250f16fa-d5d4-4ac7-b171-d0df79b87af4","status":200,"timestamp":"2026-05-22T12:22:04.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355","verb":"get"},{"id":"29778f35-94f7-4af5-a649-cf2ffea8dc2f","direction":"outgoing","index":127674,"result_id":"250f16fa-d5d4-4ac7-b171-d0df79b87af4","status":200,"timestamp":"2026-05-22T12:22:04.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.687-04:00"},{"id":"93c9fc1c-1c94-4a80-8e42-1666bac1322d","created_at":"2026-05-22T12:22:04.761-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.761-04:00"},{"id":"485c85a8-0a59-492a-b13a-ed0d118ded57","created_at":"2026-05-22T12:22:04.769-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.769-04:00"},{"id":"5cb06b5e-2cc9-4b70-91f0-9855ee63277d","created_at":"2026-05-22T12:22:04.771-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.771-04:00"},{"id":"8f9cb532-f06f-46f1-8526-7b19d2b8d045","created_at":"2026-05-22T12:22:04.772-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:04.772-04:00"},{"id":"67368ab9-d475-42b5-b33b-2024d3a9194b","created_at":"2026-05-22T12:22:05.860-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"79518d0d-e0b5-4031-8a8a-410e8f827313","direction":"outgoing","index":127675,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"9ad5c200-ac19-4a77-9e5f-1cd949f57439","direction":"outgoing","index":127676,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"60556b36-9c4e-4477-8b16-6edb7a547c84","direction":"outgoing","index":127677,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"763eee07-c6bd-4277-b449-c861b0a034df","direction":"outgoing","index":127678,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"e09b1f20-6bdf-4f98-b48a-ab64b81b30cb","direction":"outgoing","index":127679,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"390c8388-55b1-46ce-9021-e9889797bb3a","direction":"outgoing","index":127680,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"67fb088f-6952-4aa5-960d-9bb0c51e1839","direction":"outgoing","index":127681,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"8ff2ecf7-db25-4886-8af8-0f7785cdf906","direction":"outgoing","index":127682,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"50569c5e-2b0f-49f4-ab10-195bebff0d60","direction":"outgoing","index":127683,"result_id":"67368ab9-d475-42b5-b33b-2024d3a9194b","status":200,"timestamp":"2026-05-22T12:22:05.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:05.860-04:00"},{"id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","created_at":"2026-05-22T12:22:06.846-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8f9f27d7-83ed-4e40-8c98-aa847df2bd5f","direction":"outgoing","index":127684,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"43b7b721-cc83-4ad6-9913-eedf00334082","direction":"outgoing","index":127685,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"bdbe19d8-5934-4c67-9f44-3ed20692980c","direction":"outgoing","index":127686,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"38cdb8ed-e6bc-4568-94a2-67ad1b5ab814","direction":"outgoing","index":127687,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"e3603e12-3329-4753-a24f-c7d18c2663c7","direction":"outgoing","index":127688,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3712c15e-d060-4a56-a965-dc41818460f7","direction":"outgoing","index":127689,"result_id":"7cab72ac-cb90-4ddb-97e8-91c1faca73bf","status":200,"timestamp":"2026-05-22T12:22:06.907-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:06.846-04:00"},{"id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","created_at":"2026-05-22T12:22:07.749-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7ecc32c0-9f16-40e8-80b4-f1e7eca16e8a","direction":"outgoing","index":127690,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"c3d4a0a9-a94b-439b-830e-f3960b5b17de","direction":"outgoing","index":127691,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"56b54dae-77fb-4933-a578-257bb5f7e064","direction":"outgoing","index":127692,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"317bd554-bbcd-44d5-a6a8-685cc20f5aca","direction":"outgoing","index":127693,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"87b66d3f-d53d-4022-9c56-28ba10759a44","direction":"outgoing","index":127694,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"5fff285f-6583-4092-aa8a-c3343ed27d4d","direction":"outgoing","index":127695,"result_id":"0dc9a546-501c-4c28-857a-3b56d8a39b2f","status":200,"timestamp":"2026-05-22T12:22:07.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:07.749-04:00"},{"id":"ccf293d2-04a1-4a41-a864-2ef87849887c","created_at":"2026-05-22T12:22:08.264-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7b9c626f-78fa-4116-91bc-b5426306428a","direction":"outgoing","index":127696,"result_id":"ccf293d2-04a1-4a41-a864-2ef87849887c","status":200,"timestamp":"2026-05-22T12:22:08.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"a14601cc-2003-415f-988d-bdf931b3ae40","direction":"outgoing","index":127697,"result_id":"ccf293d2-04a1-4a41-a864-2ef87849887c","status":200,"timestamp":"2026-05-22T12:22:08.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"1ebafc1b-3e53-42fd-bcf5-cc615e3ad8b1","direction":"outgoing","index":127698,"result_id":"ccf293d2-04a1-4a41-a864-2ef87849887c","status":200,"timestamp":"2026-05-22T12:22:08.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:08.264-04:00"},{"id":"ede7efec-9ca2-449a-a029-def2c8974d85","created_at":"2026-05-22T12:22:08.590-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b50654f3-e25d-4370-ae88-602216949f7e","direction":"outgoing","index":127699,"result_id":"ede7efec-9ca2-449a-a029-def2c8974d85","status":200,"timestamp":"2026-05-22T12:22:08.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"318546eb-3fff-4b40-bd35-7aafd15ff812","direction":"outgoing","index":127700,"result_id":"ede7efec-9ca2-449a-a029-def2c8974d85","status":200,"timestamp":"2026-05-22T12:22:08.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:08.590-04:00"},{"id":"4445e6b0-fe66-4eff-91c7-b0c869fe1fcf","created_at":"2026-05-22T12:22:08.908-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f1c6e52c-1f9a-462b-a73c-75537836d576","direction":"outgoing","index":127701,"result_id":"4445e6b0-fe66-4eff-91c7-b0c869fe1fcf","status":200,"timestamp":"2026-05-22T12:22:08.912-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"32fabe6d-bb0b-41e6-8e04-1612e43d8ed8","direction":"outgoing","index":127702,"result_id":"4445e6b0-fe66-4eff-91c7-b0c869fe1fcf","status":200,"timestamp":"2026-05-22T12:22:08.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:08.908-04:00"},{"id":"fcc34b11-508e-4f81-b618-4302fa6041fb","created_at":"2026-05-22T12:22:09.069-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"62b3ce9c-2e85-4443-8867-0625b0459dc5","direction":"outgoing","index":127703,"result_id":"fcc34b11-508e-4f81-b618-4302fa6041fb","status":200,"timestamp":"2026-05-22T12:22:09.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:09.069-04:00"},{"id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","created_at":"2026-05-22T12:22:10.025-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3ebaa4f9-d429-4f84-b015-fb73409d8cc9","direction":"outgoing","index":127704,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85","verb":"get"},{"id":"4e045ed6-4df9-4876-bbbb-4356bccf2c40","direction":"outgoing","index":127705,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85","verb":"get"},{"id":"c0e7e6c3-4262-4b5c-9f5e-c3fbd49041f6","direction":"outgoing","index":127706,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355","verb":"get"},{"id":"2a924dee-1620-47c4-bb3c-7e707d50aeff","direction":"outgoing","index":127707,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355","verb":"get"},{"id":"af36fb30-0085-4ca3-82d1-fd61b8578136","direction":"outgoing","index":127708,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=907","verb":"get"},{"id":"79921461-fd1d-4a77-bd1d-a9d94b6fed66","direction":"outgoing","index":127709,"result_id":"3f7dd43a-9a74-420b-b1f1-d9e25761d1eb","status":200,"timestamp":"2026-05-22T12:22:10.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:10.025-04:00"},{"id":"90128299-cee0-4426-848a-7351beae60b1","created_at":"2026-05-22T12:22:10.245-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:10.245-04:00"},{"id":"ecadc8c9-23f2-4f38-a49a-d962eab26890","created_at":"2026-05-22T12:22:10.265-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:10.265-04:00"},{"id":"3820d7e2-c031-45ae-8963-56f4ac322762","created_at":"2026-05-22T12:22:10.267-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:10.267-04:00"},{"id":"aa68d890-95e1-4021-be37-5a873214074a","created_at":"2026-05-22T12:22:10.269-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pulse_oximetry","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:10.269-04:00"},{"id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","created_at":"2026-05-22T12:22:15.497-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ec492b8d-b3d6-433d-8308-c8f1c90c50e3","direction":"outgoing","index":127710,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=85","verb":"get"},{"id":"92f758e1-738b-4c6f-b199-0d55c1ac6613","direction":"outgoing","index":127711,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=85","verb":"get"},{"id":"865ef0bc-4219-4dd9-a40f-8120a607868e","direction":"outgoing","index":127712,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"849cfc24-044b-4164-8b33-a42669dcc33f","direction":"outgoing","index":127713,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=Patient/85","verb":"get"},{"id":"3f9b05dc-f778-44ca-9fc7-3123378a6e7f","direction":"outgoing","index":127714,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026patient=85","verb":"get"},{"id":"54c71522-d6c4-4e93-91c9-95cc1575f570","direction":"outgoing","index":127715,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"c63c5b1b-14cb-495c-9483-efd56848f508","direction":"outgoing","index":127716,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=582fdac4-2b02-4941-9367-b8a9152e2421\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f4f1c0f-0710-49c9-b7be-8ab6809cce02","direction":"outgoing","index":127717,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=582fdac4-2b02-4941-9367-b8a9152e2421\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15c978b2-29c2-4373-94a3-1ff6e43ed466","direction":"outgoing","index":127718,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.631-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=582fdac4-2b02-4941-9367-b8a9152e2421\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14a3ed35-318b-4d85-a083-943f1f902524","direction":"outgoing","index":127719,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=85","verb":"get"},{"id":"74320966-9640-4ddc-a635-603686bafaf8","direction":"outgoing","index":127720,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=355","verb":"get"},{"id":"600bdbfd-c230-4082-b347-dae7bf05233f","direction":"outgoing","index":127721,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=355","verb":"get"},{"id":"2645e3ad-90d1-42e8-ad11-1a6e81fb2267","direction":"outgoing","index":127722,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"2681a187-ee41-47a8-a6eb-6767ce2b57de","direction":"outgoing","index":127723,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"acc2404e-b4a6-4a54-a210-ca7d0f50da97","direction":"outgoing","index":127724,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"581cfa58-64a6-4509-82b4-9db4bfa6ae47","direction":"outgoing","index":127725,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"242ffdd4-f539-4fa6-8a9a-2d57c908d8ba","direction":"outgoing","index":127726,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13490107-2543-4663-8b0c-b0cc1f110b66","direction":"outgoing","index":127727,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d20f68e8-59d3-47ac-8934-b083676b882f","direction":"outgoing","index":127728,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcdd0de6-68a4-4d78-bdb2-1b3a10ecafb9","direction":"outgoing","index":127729,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ec35ecf-b118-4769-915a-65d24ea4d887","direction":"outgoing","index":127730,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c7cf2ef-353d-4337-a5a6-5aa9a4c9bb76","direction":"outgoing","index":127731,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=07fee0bb-7547-45b7-a15c-1c8eefe45fef\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa21443b-5fdd-4f9a-b785-c2b856d1a57e","direction":"outgoing","index":127732,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=355","verb":"get"},{"id":"3b76c89f-48fc-42b9-ae44-68d405e2080f","direction":"outgoing","index":127733,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=907","verb":"get"},{"id":"e469cdab-d5e1-4211-a730-832d52eaaf39","direction":"outgoing","index":127734,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=907","verb":"get"},{"id":"d6c01aaf-a272-4f10-ae82-71277e4294c0","direction":"outgoing","index":127735,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"},{"id":"b7c4ce9b-6d0b-4a98-84cd-055bd856204a","direction":"outgoing","index":127736,"result_id":"e702d7cb-3bff-42bf-baa6-4b8c7465b2cc","status":200,"timestamp":"2026-05-22T12:22:15.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:15.497-04:00"},{"id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","created_at":"2026-05-22T12:22:19.323-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ee93ee07-9c27-406a-9d63-a16f52f51793","direction":"outgoing","index":127737,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2da7b6be-000e-4425-a510-5f701345adff","direction":"outgoing","index":127738,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"735d08e1-66dd-4b92-a1df-bb273ddc31fe","direction":"outgoing","index":127739,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e94694e-40e8-4efc-ad15-341555ed4362\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"078df175-359e-4e59-bd14-defd180e8bfd","direction":"outgoing","index":127740,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e94694e-40e8-4efc-ad15-341555ed4362\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b98c9ded-ebcb-4441-8d40-7ef473d36862","direction":"outgoing","index":127741,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e94694e-40e8-4efc-ad15-341555ed4362\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"072e015e-5f2d-40cf-a98a-56a860e35a4c","direction":"outgoing","index":127742,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e94694e-40e8-4efc-ad15-341555ed4362\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7b24add0-5421-456f-9b22-f798637b0c7b","direction":"outgoing","index":127743,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"996412e7-f395-40ea-aed5-7bb682a5c882","direction":"outgoing","index":127744,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e00a94c1-92a0-4766-80fe-8a4ff8fedc95\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f46d1dc6-5aef-4ea1-b05b-0c4aa2a335d2","direction":"outgoing","index":127745,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e00a94c1-92a0-4766-80fe-8a4ff8fedc95\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fc56309-ed63-4af5-addd-6028b3876738","direction":"outgoing","index":127746,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e00a94c1-92a0-4766-80fe-8a4ff8fedc95\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f79890b5-c75d-408d-a541-c2462accf56c","direction":"outgoing","index":127747,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e00a94c1-92a0-4766-80fe-8a4ff8fedc95\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"73ddee6d-d937-43bb-b92e-42948c19607f","direction":"outgoing","index":127748,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"d35fa867-93b0-4307-9a97-c5425aadf348","direction":"outgoing","index":127749,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"d5b5ad81-8222-4cb6-aac3-1a4efa306345","direction":"outgoing","index":127750,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"fb1891dd-7b0b-49cb-8a5d-c3efbba935e5","direction":"outgoing","index":127751,"result_id":"caaa2176-5918-4f82-82ba-0acbf9833d2e","status":200,"timestamp":"2026-05-22T12:22:19.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:19.323-04:00"},{"id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","created_at":"2026-05-22T12:22:20.465-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a9f1eb0f-8274-43d0-8f3e-a5f8910ee67d","direction":"outgoing","index":127752,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"693ef06a-ad46-4a7d-91f0-7a143ef9e4ce","direction":"outgoing","index":127753,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"118b9e6f-fe81-40e1-bef6-4fde6820587f","direction":"outgoing","index":127754,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"60409341-66fe-4afa-ba58-0db6b6a7859e","direction":"outgoing","index":127755,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"1c5bcb8f-b765-49c8-a1dd-1074e2909fd6","direction":"outgoing","index":127756,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"f7814ad9-9b5b-47aa-86e3-0949ca052f6d","direction":"outgoing","index":127757,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"215217db-4df9-4aa3-9748-5b54054beda8","direction":"outgoing","index":127758,"result_id":"cd8c842b-e9df-443d-afc8-2139fa9117c0","status":200,"timestamp":"2026-05-22T12:22:20.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:20.465-04:00"},{"id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","created_at":"2026-05-22T12:22:26.911-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"134c33d1-cb77-4bca-ae49-31c691954eb8","direction":"outgoing","index":127759,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:26.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"8e6a1ffe-c871-4f29-8b4c-adba9f66cf2b","direction":"outgoing","index":127760,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:26.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e4db314a-1476-4702-acb9-0c80440833ce","direction":"outgoing","index":127761,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:26.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1de963d2-2eaa-451b-a7bb-60cb8eb6960e","direction":"outgoing","index":127762,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:26.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d14e2329-803b-4510-8274-965602f0855a","direction":"outgoing","index":127763,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:26.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dabf544d-2fa2-477d-918a-c6b56d9ac94f","direction":"outgoing","index":127764,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"60429fc8-2b9b-4087-b47a-0c3fdd004742","direction":"outgoing","index":127765,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"496ad36a-9b0b-4734-8df5-ee47dcb59eec","direction":"outgoing","index":127766,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b970a556-351c-4d8e-ac30-964c53e81f4e","direction":"outgoing","index":127767,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f42d8ddd-2248-46c1-a72d-ecd9a751e87a","direction":"outgoing","index":127768,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1006af7f-8406-4287-8408-76f13ae23f23","direction":"outgoing","index":127769,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"64a486ac-40d6-4863-ba2a-80fb66a91aa0","direction":"outgoing","index":127770,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1670f2b-b5cb-43ec-b1d9-f720b1204ad2","direction":"outgoing","index":127771,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ef5bea79-7ad9-45bc-b672-c47466b27b1c","direction":"outgoing","index":127772,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5803ce61-1bc0-4709-b28a-90d3c423dd1d","direction":"outgoing","index":127773,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56985f2a-7b88-4d9a-9ea4-db707e18232a","direction":"outgoing","index":127774,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a529fae3-0bcb-4ab8-bc36-c0b0afd78322","direction":"outgoing","index":127775,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d58da770-babb-4cca-8844-027c3a11e2fb","direction":"outgoing","index":127776,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37a6914d-2f40-494a-ac60-2aba4a37e4b3","direction":"outgoing","index":127777,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bee06c89-08a9-4d4b-a155-cad516358bb4","direction":"outgoing","index":127778,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f7232b0-c3e6-4c6a-88b9-9a1fcbd9226e\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"212124a7-9c3c-49a4-9124-da080ddd9901","direction":"outgoing","index":127779,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"19f7d9ac-aa75-4265-b419-5bee98e7d818","direction":"outgoing","index":127780,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd152841-fb67-4ecd-a9c6-9f472ac8c6a1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72f96b54-9853-434e-8273-9a5291a22665","direction":"outgoing","index":127781,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd152841-fb67-4ecd-a9c6-9f472ac8c6a1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cb9bfcca-cc34-4938-aec7-c34d32691697","direction":"outgoing","index":127782,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd152841-fb67-4ecd-a9c6-9f472ac8c6a1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"086933b9-7508-435b-9d25-19b9ff62a15b","direction":"outgoing","index":127783,"result_id":"9cb6a4b1-c30b-45de-bbaa-c8c7a9a5f980","status":200,"timestamp":"2026-05-22T12:22:27.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dd152841-fb67-4ecd-a9c6-9f472ac8c6a1\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:26.911-04:00"},{"id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","created_at":"2026-05-22T12:22:32.274-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b4e6b57d-424d-4b84-87cd-c5c37cf49e45","direction":"outgoing","index":127784,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"4adbbd36-27f8-4e62-9895-ca2b1341a1cb","direction":"outgoing","index":127785,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"630b03ad-ffe5-4962-a491-ee3bc664a23a","direction":"outgoing","index":127786,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d0fd2a7d-8f01-405c-95eb-b966df33e5ff","direction":"outgoing","index":127787,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df2b671e-3aa8-4ab8-b3b5-08c4643f3a7a","direction":"outgoing","index":127788,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85ba29b9-b5b1-4284-9d9b-dc738f864792","direction":"outgoing","index":127789,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.454-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"a691b1ec-bb0c-49af-928e-09abee450580","direction":"outgoing","index":127790,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c6a8b40-d616-43cb-813a-8c2a5352c802","direction":"outgoing","index":127791,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f59ab09-beb2-4915-87bc-80c67d5277f1","direction":"outgoing","index":127792,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f43886a-ec53-45b5-8d5b-06a00555ea5d","direction":"outgoing","index":127793,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fa5fdde-802d-4004-945b-03f1afc54f76","direction":"outgoing","index":127794,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"2508b98a-e11a-4463-b396-131f1ffdbc99","direction":"outgoing","index":127795,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb1d9b0f-1a8a-4738-b394-06c955519dd5","direction":"outgoing","index":127796,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3535102-dbad-42b7-abbf-ebc7627707d6","direction":"outgoing","index":127797,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df03a09c-44e2-4d96-819d-f67c2d14294b","direction":"outgoing","index":127798,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce1eff22-3b7e-4b99-9275-933f692c42a3","direction":"outgoing","index":127799,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e5fa261a-d1a5-4c1d-8b93-c60aa36f3f89","direction":"outgoing","index":127800,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a1119e2-a911-46fd-bfcf-80f4f7f18715","direction":"outgoing","index":127801,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ab95ad0-bb40-4486-8e5c-6c806946a0f8","direction":"outgoing","index":127802,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"67c4c451-4a8b-41ef-b6b2-19956c80ac63","direction":"outgoing","index":127803,"result_id":"641e4f5b-3dba-47ef-a640-b6f51e666e9a","status":200,"timestamp":"2026-05-22T12:22:32.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81807435-84ee-4cc1-a7c2-5bbe1502d966\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:32.274-04:00"},{"id":"8c567966-97f2-47d1-97ca-964dec3c540a","created_at":"2026-05-22T12:22:37.690-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a305f51-863d-4bdd-b24a-0ea621cc8456","direction":"outgoing","index":127804,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"053fc9b7-899e-498f-9a25-c535d9e490f8","direction":"outgoing","index":127805,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"620d6a4f-c1c5-4f16-bc7e-029720014988","direction":"outgoing","index":127806,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da743579-7d69-4a5e-8cc2-39dcb39da37b","direction":"outgoing","index":127807,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"77fb71ca-12e4-4fa0-bf9d-2799e6bc6bfe","direction":"outgoing","index":127808,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ac22c93-b53c-4769-8311-0fe6aa03f39c","direction":"outgoing","index":127809,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"648fd6f4-fbf0-484b-a7f8-209a3e83da4d","direction":"outgoing","index":127810,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0830707e-98a7-41f9-8fc1-bd12dc7bf4e2","direction":"outgoing","index":127811,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ace48fb-3528-4e70-88a0-419e5c65be72","direction":"outgoing","index":127812,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8045f2e-2757-4a80-9719-87d4facc432d","direction":"outgoing","index":127813,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320393af-f146-4906-a3bb-0c6c0b838bd9","direction":"outgoing","index":127814,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"c3879c49-ef71-4f69-8b6f-60bff9d47145","direction":"outgoing","index":127815,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"28ee2dd5-dc99-498b-a088-a8a67999b96d","direction":"outgoing","index":127816,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1612f0c7-cc1e-4906-bbcf-eb52441a3e21","direction":"outgoing","index":127817,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"84903049-2e87-4a0f-b43e-9c424fab5ecb","direction":"outgoing","index":127818,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"048f7edd-2d2a-459d-a0aa-6b4135fa1c32","direction":"outgoing","index":127819,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b284005b-0e6c-4561-8a47-a916d1aa8c4c","direction":"outgoing","index":127820,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"719ac9a0-0acd-48df-b2a2-e53941718a75","direction":"outgoing","index":127821,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a61bd748-41ab-47ed-ab59-394fa03544d9","direction":"outgoing","index":127822,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5cee6789-fc48-401b-83d0-9be6c7d10d23","direction":"outgoing","index":127823,"result_id":"8c567966-97f2-47d1-97ca-964dec3c540a","status":200,"timestamp":"2026-05-22T12:22:37.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=06a5f774-53c0-4580-b513-b2afb4888de4\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:37.690-04:00"},{"id":"749fb178-1afa-4dc8-afc0-7b1ad9d0a05e","created_at":"2026-05-22T12:22:38.059-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3601c2cd-5ea5-48f4-987f-02360a0f16f5","direction":"outgoing","index":127824,"result_id":"749fb178-1afa-4dc8-afc0-7b1ad9d0a05e","status":200,"timestamp":"2026-05-22T12:22:38.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0ce3e522-1798-4581-8c7d-c913de0149b6","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:38.059-04:00"},{"id":"ac2b9784-6523-455d-abb9-39eec4b3b971","created_at":"2026-05-22T12:22:43.616-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"12897878-a541-4f78-bb91-327faea1e6d6","direction":"outgoing","index":127825,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.622-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=85","verb":"get"},{"id":"720c46e5-8140-4bfc-a4b5-33a8f825229b","direction":"outgoing","index":127826,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=85","verb":"get"},{"id":"479a6dea-53b2-4f08-b612-d5705cb044fd","direction":"outgoing","index":127827,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85","verb":"get"},{"id":"35b289ff-8784-439b-bad9-64e5042b98a9","direction":"outgoing","index":127828,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=349b20bc-da34-4e18-9eca-1b46def0bbe0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"999f0c46-4b0b-4807-9615-704d51c8fd29","direction":"outgoing","index":127829,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.684-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=349b20bc-da34-4e18-9eca-1b46def0bbe0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"558ed35c-752a-4ebc-a951-1ad0a4fe9221","direction":"outgoing","index":127830,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=349b20bc-da34-4e18-9eca-1b46def0bbe0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd353b9d-278c-4ba2-9ff9-67d54d1034bb","direction":"outgoing","index":127831,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=85","verb":"get"},{"id":"7d257a91-ec73-4256-a54e-ee085091f7da","direction":"outgoing","index":127832,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=355","verb":"get"},{"id":"674c3e60-95a5-42df-ad20-d0fb18408596","direction":"outgoing","index":127833,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=355","verb":"get"},{"id":"22511be9-b9b6-4954-bff1-50b9dcab56c6","direction":"outgoing","index":127834,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355","verb":"get"},{"id":"8e0b64f5-f12d-4549-b7d0-8bfbe4314b32","direction":"outgoing","index":127835,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fff9b02b-8488-4962-9eab-3fecda18a200","direction":"outgoing","index":127836,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"41da9914-5764-45f8-b5d0-1496ae81482b","direction":"outgoing","index":127837,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ade7751f-8587-443b-9aec-ac29f5eba82f","direction":"outgoing","index":127838,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65d04165-1451-4e42-809d-ed67889e292d","direction":"outgoing","index":127839,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"882ef0eb-cb94-42f8-a254-33e15946484e","direction":"outgoing","index":127840,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.798-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a92ff2a-53a2-485a-87e9-f0ae716234c4","direction":"outgoing","index":127841,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e5bfa8c-c8f4-4fa2-921a-78a6dcad92c8","direction":"outgoing","index":127842,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44012fe0-f902-4df5-bbed-271cea064c62","direction":"outgoing","index":127843,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccf08e13-cfb4-439a-9bef-8690f8ce9b1e\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4ed6fe0-16e3-4e42-a2f7-4656d0cd74bf","direction":"outgoing","index":127844,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=355","verb":"get"},{"id":"6d396c8a-9f50-4845-9709-c5647b649b0b","direction":"outgoing","index":127845,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=907","verb":"get"},{"id":"91ba61ee-69e6-455d-a283-2e2eb64a6dcc","direction":"outgoing","index":127846,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=907","verb":"get"},{"id":"c5849069-7967-4fc7-87f0-f5c91692033a","direction":"outgoing","index":127847,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=907","verb":"get"},{"id":"94aba2ed-3f1e-4370-875b-b93eb0718961","direction":"outgoing","index":127848,"result_id":"ac2b9784-6523-455d-abb9-39eec4b3b971","status":200,"timestamp":"2026-05-22T12:22:43.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:43.616-04:00"},{"id":"8500003b-9a16-45a5-bd68-554cf96b07d0","created_at":"2026-05-22T12:22:47.209-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'Smoking Status Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.6|20240222), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#401201003)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#449868002)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:47.209-04:00"},{"id":"dce6531c-53a5-4ce3-bcf5-1b68fda73116","created_at":"2026-05-22T12:22:47.670-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:47.670-04:00"},{"id":"7a2e8e83-40e0-4823-80eb-ba10485a4720","created_at":"2026-05-22T12:22:47.672-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:47.672-04:00"},{"id":"f2f1b996-f2cf-4724-85f3-4fc610085d51","created_at":"2026-05-22T12:22:47.673-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_smokingstatus","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:47.673-04:00"},{"id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","created_at":"2026-05-22T12:22:48.371-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"93dccb67-b59d-4c19-9293-84877736e00f","direction":"outgoing","index":127849,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"d52b47cb-a24f-4291-86d5-9de751ffb571","direction":"outgoing","index":127850,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"81dcc400-8837-4789-80f3-81a765e8a220","direction":"outgoing","index":127851,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"f986c948-6fb2-45f3-bddd-62474c0bf70c","direction":"outgoing","index":127852,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"dc35d3b3-28d5-4d52-a836-4449e6e1a4d7","direction":"outgoing","index":127853,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"c8adfcb4-5e0c-44cc-97bb-a466dd4818a5","direction":"outgoing","index":127854,"result_id":"739886d9-a634-4d1e-9b55-0cddc9d66b5f","status":200,"timestamp":"2026-05-22T12:22:48.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:48.371-04:00"},{"id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","created_at":"2026-05-22T12:22:51.371-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"156b0ce3-a724-49cc-b832-c4157624583f","direction":"outgoing","index":127855,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"e65d0fb5-4409-4cf1-b725-d0a4ef8392de","direction":"outgoing","index":127856,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"4aa8e2b0-09f6-453e-9abc-2d6fdd27091f","direction":"outgoing","index":127857,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"13e07e87-c901-427b-9c73-c4f00b7cb849","direction":"outgoing","index":127858,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"4d042af2-3cf3-4a52-b4bd-941878fc1f1e","direction":"outgoing","index":127859,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90157bc4-8e4b-4824-ae75-867c54759e08\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"292f7245-27a5-42c8-aee4-24b754bac025","direction":"outgoing","index":127860,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90157bc4-8e4b-4824-ae75-867c54759e08\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d07dba16-2220-4af4-9ac4-bde03e7124a3","direction":"outgoing","index":127861,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90157bc4-8e4b-4824-ae75-867c54759e08\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"253c748d-1011-46c7-8d48-40bfc2d2ec95","direction":"outgoing","index":127862,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"c931be01-e748-47c2-935a-dbbff7596bff","direction":"outgoing","index":127863,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6e023902-c2e2-48fa-bc51-34f324363c18\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64bf5597-c5fc-4181-8413-da6655af08af","direction":"outgoing","index":127864,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6e023902-c2e2-48fa-bc51-34f324363c18\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ffbd20f-92b1-4a98-aab1-efb3c743ff10","direction":"outgoing","index":127865,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6e023902-c2e2-48fa-bc51-34f324363c18\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e16d0f94-72f0-4acb-a927-03de83a683ef","direction":"outgoing","index":127866,"result_id":"1b47fd24-e042-40cf-b500-01c98d3f1a53","status":200,"timestamp":"2026-05-22T12:22:51.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:51.371-04:00"},{"id":"7381f469-2bda-4437-8976-04dc8fb075c9","created_at":"2026-05-22T12:22:52.313-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8e7b8348-c0c2-422d-a78f-4c084a6729d1","direction":"outgoing","index":127867,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"d830d2c6-eda5-4e28-abc6-399409762a97","direction":"outgoing","index":127868,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"22501881-69c4-4efb-a5a3-76f920943068","direction":"outgoing","index":127869,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"3560d558-d315-4263-915f-5d7e45ae74cf","direction":"outgoing","index":127870,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"06db2920-0db3-475a-96c1-d933876fc559","direction":"outgoing","index":127871,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"e7637aa3-95d9-4cb0-8da3-09408fed5db0","direction":"outgoing","index":127872,"result_id":"7381f469-2bda-4437-8976-04dc8fb075c9","status":200,"timestamp":"2026-05-22T12:22:52.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:52.313-04:00"},{"id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","created_at":"2026-05-22T12:22:55.414-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2dbc4d6c-475e-43a6-8c3b-8bedcb38e5e6","direction":"outgoing","index":127873,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"b14bc707-a03c-4e79-8a63-fc282f046127","direction":"outgoing","index":127874,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17fec77f-8db5-4e66-afd0-00a0154f4238","direction":"outgoing","index":127875,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2772a4d-9293-4cae-bdb6-d7fb0a0d34fd","direction":"outgoing","index":127876,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"817f0621-3364-45ce-920d-22e3c131d1ef","direction":"outgoing","index":127877,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc10a575-a6b7-47ca-9d4f-a5ad484c9096\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7361ad5-a65b-477f-8ecc-6cd938674fad","direction":"outgoing","index":127878,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"dfbc8b72-c908-4ea3-9196-48bbc7f47b44","direction":"outgoing","index":127879,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"463693b5-fb97-4c06-99ba-aed0e44457d2","direction":"outgoing","index":127880,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fba53a1-cacd-43c8-995d-797e8a3f5ae1","direction":"outgoing","index":127881,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5eaf693-3c36-4051-b6ec-820cf7d750d8","direction":"outgoing","index":127882,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8087cdfb-69cf-4834-a6bc-3f7cf93ea6e3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a7fa3b82-1bc6-4065-ad4d-e53293bc7a7c","direction":"outgoing","index":127883,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6bb73823-1f6d-4e70-979f-fba878c5de3c","direction":"outgoing","index":127884,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.542-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35f7ab25-4a94-4007-b040-419858a24666\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"498ad6ac-b626-4e29-99b9-deb6ce3256af","direction":"outgoing","index":127885,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35f7ab25-4a94-4007-b040-419858a24666\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea018d39-c966-431e-ae03-e842230b8ced","direction":"outgoing","index":127886,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35f7ab25-4a94-4007-b040-419858a24666\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bbbb6069-eaa9-416f-acd5-ee35662d4c49","direction":"outgoing","index":127887,"result_id":"860d46d9-6d8e-40d9-8790-0583feb8d6ef","status":200,"timestamp":"2026-05-22T12:22:55.592-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=35f7ab25-4a94-4007-b040-419858a24666\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:55.414-04:00"},{"id":"d55d5912-c06d-4cd4-b88d-150a692005f5","created_at":"2026-05-22T12:22:57.267-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e9c36217-ad12-4585-85cc-9129f65ee44c","direction":"outgoing","index":127888,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"48122485-d7fa-4b70-bb2b-f8de8c3eaf11","direction":"outgoing","index":127889,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83cf72e0-4b11-4a47-bff0-5a57d2a7477b","direction":"outgoing","index":127890,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dc64afd9-87e3-4611-8ba3-86fefda93184","direction":"outgoing","index":127891,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bb161ecd-3d6e-4efe-8bd6-1231541e6b00","direction":"outgoing","index":127892,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ef4818db-fc3b-4dec-bac7-dedc39244b3d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75b39e4a-2eca-4c7a-a3c2-2d60301bb313","direction":"outgoing","index":127893,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"db560d58-566d-4034-9624-dad6bc63d64d","direction":"outgoing","index":127894,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a700eb70-8af7-478b-ac8d-e80c304a476a","direction":"outgoing","index":127895,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bdae0a13-4707-4595-8aaf-d01a8bf9bd59","direction":"outgoing","index":127896,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fbe70232-c8cb-4bdb-9d18-337db6a6fd91","direction":"outgoing","index":127897,"result_id":"d55d5912-c06d-4cd4-b88d-150a692005f5","status":200,"timestamp":"2026-05-22T12:22:57.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e0e40e2d-0ce2-4dbf-a26e-f1af1c7f5ccb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:57.267-04:00"},{"id":"429851b5-0715-4964-9fc3-f47a81676b0c","created_at":"2026-05-22T12:22:58.911-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"26d298d5-3f19-450e-b174-16a92bb48754","direction":"outgoing","index":127898,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:58.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"e022eec5-f73d-4e28-9ed5-af568965b5c4","direction":"outgoing","index":127899,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:58.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e4903e76-cba9-4fbc-acec-d48e45ee58f6","direction":"outgoing","index":127900,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:58.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d347f7d2-afb6-41e4-b045-d82e44e6d02d","direction":"outgoing","index":127901,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:58.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea301886-8942-48da-bb9c-1985cc2b4ada","direction":"outgoing","index":127902,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:58.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5cf12e39-32d5-4dac-a962-16713c717ad7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9468e65e-460f-43bb-9c42-6ed2b8164795","direction":"outgoing","index":127903,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:59.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"315532ff-4552-450a-aac3-c30a79cb878c","direction":"outgoing","index":127904,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:59.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7375ca86-f3f5-4ce5-a0a1-699820dde68f","direction":"outgoing","index":127905,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:59.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2e8b4871-6cb5-410d-bd64-5d0ddb0a32d3","direction":"outgoing","index":127906,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:59.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"146f2e0f-7ccf-41dc-aced-b1ee99fd9224","direction":"outgoing","index":127907,"result_id":"429851b5-0715-4964-9fc3-f47a81676b0c","status":200,"timestamp":"2026-05-22T12:22:59.041-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4430f338-82cd-4371-978b-31e5032275cf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:58.911-04:00"},{"id":"cc28fa0f-7014-442a-b42b-74768f1d0377","created_at":"2026-05-22T12:22:59.159-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e0988a11-aad4-417b-be64-425cae86b7ca","direction":"outgoing","index":127908,"result_id":"cc28fa0f-7014-442a-b42b-74768f1d0377","status":200,"timestamp":"2026-05-22T12:22:59.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.159-04:00"},{"id":"2892131a-64e0-49ba-889f-df4e77facea8","created_at":"2026-05-22T12:22:59.607-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"85c05327-04a7-4984-90ad-0aefb0f0f240","direction":"outgoing","index":127909,"result_id":"2892131a-64e0-49ba-889f-df4e77facea8","status":200,"timestamp":"2026-05-22T12:22:59.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=85","verb":"get"},{"id":"a14e278f-49c9-44e9-b573-1d8fc668419d","direction":"outgoing","index":127910,"result_id":"2892131a-64e0-49ba-889f-df4e77facea8","status":200,"timestamp":"2026-05-22T12:22:59.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=355","verb":"get"},{"id":"b9427450-23f0-4e43-b119-c739aae91544","direction":"outgoing","index":127911,"result_id":"2892131a-64e0-49ba-889f-df4e77facea8","status":200,"timestamp":"2026-05-22T12:22:59.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.607-04:00"},{"id":"a42bdc77-0e32-467c-9f3f-23193f152a7e","created_at":"2026-05-22T12:22:59.705-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.705-04:00"},{"id":"25d3fc71-47fe-49b9-8ac4-fd0987889f0b","created_at":"2026-05-22T12:22:59.712-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.712-04:00"},{"id":"827a6baa-a1c8-4138-8965-2de7f67d362c","created_at":"2026-05-22T12:22:59.714-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.714-04:00"},{"id":"08f31c61-c15d-4d87-b922-8a33f3366492","created_at":"2026-05-22T12:22:59.716-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:22:59.716-04:00"},{"id":"018f476b-3123-41d2-aa07-ccab296f6767","created_at":"2026-05-22T12:23:00.521-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3dff44a2-cdb1-4a1b-8619-22e360c4ad17","direction":"outgoing","index":127912,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"86fde93d-dd6d-4d89-8612-fbdf53f30494","direction":"outgoing","index":127913,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"d6c2d510-b494-4b12-bee2-004a61937f16","direction":"outgoing","index":127914,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"b5ccc14e-e8a6-47bf-bd52-99516eba7fe9","direction":"outgoing","index":127915,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"5616281f-d7ea-4732-a8b4-b9cf3fd12fef","direction":"outgoing","index":127916,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"241c60c0-9e9d-4360-8cc1-68e0412b4564","direction":"outgoing","index":127917,"result_id":"018f476b-3123-41d2-aa07-ccab296f6767","status":200,"timestamp":"2026-05-22T12:23:00.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:00.521-04:00"},{"id":"73dfb31e-3902-427d-95b9-f03daa040154","created_at":"2026-05-22T12:23:01.444-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0506be86-2542-4a19-9990-2fefc048dda0","direction":"outgoing","index":127918,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"2130df58-d530-494c-bee8-3df39a6a338c","direction":"outgoing","index":127919,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"ea05ec17-3d5a-4064-94c6-2ecb1a5fa0bd","direction":"outgoing","index":127920,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"f62281c6-d6bc-4388-9c83-d0c688073b84","direction":"outgoing","index":127921,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"a43dcf74-f777-4b94-98d5-72e99703f305","direction":"outgoing","index":127922,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"92400798-2324-4054-80e8-0ca610e9a691","direction":"outgoing","index":127923,"result_id":"73dfb31e-3902-427d-95b9-f03daa040154","status":200,"timestamp":"2026-05-22T12:23:01.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:01.444-04:00"},{"id":"575eb29d-5e78-463c-bcd2-a48671bd6889","created_at":"2026-05-22T12:23:02.402-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"be001eee-3a89-4930-8a95-85a2493b5c00","direction":"outgoing","index":127924,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.409-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"af12b55e-11d0-4357-91bc-a7fcc65245d5","direction":"outgoing","index":127925,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"35016206-7ca5-4a23-91bd-078e8c122f72","direction":"outgoing","index":127926,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"738880ec-b147-41e5-a966-302a6eb0b378","direction":"outgoing","index":127927,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"e9f9b19f-0dc7-4f33-a4cf-a07159a5da9d","direction":"outgoing","index":127928,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"a5f27481-9bba-4768-ace5-2c1b4dbd9ef7","direction":"outgoing","index":127929,"result_id":"575eb29d-5e78-463c-bcd2-a48671bd6889","status":200,"timestamp":"2026-05-22T12:23:02.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:02.402-04:00"},{"id":"05b4d323-f5ae-4062-9a6c-74f908e3c2a1","created_at":"2026-05-22T12:23:02.985-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"da2ac03a-8526-4244-9875-09f4570fa0f1","direction":"outgoing","index":127930,"result_id":"05b4d323-f5ae-4062-9a6c-74f908e3c2a1","status":200,"timestamp":"2026-05-22T12:23:02.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"0d8c81ef-fb3a-4311-b19e-e8a9734d650b","direction":"outgoing","index":127931,"result_id":"05b4d323-f5ae-4062-9a6c-74f908e3c2a1","status":200,"timestamp":"2026-05-22T12:23:03.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"6d75e8d9-5f8b-4699-b7d0-d8aa701743c3","direction":"outgoing","index":127932,"result_id":"05b4d323-f5ae-4062-9a6c-74f908e3c2a1","status":200,"timestamp":"2026-05-22T12:23:03.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:02.985-04:00"},{"id":"c9ca4c8f-6559-49f4-bc0e-663b1a7788d3","created_at":"2026-05-22T12:23:03.333-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4c57a492-189f-4d3b-8943-7c50fcbb539b","direction":"outgoing","index":127933,"result_id":"c9ca4c8f-6559-49f4-bc0e-663b1a7788d3","status":200,"timestamp":"2026-05-22T12:23:03.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"59b6c866-9de1-4821-94a5-907cf8103d73","direction":"outgoing","index":127934,"result_id":"c9ca4c8f-6559-49f4-bc0e-663b1a7788d3","status":200,"timestamp":"2026-05-22T12:23:03.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:03.333-04:00"},{"id":"a36be2b5-2a99-438e-a908-0790dfe462d5","created_at":"2026-05-22T12:23:03.670-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f01161fc-d771-4331-a59d-25d959110e87","direction":"outgoing","index":127935,"result_id":"a36be2b5-2a99-438e-a908-0790dfe462d5","status":200,"timestamp":"2026-05-22T12:23:03.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"4b79f455-046d-4c21-9ad3-eff79916cc38","direction":"outgoing","index":127936,"result_id":"a36be2b5-2a99-438e-a908-0790dfe462d5","status":200,"timestamp":"2026-05-22T12:23:03.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:03.670-04:00"},{"id":"b8a6ff8c-5e18-4c9e-baee-407fbb6489f7","created_at":"2026-05-22T12:23:03.825-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ef71bc73-b75a-43bd-a94b-2541ac0d94e0","direction":"outgoing","index":127937,"result_id":"b8a6ff8c-5e18-4c9e-baee-407fbb6489f7","status":200,"timestamp":"2026-05-22T12:23:03.826-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:03.825-04:00"},{"id":"3ee15410-0e8b-4ea6-a0fd-0a430f231a71","created_at":"2026-05-22T12:23:04.222-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"eba817be-eb8f-40f2-a9ea-5a8f638703f2","direction":"outgoing","index":127938,"result_id":"3ee15410-0e8b-4ea6-a0fd-0a430f231a71","status":200,"timestamp":"2026-05-22T12:23:04.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85","verb":"get"},{"id":"e46ae209-1d90-4533-b172-0169b5b0f7cd","direction":"outgoing","index":127939,"result_id":"3ee15410-0e8b-4ea6-a0fd-0a430f231a71","status":200,"timestamp":"2026-05-22T12:23:04.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355","verb":"get"},{"id":"a828fe18-3077-4958-af50-eaa74ee790e2","direction":"outgoing","index":127940,"result_id":"3ee15410-0e8b-4ea6-a0fd-0a430f231a71","status":200,"timestamp":"2026-05-22T12:23:04.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:04.222-04:00"},{"id":"9d5b777d-23b6-4fce-90a4-f8283a3eeca5","created_at":"2026-05-22T12:23:04.288-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:04.288-04:00"},{"id":"be6e1918-3732-439f-95df-0cc03dd2f492","created_at":"2026-05-22T12:23:04.293-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:04.293-04:00"},{"id":"42f1b1d4-23e9-495b-9178-87ed91e0dd28","created_at":"2026-05-22T12:23:04.295-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:04.295-04:00"},{"id":"f85c2aab-07e6-4240-903b-ada96c64367c","created_at":"2026-05-22T12:23:04.297-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:04.297-04:00"},{"id":"981808fa-5351-4a1a-900a-7aee6e1058d1","created_at":"2026-05-22T12:23:05.080-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d0a3d6e0-20eb-41c2-b612-182dd9da2951","direction":"outgoing","index":127941,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"efa9bf2a-63fd-4cb4-be83-abbc11629680","direction":"outgoing","index":127942,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"455ae568-9a60-4a8e-8252-146d7f33c718","direction":"outgoing","index":127943,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"3485207c-eac2-4966-a4a5-16d83bf9c464","direction":"outgoing","index":127944,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"a613edc3-528b-49d9-9522-935856df3eb0","direction":"outgoing","index":127945,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"dfd46fe0-9911-49a1-ba39-6c6f31c08a91","direction":"outgoing","index":127946,"result_id":"981808fa-5351-4a1a-900a-7aee6e1058d1","status":200,"timestamp":"2026-05-22T12:23:05.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:05.080-04:00"},{"id":"7418ca87-8c83-4387-b275-212a74b28fcc","created_at":"2026-05-22T12:23:07.680-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"47348a7b-4e1a-4c3e-96d0-7b341c71483a","direction":"outgoing","index":127947,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"72188b96-c0b1-4c50-948d-f4588a9176c7","direction":"outgoing","index":127948,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"59fbcf14-1dcc-465c-a502-df3e114aaf76","direction":"outgoing","index":127949,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=936911a9-3947-4cd9-9e6c-b978cb76c284\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0047750-bda8-48fe-ac46-1a92fbc70215","direction":"outgoing","index":127950,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0f02623c-e4b4-4ede-84d3-5fc4ce73223b","direction":"outgoing","index":127951,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c684cbe0-0cbb-4b06-93fc-29936e00ef1e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"126de43d-2c99-410b-b392-c93f65c4629c","direction":"outgoing","index":127952,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f4344fc9-8b59-47fe-be68-ff48c7a386d1","direction":"outgoing","index":127953,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5e4e4382-b7c6-49b0-8830-68837759d433","direction":"outgoing","index":127954,"result_id":"7418ca87-8c83-4387-b275-212a74b28fcc","status":200,"timestamp":"2026-05-22T12:23:07.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:07.680-04:00"},{"id":"16430567-d91d-49aa-b2ce-b693348dfb33","created_at":"2026-05-22T12:23:08.649-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2fd44cfe-45b8-42c4-a260-e49f2a46c6c4","direction":"outgoing","index":127955,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6a49b379-2399-4661-b37d-0025c96d4377","direction":"outgoing","index":127956,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"39357253-ea6a-496d-8013-01a2ac1974cb","direction":"outgoing","index":127957,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a44fdb1d-9234-46bb-8415-923326a879a6","direction":"outgoing","index":127958,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.710-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"422a2f28-90a9-4597-b540-4aee5ac54c99","direction":"outgoing","index":127959,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c68137d9-da49-4a96-8667-3167227329f4","direction":"outgoing","index":127960,"result_id":"16430567-d91d-49aa-b2ce-b693348dfb33","status":200,"timestamp":"2026-05-22T12:23:08.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:08.649-04:00"},{"id":"105185de-f6de-424c-9dbf-e31344565bf1","created_at":"2026-05-22T12:23:11.891-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bea3f555-6e5a-4c4b-9fd3-13e9245e9fbc","direction":"outgoing","index":127961,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"4484367f-d0bb-4f04-bf87-d8ce78d51026","direction":"outgoing","index":127962,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea5e175e-19d2-472d-b00a-ea8563e85a9a","direction":"outgoing","index":127963,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c02d9fd-5a69-4adf-9e4c-cb5c0e72b191","direction":"outgoing","index":127964,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f75bee85-4fbc-4c1c-91fe-2f265df7b4a4","direction":"outgoing","index":127965,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3255c32-5c75-43fa-a0d0-08802d968ae0","direction":"outgoing","index":127966,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"10a1a605-dc73-420a-98cf-7737aed7bc7b","direction":"outgoing","index":127967,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"545b59f1-e7d0-4f3e-b1e8-dcecb841d575","direction":"outgoing","index":127968,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:11.998-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ad0b218-9ddc-4066-ab2e-3df3efe8f0d2","direction":"outgoing","index":127969,"result_id":"105185de-f6de-424c-9dbf-e31344565bf1","status":200,"timestamp":"2026-05-22T12:23:12.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:11.891-04:00"},{"id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","created_at":"2026-05-22T12:23:14.092-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6fb53c04-93fe-43e1-b319-1a4f903cd75f","direction":"outgoing","index":127970,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"bf2c97d1-9bf5-4cf1-a6e9-11905ddd7901","direction":"outgoing","index":127971,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4c662267-bcc0-4128-8abb-f042bf64340d","direction":"outgoing","index":127972,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f08bc657-789b-4c21-b19a-92ddeb798a5f","direction":"outgoing","index":127973,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"0952819f-3457-457b-96c5-1e9adbd176c8","direction":"outgoing","index":127974,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1680fd73-75ec-441b-b002-6c61e05a5e50","direction":"outgoing","index":127975,"result_id":"8fb5afbb-cad2-4c5f-948b-445a482f2d4a","status":200,"timestamp":"2026-05-22T12:23:14.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:14.092-04:00"},{"id":"70c1456f-60f2-43c1-9210-371546c5ba73","created_at":"2026-05-22T12:23:16.420-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"07ef4265-d0d0-4527-9ec5-578c0a6c2efb","direction":"outgoing","index":127976,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f4a36c17-843e-493d-a644-2714692da113","direction":"outgoing","index":127977,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"afdc887d-a104-492d-a55f-41886d68e19f","direction":"outgoing","index":127978,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f60fac36-f18f-4cbc-b95b-b1b8e7fba7c5","direction":"outgoing","index":127979,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"84fc059d-6dc9-4fab-84f8-19da764946a7","direction":"outgoing","index":127980,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6f001791-8187-4749-ae66-d84fba09ebad","direction":"outgoing","index":127981,"result_id":"70c1456f-60f2-43c1-9210-371546c5ba73","status":200,"timestamp":"2026-05-22T12:23:16.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:16.420-04:00"},{"id":"7427d64f-60a9-41b7-b63c-ae36ce5212d1","created_at":"2026-05-22T12:23:16.713-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ca428b4c-cde1-47f4-90ec-c7e83875c95e","direction":"outgoing","index":127982,"result_id":"7427d64f-60a9-41b7-b63c-ae36ce5212d1","status":200,"timestamp":"2026-05-22T12:23:16.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:16.713-04:00"},{"id":"c4915262-96be-4f64-b9a6-2327621ff40e","created_at":"2026-05-22T12:23:17.248-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"089586b6-0a7f-423d-8787-7c3f07549f0a","direction":"outgoing","index":127983,"result_id":"c4915262-96be-4f64-b9a6-2327621ff40e","status":200,"timestamp":"2026-05-22T12:23:17.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85","verb":"get"},{"id":"77158179-5270-4321-b9a8-5d84e9456914","direction":"outgoing","index":127984,"result_id":"c4915262-96be-4f64-b9a6-2327621ff40e","status":200,"timestamp":"2026-05-22T12:23:17.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355","verb":"get"},{"id":"91b74256-d77e-48fd-98be-b9df1c260cd7","direction":"outgoing","index":127985,"result_id":"c4915262-96be-4f64-b9a6-2327621ff40e","status":200,"timestamp":"2026-05-22T12:23:17.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:17.248-04:00"},{"id":"f89cf1cf-abdc-4cd2-b73a-770b5844d6c1","created_at":"2026-05-22T12:23:17.597-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:17.597-04:00"},{"id":"ad53e35a-7976-425f-a5c3-8c0f7652ae8c","created_at":"2026-05-22T12:23:17.631-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:17.631-04:00"},{"id":"a5d11e90-eca0-4c8a-944b-da5a2ee2b529","created_at":"2026-05-22T12:23:17.637-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:17.637-04:00"},{"id":"79cd7276-5efa-47db-8a4c-ed504e91b059","created_at":"2026-05-22T12:23:17.639-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_height","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:17.639-04:00"},{"id":"b3b85518-4390-46ff-9247-5c74accd2431","created_at":"2026-05-22T12:23:18.452-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e3147aa6-ef2a-45a5-8e26-3ad8fe5fee8b","direction":"outgoing","index":127986,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"e86c2615-bbf4-45dd-aaf0-4c8750a7aa4b","direction":"outgoing","index":127987,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"e4ecfe2f-7579-4866-8f0d-5e75d433f5b7","direction":"outgoing","index":127988,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"c1ee7617-1608-4587-a07a-a06586a28e6d","direction":"outgoing","index":127989,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"b4b430d6-0efe-4b96-9c1f-bd82b6ea0640","direction":"outgoing","index":127990,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"4a4831fe-fc8b-48c1-8a23-7104d5daac08","direction":"outgoing","index":127991,"result_id":"b3b85518-4390-46ff-9247-5c74accd2431","status":200,"timestamp":"2026-05-22T12:23:18.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:18.452-04:00"},{"id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","created_at":"2026-05-22T12:23:21.182-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"14bb8d7c-e3e6-41f4-8dbf-97868dfe3d49","direction":"outgoing","index":127992,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9b9eb82f-2bc2-45ee-83de-fc0dd301d64b","direction":"outgoing","index":127993,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1bfb2db2-0174-4d2d-a077-e73b8e39c4e7","direction":"outgoing","index":127994,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d5a390b8-b79b-4a04-802e-d90b6ff9a1e3","direction":"outgoing","index":127995,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7e119f8d-8059-464d-b17f-767484ccf10a","direction":"outgoing","index":127996,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0e39e8a-c3f8-4732-8294-e69762cddad8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14d83d82-75d4-402e-aaaf-4a340de57bfc","direction":"outgoing","index":127997,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0e39e8a-c3f8-4732-8294-e69762cddad8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2bd1c336-01a9-47f7-99bd-d4c567b7ecce","direction":"outgoing","index":127998,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7ac0de1b-5d1a-47a5-ad4c-b95cad6c979c","direction":"outgoing","index":127999,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=71a521b1-3578-4c16-96a2-590780a5b44b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5401c1c-f4b5-45f1-a233-607c2cc439ef","direction":"outgoing","index":128000,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=71a521b1-3578-4c16-96a2-590780a5b44b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6273a926-7adc-4a5a-85ac-91b9d436d848","direction":"outgoing","index":128001,"result_id":"a4e4d537-167b-46ff-a7ef-ae74281f2cd0","status":200,"timestamp":"2026-05-22T12:23:21.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:21.182-04:00"},{"id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","created_at":"2026-05-22T12:23:22.102-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e63b2fc2-2448-4b18-a289-9f53dfb80f84","direction":"outgoing","index":128002,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"aaa3681d-af1c-4450-b582-6f28c7f7bf61","direction":"outgoing","index":128003,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fad6b80f-3d93-454f-95df-dfe701e97c4a","direction":"outgoing","index":128004,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"df8c56f5-1750-42b8-8b01-86668b01f5a8","direction":"outgoing","index":128005,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"db32f661-cbee-4be2-a58f-1ccd13a8c477","direction":"outgoing","index":128006,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6cbd892d-36bc-4f5c-9e5d-8b4513645ae5","direction":"outgoing","index":128007,"result_id":"b1a736f0-809b-446b-88a3-8c893e02e9e7","status":200,"timestamp":"2026-05-22T12:23:22.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:22.102-04:00"},{"id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","created_at":"2026-05-22T12:23:23.628-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7780d900-f045-4862-a468-ffa6802c4b94","direction":"outgoing","index":128008,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9d4e5c6e-32cf-4a1a-b363-5a3c4960a945","direction":"outgoing","index":128009,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ac42cc8-0346-4fd7-afec-12bfc962b0b0","direction":"outgoing","index":128010,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2fb70db3-52db-4232-902d-6ee598225c3a","direction":"outgoing","index":128011,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7541c63f-7a5f-459c-9d22-4b5685003595","direction":"outgoing","index":128012,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"509b9096-7626-41da-9305-0d056fb86698","direction":"outgoing","index":128013,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"57d0aa6d-d0c1-45a3-867e-0b47f7ccd09e","direction":"outgoing","index":128014,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"024e5469-8027-4407-ba9e-b53ee99d2826","direction":"outgoing","index":128015,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c7a3b0ab-a63e-417c-9300-ba5f18a65eaf","direction":"outgoing","index":128016,"result_id":"6721d28e-7ef8-4ab5-a601-0454b33bea63","status":200,"timestamp":"2026-05-22T12:23:23.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:23.628-04:00"},{"id":"9524c201-66f4-446a-9f88-f8f07fd806c3","created_at":"2026-05-22T12:23:24.741-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b2f50f7a-58d2-4c9d-9c8e-2427301c4a8e","direction":"outgoing","index":128017,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"52a6076f-b656-4a71-81f2-4e535fb105c9","direction":"outgoing","index":128018,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04b86e45-8b68-4ace-be1e-84eab042a9b8","direction":"outgoing","index":128019,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f22f31c7-d113-4426-8929-82a75ab9d3bc","direction":"outgoing","index":128020,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"66ede2a1-b355-4c08-9360-be43325b0979","direction":"outgoing","index":128021,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba7f6f2f-6507-4e2e-acbb-d82957ed83e5","direction":"outgoing","index":128022,"result_id":"9524c201-66f4-446a-9f88-f8f07fd806c3","status":200,"timestamp":"2026-05-22T12:23:24.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:24.741-04:00"},{"id":"466fe94d-008b-4f22-a3ab-7016dae27e76","created_at":"2026-05-22T12:23:25.857-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2bd3c262-8d2a-4b5c-b207-11a89a5403ce","direction":"outgoing","index":128023,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"9db7a9ba-4c16-4109-a070-e3d88c247d9b","direction":"outgoing","index":128024,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e8fd9b4-59da-4764-b160-f60d828f5004","direction":"outgoing","index":128025,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"379abad2-1bc3-4e5e-81fe-59f1f45b7a85","direction":"outgoing","index":128026,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"0e9c16b1-eac6-47eb-95a1-38ca1734e3bf","direction":"outgoing","index":128027,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26c9f5b2-c0e1-4575-a3e9-79cdf776f830","direction":"outgoing","index":128028,"result_id":"466fe94d-008b-4f22-a3ab-7016dae27e76","status":200,"timestamp":"2026-05-22T12:23:25.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:25.857-04:00"},{"id":"d7da5b65-bf67-44e6-91b6-e76a32b550b0","created_at":"2026-05-22T12:23:26.048-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"990188d5-9840-4d1d-ab1d-69ae4962b497","direction":"outgoing","index":128029,"result_id":"d7da5b65-bf67-44e6-91b6-e76a32b550b0","status":200,"timestamp":"2026-05-22T12:23:26.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.048-04:00"},{"id":"343cb242-1ee7-4c07-935f-fd53109ae381","created_at":"2026-05-22T12:23:26.545-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4379c4ce-38eb-420d-807e-27c5a26ad1ec","direction":"outgoing","index":128030,"result_id":"343cb242-1ee7-4c07-935f-fd53109ae381","status":200,"timestamp":"2026-05-22T12:23:26.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85","verb":"get"},{"id":"f1188a52-e037-4858-9613-2799488442cd","direction":"outgoing","index":128031,"result_id":"343cb242-1ee7-4c07-935f-fd53109ae381","status":200,"timestamp":"2026-05-22T12:23:26.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355","verb":"get"},{"id":"4ca02532-5847-48be-a20d-bf2c971be275","direction":"outgoing","index":128032,"result_id":"343cb242-1ee7-4c07-935f-fd53109ae381","status":200,"timestamp":"2026-05-22T12:23:26.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.545-04:00"},{"id":"a658fdda-f35c-4157-bf50-77d03bdda085","created_at":"2026-05-22T12:23:26.972-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.972-04:00"},{"id":"1c9bffff-ed75-4a72-8dea-39a82531e8ad","created_at":"2026-05-22T12:23:26.984-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.984-04:00"},{"id":"0d0ea049-445a-4e2c-8184-09ef12a55e03","created_at":"2026-05-22T12:23:26.989-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.989-04:00"},{"id":"d10896bf-8cb9-4e87-99c8-95f6ec72f73f","created_at":"2026-05-22T12:23:26.991-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_bmi","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:26.991-04:00"},{"id":"1037f01b-665a-4133-b540-41712d8c3d1c","created_at":"2026-05-22T12:23:27.868-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e9c6dc28-1f5a-4f84-ae8a-91d7f8af92e2","direction":"outgoing","index":128033,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"20791eb0-a930-4cd0-bd75-f67160ed98a9","direction":"outgoing","index":128034,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"78941dff-3c9f-4636-9b80-de6ea88d9469","direction":"outgoing","index":128035,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"8a80a1e0-a711-401a-a983-3c8372f222ba","direction":"outgoing","index":128036,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"099145b3-847b-45ec-9cb6-a1f0b3ba7e95","direction":"outgoing","index":128037,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"943706f8-f465-4954-af3e-36c10c126154","direction":"outgoing","index":128038,"result_id":"1037f01b-665a-4133-b540-41712d8c3d1c","status":200,"timestamp":"2026-05-22T12:23:27.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:27.868-04:00"},{"id":"37bc181e-dcbb-4af2-9117-27f8c246c849","created_at":"2026-05-22T12:23:28.349-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1282b912-ce58-4778-968e-59ca128de73a","direction":"outgoing","index":128039,"result_id":"37bc181e-dcbb-4af2-9117-27f8c246c849","status":200,"timestamp":"2026-05-22T12:23:28.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"5f2b1ddb-1826-420e-9f55-a3d649da2f2b","direction":"outgoing","index":128040,"result_id":"37bc181e-dcbb-4af2-9117-27f8c246c849","status":200,"timestamp":"2026-05-22T12:23:28.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"e6ce18d8-4b57-41a3-a8c1-070b7113b6d9","direction":"outgoing","index":128041,"result_id":"37bc181e-dcbb-4af2-9117-27f8c246c849","status":200,"timestamp":"2026-05-22T12:23:28.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:28.349-04:00"},{"id":"01fac34d-25b6-4051-bc70-1476899bf0c6","created_at":"2026-05-22T12:23:29.707-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9e8b9cb3-e752-4eaa-9ff5-fb3c1ecb27ae","direction":"outgoing","index":128042,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"35067707-4305-46e9-9e35-23ce230c9702","direction":"outgoing","index":128043,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"1e32c397-db84-4d41-b654-4fd4d5a52353","direction":"outgoing","index":128044,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e0fc4ae7-f6f8-498b-9b32-1871d917b055","direction":"outgoing","index":128045,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"196f47a7-ded6-4f4f-b1a4-780b1ff400cb","direction":"outgoing","index":128046,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"6fb00dfc-d15e-4165-b328-81804a57d942","direction":"outgoing","index":128047,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f3300d91-6830-4041-b8c9-457c95b3277c","direction":"outgoing","index":128048,"result_id":"01fac34d-25b6-4051-bc70-1476899bf0c6","status":200,"timestamp":"2026-05-22T12:23:29.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:29.707-04:00"},{"id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","created_at":"2026-05-22T12:23:30.724-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"48a6d5e0-2b0c-4fde-bf48-5b0c6a489023","direction":"outgoing","index":128049,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"8e0d40c4-e962-4e3a-ac44-04ee8dc9fd22","direction":"outgoing","index":128050,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"9f1ed22b-90c9-4fec-836b-ecbdd507b267","direction":"outgoing","index":128051,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"b76d852b-bb2e-4d03-b62f-f5e1aa920777","direction":"outgoing","index":128052,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"806cafe0-f3a8-4bea-a396-7f51e9ec5033","direction":"outgoing","index":128053,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"887119a5-0a9c-4489-b165-7b3f2f03d4fa","direction":"outgoing","index":128054,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"5728dc98-b260-4dfe-8512-024828871e5d","direction":"outgoing","index":128055,"result_id":"77f2e917-95b9-4994-8fac-0dc1e23cf779","status":200,"timestamp":"2026-05-22T12:23:30.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:30.724-04:00"},{"id":"92396338-a329-4db4-adad-2a14cd904596","created_at":"2026-05-22T12:23:33.350-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5f338ea3-e75a-4a46-ba94-8794cd8bdbda","direction":"outgoing","index":128056,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"401c29b8-ad56-4129-96c1-93e3a6a235e4","direction":"outgoing","index":128057,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"cc00d263-e12f-43bf-b8f0-cb9f28910f8b","direction":"outgoing","index":128058,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.395-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"8680e215-ca05-4bbb-9a85-dd6703430afb","direction":"outgoing","index":128059,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81c6ad90-2e33-47ef-8025-2294c629fdf5","direction":"outgoing","index":128060,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6698e1e-5d73-4bc2-af0d-cfac7b74090c","direction":"outgoing","index":128061,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"888f9226-2e9a-4405-89d6-da7809474759","direction":"outgoing","index":128062,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f54e00d7-0b64-4bbc-a763-15515202e931","direction":"outgoing","index":128063,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c6235eb-ef07-4a3b-bb59-d07b3153d616","direction":"outgoing","index":128064,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc12599a-a49e-4ecc-b892-f339592c701a","direction":"outgoing","index":128065,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a32a160b-1401-4cd6-b0bd-9beadb6dc20f","direction":"outgoing","index":128066,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7228e306-06fe-4224-9939-1ea1267fe06d","direction":"outgoing","index":128067,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=60a5b8d1-dac9-485a-93de-2bed666cc3da\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea583c1a-fbd1-429e-ac23-000563d4eade","direction":"outgoing","index":128068,"result_id":"92396338-a329-4db4-adad-2a14cd904596","status":200,"timestamp":"2026-05-22T12:23:33.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:33.350-04:00"},{"id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","created_at":"2026-05-22T12:23:36.059-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"04976a9c-18e9-4fbc-99b4-f1af96b806fe","direction":"outgoing","index":128069,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=sdoh\u0026patient=85","verb":"get"},{"id":"7ad08ae5-811a-4489-89ee-344a3591d236","direction":"outgoing","index":128070,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"59334536-d95e-4faf-bc79-f50c02560530","direction":"outgoing","index":128071,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"dcb190c4-9ef6-4272-9cb5-f7fe2a97b2e9","direction":"outgoing","index":128072,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49dc83db-89b3-411a-8fb6-903577012ca5","direction":"outgoing","index":128073,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3630f03-84d3-455b-b92e-83f603435bf2","direction":"outgoing","index":128074,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b97b267a-2d39-44c7-8287-4da27f745e9e","direction":"outgoing","index":128075,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a1a8a9b-ce8d-450c-94c9-032952815f74","direction":"outgoing","index":128076,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"08be50ea-8115-4b02-8441-62af8c290a70","direction":"outgoing","index":128077,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9225973-030b-4a09-b82c-2b1108aacb81","direction":"outgoing","index":128078,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4aec5fc1-84c3-4ed5-a82c-130ffd5b57a4","direction":"outgoing","index":128079,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac6f1186-4c6a-4ce6-8392-3caed5ed4777","direction":"outgoing","index":128080,"result_id":"266ee542-9072-4508-bd25-8a9fb63c3dd4","status":200,"timestamp":"2026-05-22T12:23:36.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf32446-2bc4-4dea-aa15-b3e64b4e7837\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:36.059-04:00"},{"id":"6b147982-f3a9-4040-ac25-ab5e29d72418","created_at":"2026-05-22T12:23:36.326-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cb414604-231c-4af6-b9ab-60f71e1f1895","direction":"outgoing","index":128081,"result_id":"6b147982-f3a9-4040-ac25-ab5e29d72418","status":200,"timestamp":"2026-05-22T12:23:36.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:36.326-04:00"},{"id":"cb5317dc-ccfe-4033-8d40-6c17b2e47dc3","created_at":"2026-05-22T12:23:36.896-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55ee5ec5-d83b-439e-b9b5-0220325d6e9f","direction":"outgoing","index":128082,"result_id":"cb5317dc-ccfe-4033-8d40-6c17b2e47dc3","status":200,"timestamp":"2026-05-22T12:23:36.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"4025a5ce-10cd-4765-a378-9c8bae3507ef","direction":"outgoing","index":128083,"result_id":"cb5317dc-ccfe-4033-8d40-6c17b2e47dc3","status":200,"timestamp":"2026-05-22T12:23:36.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"13ad1c64-793e-4b93-b14a-a91cd4044901","direction":"outgoing","index":128084,"result_id":"cb5317dc-ccfe-4033-8d40-6c17b2e47dc3","status":200,"timestamp":"2026-05-22T12:23:36.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:36.896-04:00"},{"id":"a03ab51b-8fdc-45af-a24e-30891e3a5dbe","created_at":"2026-05-22T12:23:37.647-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:37.647-04:00"},{"id":"07e91e95-1546-4043-a692-691aca517f98","created_at":"2026-05-22T12:23:37.701-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:37.701-04:00"},{"id":"75b58909-c00e-4e53-9efe-3034626e267f","created_at":"2026-05-22T12:23:38.395-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"25cf007b-a2b4-4d99-8f09-480bb3d6323d","direction":"outgoing","index":128085,"result_id":"75b58909-c00e-4e53-9efe-3034626e267f","status":200,"timestamp":"2026-05-22T12:23:38.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/be5b9ebc-6416-42be-abbf-c99363774f10","verb":"get"},{"id":"ed6d7285-c6c0-4b2d-bf63-95ec5bf8e9c3","direction":"outgoing","index":128086,"result_id":"75b58909-c00e-4e53-9efe-3034626e267f","status":200,"timestamp":"2026-05-22T12:23:38.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"2933f418-4771-43ea-8958-5d196393c3bd","direction":"outgoing","index":128087,"result_id":"75b58909-c00e-4e53-9efe-3034626e267f","status":200,"timestamp":"2026-05-22T12:23:38.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"9ee8324d-4aaf-480b-a8ad-18acea35fbb7","direction":"outgoing","index":128088,"result_id":"75b58909-c00e-4e53-9efe-3034626e267f","status":200,"timestamp":"2026-05-22T12:23:38.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:38.395-04:00"},{"id":"09435325-b97c-48b5-b235-cc4728e43fe8","created_at":"2026-05-22T12:23:38.479-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:38.479-04:00"},{"id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","created_at":"2026-05-22T12:23:39.310-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"53b9ce24-d712-474f-b7e4-5f62059038ce","direction":"outgoing","index":128089,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=85","verb":"get"},{"id":"6b4bab69-8292-4fde-b36e-becccc57e9d4","direction":"outgoing","index":128090,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=355","verb":"get"},{"id":"aa2481fe-115d-473f-b5f8-a55f2aa773ac","direction":"outgoing","index":128091,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"cf6ba775-aa76-4037-ae3a-b2935bd19ad1","direction":"outgoing","index":128092,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=Patient/355","verb":"get"},{"id":"fdbcab19-c96f-4617-835b-293abd1f39e6","direction":"outgoing","index":128093,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"de52ca95-2878-4401-9faa-7efb60094ac0","direction":"outgoing","index":128094,"result_id":"2aa6e5d7-681e-4bf2-a434-1b4a60e466c8","status":200,"timestamp":"2026-05-22T12:23:39.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:39.310-04:00"},{"id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","created_at":"2026-05-22T12:23:42.093-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"97304104-96c4-4f4b-a868-cb0588b9e48a","direction":"outgoing","index":128095,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"64433106-45f3-4811-a675-91a0bb621b36","direction":"outgoing","index":128096,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0dd22113-6749-4130-a865-33fc6592b538","direction":"outgoing","index":128097,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f9b8fa5-6118-4448-9902-9d0296769f81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1057e950-cbb1-41dd-9559-e1ceaad35671","direction":"outgoing","index":128098,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c07362f6-1638-4e97-a2ae-5403a749107d","direction":"outgoing","index":128099,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a97e4ddb-626e-4d45-9ef3-51b642f6e09b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2fabe24e-fcdb-4f0f-853c-5bd40d61a8b7","direction":"outgoing","index":128100,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d6f9af13-0770-447b-9100-66f777338ffb","direction":"outgoing","index":128101,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=34703634-27f7-40d6-b747-7cd160c60b70\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c1ed2cb-e65b-407b-8160-721633203def","direction":"outgoing","index":128102,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b625cd91-2bda-4f48-80c9-f7cad8f6ee3e","direction":"outgoing","index":128103,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=562fe9ff-6c54-4792-907a-bb9c625d0729\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b78a2142-efcd-4ced-b722-5a349e696d14","direction":"outgoing","index":128104,"result_id":"835d2185-77b4-4d23-b8b3-5306f55c9b83","status":200,"timestamp":"2026-05-22T12:23:42.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:42.093-04:00"},{"id":"bc2448d1-185b-412f-ab42-088bae5a7119","created_at":"2026-05-22T12:23:43.154-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"810bb970-ff0e-43f4-a8d8-a8030f1e3aca","direction":"outgoing","index":128105,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3fff5a46-3883-49d8-880d-2eed5add18eb","direction":"outgoing","index":128106,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b4931f35-3c3a-4271-b325-e63cb8a95ad9","direction":"outgoing","index":128107,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e2d9ba6d-47d1-460f-a0b3-58d4ceea407e","direction":"outgoing","index":128108,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"53b9e107-95c2-4471-afe5-5512892c0f1e","direction":"outgoing","index":128109,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8b3389e1-320d-4a29-9838-c84a08c5cd6c","direction":"outgoing","index":128110,"result_id":"bc2448d1-185b-412f-ab42-088bae5a7119","status":200,"timestamp":"2026-05-22T12:23:43.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:43.154-04:00"},{"id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","created_at":"2026-05-22T12:23:44.867-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"75578476-51ba-4200-a766-a87ed14b116b","direction":"outgoing","index":128111,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"40d66ec0-8d21-4f1c-8ebd-c5bba3223cc2","direction":"outgoing","index":128112,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"332d500e-158e-4125-a6bf-009b799c4eb2","direction":"outgoing","index":128113,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"414374e6-483b-4a10-b183-07cc33736e0c","direction":"outgoing","index":128114,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"3420ee11-2f57-4b81-a4c7-07a58c37db27","direction":"outgoing","index":128115,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7723a88a-be3c-4a71-ac14-d93c7d64e837","direction":"outgoing","index":128116,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46695d99-eaf5-492a-ad19-ec0a40516d62","direction":"outgoing","index":128117,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6d2513bc-4774-49b3-869c-ee2ccea49fd5","direction":"outgoing","index":128118,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79169084-e212-4083-8d35-28a316c7d015","direction":"outgoing","index":128119,"result_id":"7c0af9f2-2e71-4892-af86-d0532c9b8b24","status":200,"timestamp":"2026-05-22T12:23:44.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:44.867-04:00"},{"id":"cde83dbe-6af7-4087-989d-95cba95999bc","created_at":"2026-05-22T12:23:46.089-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a5b213d4-11ca-4e14-b27b-888474681da0","direction":"outgoing","index":128120,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"46df39f6-8e77-43c1-a2c1-118267b1f644","direction":"outgoing","index":128121,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cd418da4-9906-4c95-a54a-239ba9bfe960","direction":"outgoing","index":128122,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"66ecf909-afbb-483a-bbc7-430980c837fc","direction":"outgoing","index":128123,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"261cb81a-1bb0-45c3-a9a7-72444722b9bd","direction":"outgoing","index":128124,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"948a1ab9-6bcc-4db3-abb4-161323684eaa","direction":"outgoing","index":128125,"result_id":"cde83dbe-6af7-4087-989d-95cba95999bc","status":200,"timestamp":"2026-05-22T12:23:46.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:46.089-04:00"},{"id":"1847842d-c3a6-4744-bdee-05a445399a82","created_at":"2026-05-22T12:23:47.212-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a2b50676-763f-40f5-ac7e-1c425a2d56a1","direction":"outgoing","index":128126,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"3469ca14-e240-4322-b269-4e9a673641e7","direction":"outgoing","index":128127,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e940fe65-baee-47ed-b660-630c751d49c6","direction":"outgoing","index":128128,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6cd2ea18-1818-4376-818b-9f54e0e18967","direction":"outgoing","index":128129,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"740f792c-3e07-45d2-988f-b5d36508dd2b","direction":"outgoing","index":128130,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"98db26bf-97cc-4221-8fcb-47b5f0d4239d","direction":"outgoing","index":128131,"result_id":"1847842d-c3a6-4744-bdee-05a445399a82","status":200,"timestamp":"2026-05-22T12:23:47.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:47.212-04:00"},{"id":"52c56d75-6dab-4c74-820f-7a4ab3e30fbf","created_at":"2026-05-22T12:23:47.414-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1df39b6f-7f54-4dd5-a714-14edad7bb82c","direction":"outgoing","index":128132,"result_id":"52c56d75-6dab-4c74-820f-7a4ab3e30fbf","status":200,"timestamp":"2026-05-22T12:23:47.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:47.414-04:00"},{"id":"8c6fcc15-34ab-477f-9b1c-f0bc66988f45","created_at":"2026-05-22T12:23:47.891-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6a868f39-7101-45d7-ab48-ef4ce64986c8","direction":"outgoing","index":128133,"result_id":"8c6fcc15-34ab-477f-9b1c-f0bc66988f45","status":200,"timestamp":"2026-05-22T12:23:47.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=85","verb":"get"},{"id":"1eff5b5a-75a2-436d-a93d-525881c02dec","direction":"outgoing","index":128134,"result_id":"8c6fcc15-34ab-477f-9b1c-f0bc66988f45","status":200,"timestamp":"2026-05-22T12:23:47.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=355","verb":"get"},{"id":"d5ceb082-6ba8-4554-8505-0f17e0cd6f74","direction":"outgoing","index":128135,"result_id":"8c6fcc15-34ab-477f-9b1c-f0bc66988f45","status":200,"timestamp":"2026-05-22T12:23:47.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:47.891-04:00"},{"id":"bbc2e11e-0fab-4db9-80ab-37848ec94673","created_at":"2026-05-22T12:23:48.221-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:48.221-04:00"},{"id":"7e7e1559-0fe9-4bc9-a7e5-f5965dfbac81","created_at":"2026-05-22T12:23:48.311-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:48.311-04:00"},{"id":"c3d81689-753b-4951-8d59-957b8f7ff1b4","created_at":"2026-05-22T12:23:48.313-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:48.313-04:00"},{"id":"ada27861-572c-47e0-ae90-6f8672264154","created_at":"2026-05-22T12:23:48.314-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_average_blood_pressure","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:48.314-04:00"},{"id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","created_at":"2026-05-22T12:23:49.207-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"766ceda5-86d0-4f58-a5a5-5d6c0821516a","direction":"outgoing","index":128136,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"007fad6d-c5cb-4fc4-925d-677124d53ff2","direction":"outgoing","index":128137,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"1d728748-be6d-456f-8e8d-5164b0990685","direction":"outgoing","index":128138,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"e7d6c948-c538-4852-8aa5-c793679cbb87","direction":"outgoing","index":128139,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"20b434ae-09e5-4249-aea3-18d3c1f0b88e","direction":"outgoing","index":128140,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"c2ce54fa-900b-476f-90d4-1c4c6628faae","direction":"outgoing","index":128141,"result_id":"fe7860f8-625c-4f5f-8baa-6b83c07d9c32","status":200,"timestamp":"2026-05-22T12:23:49.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:49.207-04:00"},{"id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","created_at":"2026-05-22T12:23:50.840-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"776de6bf-5961-4508-803c-e895fbd43b23","direction":"outgoing","index":128142,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.842-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"955ddcc0-c3a6-4ed9-b143-a6e39722576e","direction":"outgoing","index":128143,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d934aa26-9c2b-4f1a-afad-2b3c2d39e67d","direction":"outgoing","index":128144,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f9b8fa5-6118-4448-9902-9d0296769f81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"853967d7-5246-41c5-9ac3-a7761542c0b6","direction":"outgoing","index":128145,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"68c247d9-dd9c-4bb5-9187-befcac6a54b8","direction":"outgoing","index":128146,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a97e4ddb-626e-4d45-9ef3-51b642f6e09b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7b6b198f-f306-48c1-83cf-c12d226d6925","direction":"outgoing","index":128147,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f62c6cea-c503-4a26-9137-bf3e2b028a6f","direction":"outgoing","index":128148,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=34703634-27f7-40d6-b747-7cd160c60b70\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c505900d-e137-4ca2-a9a0-f338ab3bb091","direction":"outgoing","index":128149,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d12a6856-409f-4de9-b4c1-5396f79fdbdb","direction":"outgoing","index":128150,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=562fe9ff-6c54-4792-907a-bb9c625d0729\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a71f770f-f483-4476-a83a-9dcb577a7a6e","direction":"outgoing","index":128151,"result_id":"02e59f2a-763b-48b0-83b5-4166fc7dfb12","status":200,"timestamp":"2026-05-22T12:23:50.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:50.840-04:00"},{"id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","created_at":"2026-05-22T12:23:51.782-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b0f960cb-47c7-4be6-a115-f0f2d4719894","direction":"outgoing","index":128152,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fda34b7e-3797-43f1-b13a-84a264db2c47","direction":"outgoing","index":128153,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.802-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2cd0a239-6c77-4528-b133-833a69a7bcc7","direction":"outgoing","index":128154,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"594dd7f8-9e6f-48fd-9654-cd77af5be989","direction":"outgoing","index":128155,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abb5cd7e-e3ef-4505-a03e-f4ca1c7d23e2","direction":"outgoing","index":128156,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"43a59fc5-cb56-4cdd-a159-353400176731","direction":"outgoing","index":128157,"result_id":"a18e37f7-3867-42eb-9799-fa59aa5d7897","status":200,"timestamp":"2026-05-22T12:23:51.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:51.782-04:00"},{"id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","created_at":"2026-05-22T12:23:53.335-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"08b881ec-cbc6-413a-b0ae-cc419ea29cc6","direction":"outgoing","index":128158,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"5ebb4d77-b0b6-49e9-968f-be1529066b98","direction":"outgoing","index":128159,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dbd0875-75e1-43db-8ea6-8799269c2ac0","direction":"outgoing","index":128160,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eeb735bf-95bb-4fcd-881c-dfc19cd38fee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7960d043-8b90-4aeb-acd2-10aaea11fcb1","direction":"outgoing","index":128161,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"52f1fce9-2490-4636-8a4c-8662d6176711","direction":"outgoing","index":128162,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6530be52-663d-464b-ae17-9f6f4d2c3ea5","direction":"outgoing","index":128163,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9cfe288c-8d23-4679-90e3-2405e86a244d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e471a33-445e-49e1-8168-e34bac27473c","direction":"outgoing","index":128164,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6893729d-8406-48cd-8823-08b825ee1322","direction":"outgoing","index":128165,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62b087bb-7b3b-4c40-9c52-5bbbd6e0251d","direction":"outgoing","index":128166,"result_id":"50f5e4fd-9602-4e2a-9508-f5642d1693c3","status":200,"timestamp":"2026-05-22T12:23:53.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e437c0e9-1167-4393-a992-5ca26591fd2d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:53.335-04:00"},{"id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","created_at":"2026-05-22T12:23:54.416-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"72ca037f-19d4-4f3c-8767-95b8343f8952","direction":"outgoing","index":128167,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"73382df1-6c0e-40f2-bb82-cc60cd09ceb2","direction":"outgoing","index":128168,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"585646b9-76ec-4f28-ae42-eabb76bfca09","direction":"outgoing","index":128169,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1e47184e-7c35-47dc-9b94-060b0fe17896\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5c67c134-6a13-43a0-8578-db1cd9d14a3a","direction":"outgoing","index":128170,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ee97ab8c-589b-4b3e-b732-15315d9ed608","direction":"outgoing","index":128171,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"442c28fd-5b1a-4fb7-a616-b939bd4617a4","direction":"outgoing","index":128172,"result_id":"94c58cd5-4c80-46b2-b11f-e2864dc596ec","status":200,"timestamp":"2026-05-22T12:23:54.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f53893eb-2157-4064-910d-343035d3c084\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:54.416-04:00"},{"id":"b9f19824-502d-4b63-a02d-96cec3038369","created_at":"2026-05-22T12:23:55.414-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"013e6d55-8c42-499d-812d-aa3db077c2df","direction":"outgoing","index":128173,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d65a8677-f9f0-453d-aad4-8ab977749078","direction":"outgoing","index":128174,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"98018c56-3ce1-4ef1-bfbf-01c4c6919271","direction":"outgoing","index":128175,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9da78511-4d14-4ec1-a3f5-255bced2c93f","direction":"outgoing","index":128176,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"015ee5af-dbfd-4424-8176-4896de37b3c9","direction":"outgoing","index":128177,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d036fe3e-117a-4355-a75d-59e84ab46779","direction":"outgoing","index":128178,"result_id":"b9f19824-502d-4b63-a02d-96cec3038369","status":200,"timestamp":"2026-05-22T12:23:55.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59535bc0-2a3f-4e3c-8d96-e4b750807d5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:55.414-04:00"},{"id":"30ee739e-fbc4-44af-9be1-ebbb9f334690","created_at":"2026-05-22T12:23:55.626-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a63546c8-d7d3-42c6-a33b-4e17656eda5d","direction":"outgoing","index":128179,"result_id":"30ee739e-fbc4-44af-9be1-ebbb9f334690","status":200,"timestamp":"2026-05-22T12:23:55.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:55.626-04:00"},{"id":"415995c4-f951-4e9e-a1c6-ffe9cb004f99","created_at":"2026-05-22T12:23:56.191-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55b2cfd5-ce4e-43dd-963d-c39f39ddab9c","direction":"outgoing","index":128180,"result_id":"415995c4-f951-4e9e-a1c6-ffe9cb004f99","status":200,"timestamp":"2026-05-22T12:23:56.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85","verb":"get"},{"id":"78c5253d-6aa6-4a3b-859b-a6fb6a5a7fb6","direction":"outgoing","index":128181,"result_id":"415995c4-f951-4e9e-a1c6-ffe9cb004f99","status":200,"timestamp":"2026-05-22T12:23:56.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355","verb":"get"},{"id":"d491a8f8-b146-4808-923a-7c920c0dc7d0","direction":"outgoing","index":128182,"result_id":"415995c4-f951-4e9e-a1c6-ffe9cb004f99","status":200,"timestamp":"2026-05-22T12:23:56.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:56.191-04:00"},{"id":"bc831886-e8e9-4a93-bc07-5ff3e7202305","created_at":"2026-05-22T12:23:58.082-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:58.082-04:00"},{"id":"1a9a6425-1d34-4de1-baa2-0aa8244452ab","created_at":"2026-05-22T12:23:58.103-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:58.103-04:00"},{"id":"4f31fe88-e374-462f-8b8c-df8a9cf067e8","created_at":"2026-05-22T12:23:58.107-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:58.107-04:00"},{"id":"dff1104d-08b4-47be-887f-4c6a03f50078","created_at":"2026-05-22T12:23:58.108-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_blood_pressure","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:23:58.108-04:00"},{"id":"4a938673-1dda-480d-a8d2-18ce6d15a813","created_at":"2026-05-22T12:24:01.657-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3a99c6ad-2057-49a8-9688-243f3d0ea702","direction":"outgoing","index":128183,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"6c57830f-7f49-47fa-8c83-bafc90b6c94c","direction":"outgoing","index":128184,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.684-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"42d83f41-ad77-4e60-8f25-62bb99931ada","direction":"outgoing","index":128185,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"75c87d05-214b-4294-ac5b-05053bb700e9","direction":"outgoing","index":128186,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.720-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"8795701c-2ade-4307-b2ba-01e1b853d4e5","direction":"outgoing","index":128187,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"77656b6c-5596-4057-97fd-ed568fe1706c","direction":"outgoing","index":128188,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"9197a7e6-862c-4674-aef3-99d0bf5b257f","direction":"outgoing","index":128189,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"178a14e2-09a5-4c3c-b777-92d0e12ac6fd","direction":"outgoing","index":128190,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"7b0cc5b5-4e63-473c-8302-d4b2ac87a9b2","direction":"outgoing","index":128191,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"815e24a6-8a8d-443b-ad35-5fdacfd9f931","direction":"outgoing","index":128192,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a5c1df09-eec6-4060-84d3-7c799101a320","direction":"outgoing","index":128193,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"b76be25e-43e5-4ce5-96b5-ea43c1c5bf7a","direction":"outgoing","index":128194,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"09cd4715-04f2-4526-b8e1-a964c062e14d","direction":"outgoing","index":128195,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"be01af1b-945f-4d5c-ba8d-34e76ae86b93","direction":"outgoing","index":128196,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"7493916c-e3e0-4f3a-9e40-f5e09ebb2545","direction":"outgoing","index":128197,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"6c862dc6-61f4-4f08-bd8c-db96fc540cf7","direction":"outgoing","index":128198,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"4b5aae77-cfe8-4fa2-83ca-83076b1a3077","direction":"outgoing","index":128199,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"029b2923-61cb-4ea1-855a-91dcf08a5050","direction":"outgoing","index":128200,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a666d857-36fe-4eda-9522-52de42c17d64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6a5f7c8-cb1d-48ca-8b06-60a5823012d0","direction":"outgoing","index":128201,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"442a9a23-1689-4356-86c7-5490f10f490f","direction":"outgoing","index":128202,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"b13787d5-9487-4741-b800-063f30cc97f5","direction":"outgoing","index":128203,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"65c3f5cb-2410-4ec1-80c7-cd1421f9220c","direction":"outgoing","index":128204,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"ea7f0916-9d40-4964-bf81-2d2374f64861","direction":"outgoing","index":128205,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"777574ad-0073-4855-8b1e-d61c1dccdc44","direction":"outgoing","index":128206,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"140801c1-8406-482f-a984-846b01214359","direction":"outgoing","index":128207,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"bd5a1561-32fd-4507-a41e-baa4169cd85f","direction":"outgoing","index":128208,"result_id":"4a938673-1dda-480d-a8d2-18ce6d15a813","status":200,"timestamp":"2026-05-22T12:24:01.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:01.657-04:00"},{"id":"f62a7b4d-cc2e-4acd-9c06-a8654601d894","created_at":"2026-05-22T12:24:02.356-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3750668a-e6df-4c79-9c63-18c822460cce","direction":"outgoing","index":128209,"result_id":"f62a7b4d-cc2e-4acd-9c06-a8654601d894","status":200,"timestamp":"2026-05-22T12:24:02.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"607bd122-6d40-4cd7-a5ed-9ab1da204044","direction":"outgoing","index":128210,"result_id":"f62a7b4d-cc2e-4acd-9c06-a8654601d894","status":200,"timestamp":"2026-05-22T12:24:02.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"3b45f600-5015-4b20-be90-6e6eaf0436d3","direction":"outgoing","index":128211,"result_id":"f62a7b4d-cc2e-4acd-9c06-a8654601d894","status":200,"timestamp":"2026-05-22T12:24:02.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:02.356-04:00"},{"id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","created_at":"2026-05-22T12:24:03.403-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c717495e-0d24-41f3-accd-5e014f91605f","direction":"outgoing","index":128212,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e470e872-99d2-47f4-9962-c904b937e4f3","direction":"outgoing","index":128213,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7a1fc99c-f48d-4840-b56b-d68fa8f5a48b","direction":"outgoing","index":128214,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2c1287af-62b1-48d4-b113-4b3f07462909","direction":"outgoing","index":128215,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e7ab1cf4-2192-4081-8e1f-a27649788afe","direction":"outgoing","index":128216,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bda6152a-ec28-4e63-a72e-1c73389699af","direction":"outgoing","index":128217,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a4f4fde8-037c-4d91-a3e3-a19cdad67371","direction":"outgoing","index":128218,"result_id":"ff1cc58d-92dd-4d78-b101-14018d4c7480","status":200,"timestamp":"2026-05-22T12:24:03.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:03.403-04:00"},{"id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","created_at":"2026-05-22T12:24:04.370-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ee1e7c7c-429a-4269-a703-e561e1d233d8","direction":"outgoing","index":128219,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a299bf8e-4e08-429f-afd1-8fcd7fb9c363","direction":"outgoing","index":128220,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2f7576b9-795b-46cf-bbcb-9a55901cb2d0","direction":"outgoing","index":128221,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.395-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ba156998-a51b-46d2-82cd-ad88214cf003","direction":"outgoing","index":128222,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"888ac88e-e2c2-473a-912b-0dcbc94843ba","direction":"outgoing","index":128223,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0a7abe64-7f7a-4611-b9bd-50f5a27ae0d1","direction":"outgoing","index":128224,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4b68c133-a155-40c7-8d02-e9f948da6f7f","direction":"outgoing","index":128225,"result_id":"8cfd9c9d-5855-4c31-9399-58130d8f5955","status":200,"timestamp":"2026-05-22T12:24:04.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:04.370-04:00"},{"id":"687b782a-6a7b-433d-b152-e5bf41595b27","created_at":"2026-05-22T12:24:04.980-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"404db8f0-8931-45f6-9d07-3dd27dc498ee","direction":"outgoing","index":128226,"result_id":"687b782a-6a7b-433d-b152-e5bf41595b27","status":200,"timestamp":"2026-05-22T12:24:04.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"f06cac9a-267c-4e4a-83bd-e8feae309ea4","direction":"outgoing","index":128227,"result_id":"687b782a-6a7b-433d-b152-e5bf41595b27","status":200,"timestamp":"2026-05-22T12:24:05.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"d3f13487-5be2-4021-9327-c82764187b1f","direction":"outgoing","index":128228,"result_id":"687b782a-6a7b-433d-b152-e5bf41595b27","status":200,"timestamp":"2026-05-22T12:24:05.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"86aa861b-3ce8-4bd8-921b-37de790b81b3","direction":"outgoing","index":128229,"result_id":"687b782a-6a7b-433d-b152-e5bf41595b27","status":200,"timestamp":"2026-05-22T12:24:05.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:04.980-04:00"},{"id":"f899b5f5-26a5-40f4-925a-075c24cb137b","created_at":"2026-05-22T12:24:05.451-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"831a3423-7be2-448b-b0c7-915b074377ea","direction":"outgoing","index":128230,"result_id":"f899b5f5-26a5-40f4-925a-075c24cb137b","status":200,"timestamp":"2026-05-22T12:24:05.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"4d434049-2a30-4370-9694-01984ed62551","direction":"outgoing","index":128231,"result_id":"f899b5f5-26a5-40f4-925a-075c24cb137b","status":200,"timestamp":"2026-05-22T12:24:05.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"ac3ff625-ec51-4347-945e-226b9d8f20a2","direction":"outgoing","index":128232,"result_id":"f899b5f5-26a5-40f4-925a-075c24cb137b","status":200,"timestamp":"2026-05-22T12:24:05.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=laboratory\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:05.451-04:00"},{"id":"30e88d49-f62e-4034-947d-9a9a75c40894","created_at":"2026-05-22T12:24:05.598-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7c745ef4-a318-42e1-a3e4-15a517c5cf6b","direction":"outgoing","index":128233,"result_id":"30e88d49-f62e-4034-947d-9a9a75c40894","status":200,"timestamp":"2026-05-22T12:24:05.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:05.598-04:00"},{"id":"3cce8691-5760-4870-9395-dd8951b1ee24","created_at":"2026-05-22T12:24:09.809-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"98e95b8f-676a-43a6-af59-696684f023a5","direction":"outgoing","index":128234,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"fdf8c1cb-ee13-4cf6-975d-5fae19dd9b83","direction":"outgoing","index":128235,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"e86a6bcb-67ef-4e05-aef6-743d90c83ec4","direction":"outgoing","index":128236,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"4b302a97-0385-4c56-ac7a-705fb5c89031","direction":"outgoing","index":128237,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"b9aba9e7-04db-4cd3-bb95-0dd8543eab3f","direction":"outgoing","index":128238,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"4ff4cdd3-1066-44c6-8106-760c9209bb72","direction":"outgoing","index":128239,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"db72a594-bae9-4696-b139-573e0afbea2e","direction":"outgoing","index":128240,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"11e135b4-2e17-4c49-8db8-889fda145e20","direction":"outgoing","index":128241,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"8c953270-3351-40a6-a37d-bb6397075bb3","direction":"outgoing","index":128242,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"8f216c5a-75a2-4850-97e7-d712bbfd5bce","direction":"outgoing","index":128243,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"9c6e15d4-ac76-4d6b-ae2b-a5e946e0df5e","direction":"outgoing","index":128244,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"255c277f-4adb-4da7-ad29-b63f52eb10b2","direction":"outgoing","index":128245,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"3f43ad48-0ca7-4abb-a4a2-54211e562d18","direction":"outgoing","index":128246,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"95e1b413-7ba3-4a9c-95c1-9340a7780cb0","direction":"outgoing","index":128247,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d76a730d-613c-44d7-8413-f7597064aebe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"209a3fb2-5b60-4465-a87a-75ccc0665234","direction":"outgoing","index":128248,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d76a730d-613c-44d7-8413-f7597064aebe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da4f49e1-7ab7-4d66-87f0-7ca71e7047e2","direction":"outgoing","index":128249,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:09.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"9f1bede3-c08e-47c2-b2db-6cabe9f15be3","direction":"outgoing","index":128250,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"f1c781da-eb5b-4225-9679-f9a2f9720b6e","direction":"outgoing","index":128251,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"04676818-5ec4-4b6e-b356-599645bce656","direction":"outgoing","index":128252,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"c2b6cd3c-03f0-4c06-9e9a-41243a214273","direction":"outgoing","index":128253,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"bd557af4-8091-4ad4-bdf3-9158c1b20ccf","direction":"outgoing","index":128254,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"6695176e-e77f-4c5c-b326-db90479bed80","direction":"outgoing","index":128255,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"a89ac586-5583-40a5-99bd-5115032555cf","direction":"outgoing","index":128256,"result_id":"3cce8691-5760-4870-9395-dd8951b1ee24","status":200,"timestamp":"2026-05-22T12:24:10.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:09.809-04:00"},{"id":"ca524398-643f-45a7-b3ee-eb4a8db76273","created_at":"2026-05-22T12:24:11.221-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-screening-assessment|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|1.0.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:11.221-04:00"},{"id":"e35ee094-5e3e-49d7-96fd-1c64e92aa257","created_at":"2026-05-22T12:24:11.373-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:11.373-04:00"},{"id":"18f820a0-fcca-41cf-bfdf-cc1e9be63757","created_at":"2026-05-22T12:24:11.525-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5930fb14-2160-4133-8c2a-da4d9687f1c4","direction":"outgoing","index":128257,"result_id":"18f820a0-fcca-41cf-bfdf-cc1e9be63757","status":200,"timestamp":"2026-05-22T12:24:11.527-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:11.525-04:00"},{"id":"71a53157-b659-4673-ac89-1821e4cc0d17","created_at":"2026-05-22T12:24:11.545-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_observation_clinical_result","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:11.545-04:00"},{"id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","created_at":"2026-05-22T12:24:12.321-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8790c56b-0c42-437e-bc59-0b8ffb325e38","direction":"outgoing","index":128258,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"e26cba4e-da9d-49f6-b420-a1a829f53ba3","direction":"outgoing","index":128259,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.341-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"3f59f648-dbb7-4a87-a784-f2c1967da36f","direction":"outgoing","index":128260,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"60cf7cf2-7d57-4f35-827c-704aba0be60c","direction":"outgoing","index":128261,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"0e047923-62cb-4d07-a37a-db01ee9d3dac","direction":"outgoing","index":128262,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"61da23bc-5c9e-4f0c-a408-c1e3cc021ecd","direction":"outgoing","index":128263,"result_id":"5c5e1df2-27bd-42f8-b188-01ed4397c090","status":200,"timestamp":"2026-05-22T12:24:12.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:12.321-04:00"},{"id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","created_at":"2026-05-22T12:24:14.956-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9677f8ee-3309-4f42-883e-85e3bb51002c","direction":"outgoing","index":128264,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:14.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"579c894e-f533-4b61-805a-a525dbefc38b","direction":"outgoing","index":128265,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:14.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"90c31497-f84e-4743-b26e-22b227ff9f42","direction":"outgoing","index":128266,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:14.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c98f2c28-660b-4e24-a0c5-7716f1346e2b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53128f0b-3204-451c-8705-6f163d738851","direction":"outgoing","index":128267,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c98f2c28-660b-4e24-a0c5-7716f1346e2b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc1f09ac-31cf-4483-bf80-a526e5463e35","direction":"outgoing","index":128268,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"463dfebc-7570-4eb0-806c-54d51ac26090","direction":"outgoing","index":128269,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8dd4dd5-47f1-42cd-a3fb-9ad649ba31cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e92c40-0418-458e-905e-7e1274b3a690","direction":"outgoing","index":128270,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e8dd4dd5-47f1-42cd-a3fb-9ad649ba31cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"efffebbe-dc0a-488b-9d88-d9e4ca5bd609","direction":"outgoing","index":128271,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8b0c63a3-459f-48c4-b8c6-c87c257202a0","direction":"outgoing","index":128272,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"890c935d-fd62-47b7-b7c5-9bbd4bfc5624","direction":"outgoing","index":128273,"result_id":"6316597e-b1e8-4f8a-a640-50ebec2cbd54","status":200,"timestamp":"2026-05-22T12:24:15.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:14.956-04:00"},{"id":"4161ccec-a491-4b29-ba54-159f8f6acca4","created_at":"2026-05-22T12:24:16.211-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"37a22cc3-e8ca-4a28-8481-3b13b3e0a8ff","direction":"outgoing","index":128274,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"85494ee5-9d94-46e6-97a7-4d2282ebd4e7","direction":"outgoing","index":128275,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"bc4716a0-0aae-4499-bce0-7fc9fc350454","direction":"outgoing","index":128276,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dc5b642a-053d-4674-9731-4cb78204cba3","direction":"outgoing","index":128277,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"63623204-2428-4a82-9a3c-1357f7182c45","direction":"outgoing","index":128278,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"31b5100e-663f-446f-80c2-1796a5d84810","direction":"outgoing","index":128279,"result_id":"4161ccec-a491-4b29-ba54-159f8f6acca4","status":200,"timestamp":"2026-05-22T12:24:16.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:16.211-04:00"},{"id":"07776b64-5970-4367-b27e-ba0bed7e64d7","created_at":"2026-05-22T12:24:19.448-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8b11d5b3-9737-4168-a34a-5cf963927a45","direction":"outgoing","index":128280,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"21454cba-e032-406f-b0c4-d4ed0b26ac5e","direction":"outgoing","index":128281,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90dd76fc-fe79-4717-bd6b-1a610dfb0a64","direction":"outgoing","index":128282,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c61cbc6-ce30-4adf-8bf9-a4b46290b842","direction":"outgoing","index":128283,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"423b3f95-c82f-41eb-b912-1c89d5e8b52a","direction":"outgoing","index":128284,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca35c4b9-bd15-41bb-90f3-e06ee52f3ea7","direction":"outgoing","index":128285,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13b50c7c-80e0-4262-8460-a18749a70834","direction":"outgoing","index":128286,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"cda58d47-6933-404b-b50e-dd729900cddf","direction":"outgoing","index":128287,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f67a7fe-a5e2-40e6-a1c3-fa199fa368e2","direction":"outgoing","index":128288,"result_id":"07776b64-5970-4367-b27e-ba0bed7e64d7","status":200,"timestamp":"2026-05-22T12:24:19.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:19.448-04:00"},{"id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","created_at":"2026-05-22T12:24:26.088-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2f736db4-7869-4b2b-a6dc-e84251da8b3b","direction":"outgoing","index":128289,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"d7259ef5-6bb9-4540-b00e-53a054302ffd","direction":"outgoing","index":128290,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"61da90f1-f562-4632-bb1c-a8b2e192514e","direction":"outgoing","index":128291,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2550586d-ae5a-426c-84f9-ef241efdc904","direction":"outgoing","index":128292,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"86414409-110a-46ce-bd94-44ea4c4dd286","direction":"outgoing","index":128293,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b09db9d7-6c8a-4810-a478-ed67e0f00183","direction":"outgoing","index":128294,"result_id":"7e76c1f9-5e6b-4b8f-8eb0-c6c6721ae1fc","status":200,"timestamp":"2026-05-22T12:24:26.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:26.088-04:00"},{"id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","created_at":"2026-05-22T12:24:28.180-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e9a29a5b-8779-4fff-b12d-d1e7135f4205","direction":"outgoing","index":128295,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"86eb38c0-44f8-43ba-af71-7e8b8c66b535","direction":"outgoing","index":128296,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d20b310-57c0-41cc-b88e-762c42333f57","direction":"outgoing","index":128297,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ee67101-3bfe-45c4-9341-bc12a249f95f","direction":"outgoing","index":128298,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"688b3273-4619-47d7-a6fd-f081e090bbd0","direction":"outgoing","index":128299,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a68851c-3bd1-41a7-b8fe-971a5c847f75","direction":"outgoing","index":128300,"result_id":"398c6c4d-b8ce-43f3-be95-af878657b9e4","status":200,"timestamp":"2026-05-22T12:24:28.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.180-04:00"},{"id":"eebe0752-1f4b-4298-97c0-c2a82b341a2c","created_at":"2026-05-22T12:24:28.381-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"38aeae71-cf2b-4c77-a920-d365b0cf5536","direction":"outgoing","index":128301,"result_id":"eebe0752-1f4b-4298-97c0-c2a82b341a2c","status":200,"timestamp":"2026-05-22T12:24:28.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.381-04:00"},{"id":"a839a4f3-c2b3-4db2-bca3-696c4ad2b4af","created_at":"2026-05-22T12:24:28.830-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fac27674-4d0b-4d91-b4e3-4fd822db9cc7","direction":"outgoing","index":128302,"result_id":"a839a4f3-c2b3-4db2-bca3-696c4ad2b4af","status":200,"timestamp":"2026-05-22T12:24:28.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85","verb":"get"},{"id":"f9119dba-f493-4493-9804-3a45ae5effb0","direction":"outgoing","index":128303,"result_id":"a839a4f3-c2b3-4db2-bca3-696c4ad2b4af","status":200,"timestamp":"2026-05-22T12:24:28.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355","verb":"get"},{"id":"d41ea7fc-53a3-4ff4-af00-a143547682db","direction":"outgoing","index":128304,"result_id":"a839a4f3-c2b3-4db2-bca3-696c4ad2b4af","status":200,"timestamp":"2026-05-22T12:24:28.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.830-04:00"},{"id":"794faa97-530e-4c48-8d2d-a69b050da927","created_at":"2026-05-22T12:24:28.931-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.931-04:00"},{"id":"0e9560a5-bb88-4c5e-abae-5f853dd67dd4","created_at":"2026-05-22T12:24:28.937-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.937-04:00"},{"id":"c1360d6b-40ea-4276-a643-7efe8f9f79f7","created_at":"2026-05-22T12:24:28.940-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.940-04:00"},{"id":"52b73b74-e530-44e0-9a77-1d8b7c94ee66","created_at":"2026-05-22T12:24:28.941-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:28.941-04:00"},{"id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","created_at":"2026-05-22T12:24:29.733-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c6a26000-e57a-4962-adfd-1f296d41603c","direction":"outgoing","index":128305,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.735-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"94eba8ac-1958-4068-8681-2955052e9fe0","direction":"outgoing","index":128306,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"653cd2a1-a929-4a17-9b88-51ebe0f9d5a7","direction":"outgoing","index":128307,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"93e92047-fed0-466b-a955-2c2ab3989f17","direction":"outgoing","index":128308,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"0c4181ee-aa8a-4e75-956c-c44df207eb88","direction":"outgoing","index":128309,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"768f895d-3fac-4daf-bf89-450a885933f3","direction":"outgoing","index":128310,"result_id":"94e1f6d0-5b2f-4c51-b994-75aec0e1a065","status":200,"timestamp":"2026-05-22T12:24:29.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:29.733-04:00"},{"id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","created_at":"2026-05-22T12:24:32.363-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"21e7c718-333b-47cf-8564-12b0c23995f1","direction":"outgoing","index":128311,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"bb4ef519-a908-4ab4-a28b-6d888339cd40","direction":"outgoing","index":128312,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"414688b3-f681-4f70-b4f5-0de623118d86","direction":"outgoing","index":128313,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=74a53fe9-02e1-4c0c-8470-481240010bbc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"659ec665-1dc2-4487-b09b-96f56484166c","direction":"outgoing","index":128314,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=74a53fe9-02e1-4c0c-8470-481240010bbc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0f05307-5e3d-4b95-ab8c-af1bb16ff242","direction":"outgoing","index":128315,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"43854425-6c42-412d-b19e-be410b8272a0","direction":"outgoing","index":128316,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b8be2ab-3ef3-4063-86c7-9d478fcb1903\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2a446db-b1d5-4af2-9ef1-872a8a86613d","direction":"outgoing","index":128317,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5b8be2ab-3ef3-4063-86c7-9d478fcb1903\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bdb92a02-e1d5-4b7f-92d5-bc64286c61c8","direction":"outgoing","index":128318,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9af37d7a-746a-4d38-9246-1ae1e9997907","direction":"outgoing","index":128319,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e6dd5aff-eb2c-44d3-bcc2-d6b42329e604","direction":"outgoing","index":128320,"result_id":"df7d8acf-ea51-4cac-8fc1-9f85180204f4","status":200,"timestamp":"2026-05-22T12:24:32.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:32.363-04:00"},{"id":"609c6d09-82d0-459c-93df-bbc59609de92","created_at":"2026-05-22T12:24:33.245-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e1f66499-a620-455e-b05f-9e6ff32f469e","direction":"outgoing","index":128321,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"c185a784-924f-4885-972b-fe909cd8d358","direction":"outgoing","index":128322,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"8be188af-e119-4d59-b1a3-8ef8631367d5","direction":"outgoing","index":128323,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5c3bde35-d3a6-4154-86aa-edc4e31d7381","direction":"outgoing","index":128324,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"59fc02b2-f825-45ce-92bb-8b63d73c4d82","direction":"outgoing","index":128325,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.296-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"82792be5-58d4-47c5-b75d-62552ba572da","direction":"outgoing","index":128326,"result_id":"609c6d09-82d0-459c-93df-bbc59609de92","status":200,"timestamp":"2026-05-22T12:24:33.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:33.245-04:00"},{"id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","created_at":"2026-05-22T12:24:34.780-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"97013979-7814-4980-a6b3-ba0469d19557","direction":"outgoing","index":128327,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"544cf3d1-55ea-458f-9298-40dab3bb935e","direction":"outgoing","index":128328,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3925856c-cea4-451e-8466-fd47daf9e612","direction":"outgoing","index":128329,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91ee245e-e044-4591-97fb-eaafc1be6068","direction":"outgoing","index":128330,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a29e9cf9-2d18-4f32-a800-83dd021d2b0c","direction":"outgoing","index":128331,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2491bc60-574f-4ed9-b92c-e99f883aaba4","direction":"outgoing","index":128332,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.851-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16966cae-51f2-47fc-b1c6-173355fc37b5","direction":"outgoing","index":128333,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"433298cc-327a-42c9-a157-9aa52e841bf4","direction":"outgoing","index":128334,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8b78b5a-a80c-47b5-966e-e67c9d94e620","direction":"outgoing","index":128335,"result_id":"354f7e89-46b4-472f-8b11-e3f3b56107f0","status":200,"timestamp":"2026-05-22T12:24:34.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:34.780-04:00"},{"id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","created_at":"2026-05-22T12:24:35.848-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"658cdf7a-fc9c-479d-808f-81b0f6b19e5b","direction":"outgoing","index":128336,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"b0325230-e185-49a4-9681-db34e5beac0e","direction":"outgoing","index":128337,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"27cf40e3-a46f-40d6-93d0-9bceba69ef96","direction":"outgoing","index":128338,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff5936ee-ab37-4243-9304-0174396f5e36","direction":"outgoing","index":128339,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a038c458-03d3-4118-a781-e288325ad70a","direction":"outgoing","index":128340,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be0eaa18-9123-4f9b-8b8a-ae2aabe7047d","direction":"outgoing","index":128341,"result_id":"d6ca1051-ea51-4ba4-bf31-625a30f8da72","status":200,"timestamp":"2026-05-22T12:24:35.917-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:35.848-04:00"},{"id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","created_at":"2026-05-22T12:24:36.978-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"710eadc7-dd4d-4aa2-b1aa-64863af8fb28","direction":"outgoing","index":128342,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:36.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"fbf879ae-c89b-46e0-9f76-116a533551aa","direction":"outgoing","index":128343,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:36.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c513aff5-7ccb-4f01-9409-a5e83a067485","direction":"outgoing","index":128344,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:37.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43efe0d5-1637-4277-85ab-05c7b142cc56","direction":"outgoing","index":128345,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:37.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"44da1ffb-7a7e-4907-8b7a-fd6cf180301c","direction":"outgoing","index":128346,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:37.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7f0abb0-b2c8-4129-be40-a54ed882604e","direction":"outgoing","index":128347,"result_id":"3a3a814c-204b-40f5-a8fd-ceb0c7e28dde","status":200,"timestamp":"2026-05-22T12:24:37.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:36.978-04:00"},{"id":"b28ce381-4341-44e5-b8a2-c799a06b8a4c","created_at":"2026-05-22T12:24:37.190-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d458ba0-76b6-4df6-a7cb-9b418aa5e270","direction":"outgoing","index":128348,"result_id":"b28ce381-4341-44e5-b8a2-c799a06b8a4c","status":200,"timestamp":"2026-05-22T12:24:37.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.190-04:00"},{"id":"e00cf022-1d57-4f3f-8f4a-303b2807a8e3","created_at":"2026-05-22T12:24:37.660-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bc62f3d5-60b6-423a-91b8-9a3d02001bc4","direction":"outgoing","index":128349,"result_id":"e00cf022-1d57-4f3f-8f4a-303b2807a8e3","status":200,"timestamp":"2026-05-22T12:24:37.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85","verb":"get"},{"id":"21f736ec-f7ae-40b2-a617-cfca1f971904","direction":"outgoing","index":128350,"result_id":"e00cf022-1d57-4f3f-8f4a-303b2807a8e3","status":200,"timestamp":"2026-05-22T12:24:37.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355","verb":"get"},{"id":"d39364be-f2e8-4480-8e2e-83b2e52d47c5","direction":"outgoing","index":128351,"result_id":"e00cf022-1d57-4f3f-8f4a-303b2807a8e3","status":200,"timestamp":"2026-05-22T12:24:37.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.660-04:00"},{"id":"95170c9e-1c75-4604-a5ab-53ac4055c0d2","created_at":"2026-05-22T12:24:37.775-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.775-04:00"},{"id":"e890e9bd-2063-4515-b5ba-f5d424330db7","created_at":"2026-05-22T12:24:37.789-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.789-04:00"},{"id":"e554cd58-3f92-49ba-89fa-efea38da33bc","created_at":"2026-05-22T12:24:37.791-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.791-04:00"},{"id":"5a73dd66-d318-446c-8885-920f0a4c232d","created_at":"2026-05-22T12:24:37.792-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:37.792-04:00"},{"id":"4a2b0440-1608-49de-ac28-e0259fb7da01","created_at":"2026-05-22T12:24:38.605-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3445c8f4-9307-41ed-bece-68f2548f5012","direction":"outgoing","index":128352,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"5cd9cb9c-3ff1-4b68-843b-3358d5a88986","direction":"outgoing","index":128353,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"0c912258-5ed7-476c-a5fe-781a5d340bbf","direction":"outgoing","index":128354,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"47b97621-9c7b-47b7-a211-1d51cb51011c","direction":"outgoing","index":128355,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"154d4a48-8e0a-4d74-9ab8-bb71506cfe08","direction":"outgoing","index":128356,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"c022a904-c6c9-4951-a3af-3b15429ec1cf","direction":"outgoing","index":128357,"result_id":"4a2b0440-1608-49de-ac28-e0259fb7da01","status":200,"timestamp":"2026-05-22T12:24:38.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:38.605-04:00"},{"id":"c0e45468-7033-4104-a8bd-125c406f42a4","created_at":"2026-05-22T12:24:42.191-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1a6836d5-c956-442e-8668-045515a22c33","direction":"outgoing","index":128358,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3ce45672-a043-4e36-9c40-86e7a75362c1","direction":"outgoing","index":128359,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2531afb0-f39b-41a9-b43c-818235686c1f","direction":"outgoing","index":128360,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2228927d-2caf-44d7-b18e-5cb7df1e47f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0c1b426-1528-47c7-8206-a7b41159ed45","direction":"outgoing","index":128361,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8e294c14-12f5-4bc3-8852-8c867529a14d","direction":"outgoing","index":128362,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05ab7da2-58e4-4080-b801-471065c3c63f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff5f0f2-15cf-4030-aae3-dc501ea9ebcb","direction":"outgoing","index":128363,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3ef977f1-d5aa-4835-ab4e-007baa6419ac","direction":"outgoing","index":128364,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da785ab5-006b-4849-a84f-d3517ea40500\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"396c3f5e-6203-4e01-bb01-7d071e44efed","direction":"outgoing","index":128365,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f348639b-5afa-4d7a-b976-eb269054e3b3","direction":"outgoing","index":128366,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14844130-6d22-4318-b72e-434437fc5509\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b394bd2-b6cd-46ff-a411-eab6416a3814","direction":"outgoing","index":128367,"result_id":"c0e45468-7033-4104-a8bd-125c406f42a4","status":200,"timestamp":"2026-05-22T12:24:42.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:42.191-04:00"},{"id":"fc625638-25b9-414d-890e-af2b716be855","created_at":"2026-05-22T12:24:43.067-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6e8634cb-d5ef-412c-9a60-c7b9e6b00728","direction":"outgoing","index":128368,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"5e385280-b40d-4074-b981-5a9161d263eb","direction":"outgoing","index":128369,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ce1fe13d-5166-40c4-b60c-bad9cd6f52eb","direction":"outgoing","index":128370,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"d025f825-bdc7-4d36-b99d-efb7ff9975a5","direction":"outgoing","index":128371,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"bc80b7a6-f471-45ff-9ad1-bb02fdcda160","direction":"outgoing","index":128372,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c31f88b0-5fa0-483f-b7c5-1b0d8fd91573","direction":"outgoing","index":128373,"result_id":"fc625638-25b9-414d-890e-af2b716be855","status":200,"timestamp":"2026-05-22T12:24:43.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:43.067-04:00"},{"id":"573aec32-fbeb-48db-b25b-96f77e304714","created_at":"2026-05-22T12:24:44.643-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a25de359-23c8-41f0-8b86-b477f90afb0b","direction":"outgoing","index":128374,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b02402a4-3c63-4766-8851-8089134c0538","direction":"outgoing","index":128375,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bcbf313d-1460-46b0-bdf7-e13a90b744e6","direction":"outgoing","index":128376,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a7b5cb8-1088-4c54-b2f1-9c685a92d452\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ff214bd-fcad-4ab7-88d4-f66131acb7a9","direction":"outgoing","index":128377,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f05a7d46-1b86-4f4e-a384-6f2d59a265bb","direction":"outgoing","index":128378,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cca179b-1070-4c90-bb6b-5b37dbe62f12","direction":"outgoing","index":128379,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ba89552c-703c-4b7d-93ac-f767c77a00f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dd1ae22-49d5-4199-a037-38e33c545f66","direction":"outgoing","index":128380,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"a80e104a-bf1b-49e4-9915-5a7c4699746c","direction":"outgoing","index":128381,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fae5c446-b8e6-4729-bcd0-4229abeb53e8","direction":"outgoing","index":128382,"result_id":"573aec32-fbeb-48db-b25b-96f77e304714","status":200,"timestamp":"2026-05-22T12:24:44.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=02fb87c6-4619-40e5-a51e-cd07482354cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:44.643-04:00"},{"id":"b2d29393-9131-4899-acb6-205da3dd26a2","created_at":"2026-05-22T12:24:45.745-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b0afee79-1e79-490c-a13c-e2be4240f076","direction":"outgoing","index":128383,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"2a47f8f2-f9d7-45bc-9f2a-dc5f51f931e0","direction":"outgoing","index":128384,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a8df2a2-18c0-4cdc-b58f-c41511a57623","direction":"outgoing","index":128385,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ae20251b-6d91-4c49-aef0-eae1015f33a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d808a61-7c71-4648-9dce-85bedaa5ca62","direction":"outgoing","index":128386,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"532f355e-5daa-4c5c-ab0a-ce102e086fa8","direction":"outgoing","index":128387,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0177af02-05a2-42a8-9f81-50914ae1dc3a","direction":"outgoing","index":128388,"result_id":"b2d29393-9131-4899-acb6-205da3dd26a2","status":200,"timestamp":"2026-05-22T12:24:45.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e2441ea-389f-448b-83ed-a0a97c62cf16\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category__lastUpdated_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:45.745-04:00"},{"id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","created_at":"2026-05-22T12:24:46.931-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4d405ac9-b545-4be6-8326-c62b59500514","direction":"outgoing","index":128389,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:46.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2780c3ae-0bc5-487a-b3e0-2c867d098963","direction":"outgoing","index":128390,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:46.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0cf4dd11-fe63-4ed5-a3e7-0e7b9396b6b2","direction":"outgoing","index":128391,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:46.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bd1baeee-6b8f-4712-969f-63a626cb24f5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cdb2cf32-37bd-48eb-9884-3993bdb8c3fe","direction":"outgoing","index":128392,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:46.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"3ebedf98-8fe4-4264-b8ef-6fc024533103","direction":"outgoing","index":128393,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:46.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13468b2b-b122-448c-a7f5-0ac79e4bf8b6","direction":"outgoing","index":128394,"result_id":"d9223324-2a34-46d1-b342-a7c1c2a568d1","status":200,"timestamp":"2026-05-22T12:24:47.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=085c713d-6788-4292-8848-9a4e54a4fa04\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:46.931-04:00"},{"id":"333ba8b2-ac7c-42cf-bee7-8565a93cd570","created_at":"2026-05-22T12:24:47.130-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a7373506-6c74-4f80-90fa-0b9fe65597aa","direction":"outgoing","index":128395,"result_id":"333ba8b2-ac7c-42cf-bee7-8565a93cd570","status":200,"timestamp":"2026-05-22T12:24:47.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:47.130-04:00"},{"id":"f36fefc5-e0b4-4c9a-a85c-4980771949cb","created_at":"2026-05-22T12:24:47.595-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b5248295-c2e7-4eb0-bf5a-02c805f67a94","direction":"outgoing","index":128396,"result_id":"f36fefc5-e0b4-4c9a-a85c-4980771949cb","status":200,"timestamp":"2026-05-22T12:24:47.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85","verb":"get"},{"id":"757fdf3e-f308-44f3-b25f-d053f9762db6","direction":"outgoing","index":128397,"result_id":"f36fefc5-e0b4-4c9a-a85c-4980771949cb","status":200,"timestamp":"2026-05-22T12:24:47.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355","verb":"get"},{"id":"fcfa6fc1-b8eb-45d3-84af-309e970b67c7","direction":"outgoing","index":128398,"result_id":"f36fefc5-e0b4-4c9a-a85c-4980771949cb","status":200,"timestamp":"2026-05-22T12:24:47.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:47.595-04:00"},{"id":"fc5c4ee3-44ff-4cb1-8b86-d4f240085a46","created_at":"2026-05-22T12:24:48.085-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:48.085-04:00"},{"id":"cb8734fb-b203-4284-985c-bcc6193b9170","created_at":"2026-05-22T12:24:48.102-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:48.102-04:00"},{"id":"c9d6bba6-1333-47d6-b4f4-6b635b85d105","created_at":"2026-05-22T12:24:48.106-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:48.106-04:00"},{"id":"789edefb-acde-4013-bfc5-b1a9206c70c7","created_at":"2026-05-22T12:24:48.108-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_body_weight","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:48.108-04:00"},{"id":"37610058-9845-4919-b04f-36b8b4afd033","created_at":"2026-05-22T12:24:51.030-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"96fd207e-4a0b-44bb-a369-603443c14750","direction":"outgoing","index":128399,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85","verb":"get"},{"id":"bb8ceb5b-4930-4922-852b-cd773188c4d2","direction":"outgoing","index":128400,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=20f151a8-bb6d-4032-a87c-24d4a8e01a93\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c01cc7d4-436b-4c9f-bf05-94e1d9e6cee3","direction":"outgoing","index":128401,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/_search","verb":"post"},{"id":"cc3e45d2-41cb-4eea-b1ea-d96b32c1ec0e","direction":"outgoing","index":128402,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=20f151a8-bb6d-4032-a87c-24d4a8e01a93\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d07c71a-0a5a-4660-8d9e-2d6d653c7f5a","direction":"outgoing","index":128403,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85","verb":"get"},{"id":"8732f7a6-2b10-4af9-81a2-84e2140c5ff4","direction":"outgoing","index":128404,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fe6dcb8-31ad-4b7b-bc1b-9857e17ce4ec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e6676096-52f3-4e3b-970f-3bea24ff795c","direction":"outgoing","index":128405,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355","verb":"get"},{"id":"4cd6a94b-9710-4689-a05d-34aa33e2c34a","direction":"outgoing","index":128406,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0b215bad-7b8a-4604-b7e4-5ba498c4ab4e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"643f9bbb-1ea9-4e1a-adf4-f4f78bac9356","direction":"outgoing","index":128407,"result_id":"37610058-9845-4919-b04f-36b8b4afd033","status":200,"timestamp":"2026-05-22T12:24:51.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:51.030-04:00"},{"id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","created_at":"2026-05-22T12:24:52.105-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b28d9caa-e2c8-4190-9cb2-8829349fafa2","direction":"outgoing","index":128408,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"928fe26d-8198-4840-a10e-4a8c827c6371","direction":"outgoing","index":128409,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d230a4bb-b573-49b2-93b6-17b266999e32","direction":"outgoing","index":128410,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bca10030-0094-4371-8281-1f0d7b6286f1","direction":"outgoing","index":128411,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"622aa8d1-15ba-4439-beaa-0a3d17d128ec","direction":"outgoing","index":128412,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c3c6f05d-0f1d-4731-ba21-93ae5fe1b48f","direction":"outgoing","index":128413,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"08cdcfa1-dafb-4e7b-8b5a-695b0f3753b9","direction":"outgoing","index":128414,"result_id":"3862a6cf-f99f-4723-8585-92db4f6ba34e","status":200,"timestamp":"2026-05-22T12:24:52.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_code_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:52.105-04:00"},{"id":"4200b899-63a6-48ae-a208-7c67e227253c","created_at":"2026-05-22T12:24:54.630-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5a87e6c0-e796-447b-a4af-51075bedd816","direction":"outgoing","index":128415,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"74f462e8-5801-4d4a-924d-18b116c0e9c3","direction":"outgoing","index":128416,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47cfd436-52cd-4e17-9335-dbb51ed0f048\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c93768bc-f1c7-4a8b-9419-176b0266256a","direction":"outgoing","index":128417,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"573dcc81-af90-4a5c-a9e6-617b83f4a243","direction":"outgoing","index":128418,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=47cfd436-52cd-4e17-9335-dbb51ed0f048\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e624c650-f4ad-451e-889d-3fa84e417d73","direction":"outgoing","index":128419,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"aed918cf-3b4d-4890-a66a-4283145337dd","direction":"outgoing","index":128420,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9b8a67cf-9846-42e3-9ec2-2800111741ec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"586e0fa5-4699-40be-b6d0-87bde649831d","direction":"outgoing","index":128421,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c10c5c86-0786-4bd8-9fe1-c535ab92c93f","direction":"outgoing","index":128422,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"7dff8a10-c445-404a-a71d-de87b2df0717","direction":"outgoing","index":128423,"result_id":"4200b899-63a6-48ae-a208-7c67e227253c","status":200,"timestamp":"2026-05-22T12:24:54.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:54.630-04:00"},{"id":"3be7547c-b654-4326-a3f4-794c97bfc72a","created_at":"2026-05-22T12:24:57.189-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ff9e815e-d679-4a1c-9377-b813c2b95cba","direction":"outgoing","index":128424,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed","verb":"get"},{"id":"f0b9131d-443e-4916-929a-adc76455c3e8","direction":"outgoing","index":128425,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6bf206a8-279a-4630-9dfa-a28f90be4385\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"51d75cca-a059-4602-b277-a7f580343c30","direction":"outgoing","index":128426,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed","verb":"get"},{"id":"b5f032d1-7cef-48ed-ae4d-16c28edeb062","direction":"outgoing","index":128427,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7382cded-1cd5-4552-a9b4-bfb493388b1f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b44d998-a622-4062-bf60-5ba713d65cb8","direction":"outgoing","index":128428,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown","verb":"get"},{"id":"3b4a0723-b410-42c8-a007-67f3dd435196","direction":"outgoing","index":128429,"result_id":"3be7547c-b654-4326-a3f4-794c97bfc72a","status":200,"timestamp":"2026-05-22T12:24:57.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6d0dec50-c7db-4a44-aaca-5ad67c549a19\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:57.189-04:00"},{"id":"a52747fe-72eb-4f16-8a1b-63ecd72f3510","created_at":"2026-05-22T12:24:57.385-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c0b7bc44-0650-4049-b503-758e4e7ce5d6","direction":"outgoing","index":128430,"result_id":"a52747fe-72eb-4f16-8a1b-63ecd72f3510","status":200,"timestamp":"2026-05-22T12:24:57.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:57.385-04:00"},{"id":"6a811d86-6862-4dde-8daa-3d0d362a54db","created_at":"2026-05-22T12:24:59.343-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7e2959a6-d23d-4486-91e6-b3c87ab28ba2","direction":"outgoing","index":128431,"result_id":"6a811d86-6862-4dde-8daa-3d0d362a54db","status":200,"timestamp":"2026-05-22T12:24:59.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"2bf15d59-e0e7-415b-958d-5cc239e7cc6e","direction":"outgoing","index":128432,"result_id":"6a811d86-6862-4dde-8daa-3d0d362a54db","status":200,"timestamp":"2026-05-22T12:24:59.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d6457b8d-eff8-43bd-b0b7-b974443ff496\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03f0691d-82ee-4c7c-9179-018c935ceeed","direction":"outgoing","index":128433,"result_id":"6a811d86-6862-4dde-8daa-3d0d362a54db","status":200,"timestamp":"2026-05-22T12:24:59.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"b93488c0-b5bd-4769-af6d-35aff230a90b","direction":"outgoing","index":128434,"result_id":"6a811d86-6862-4dde-8daa-3d0d362a54db","status":200,"timestamp":"2026-05-22T12:24:59.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6508cfde-5d78-4ba3-87f4-cfed41aa1876\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fdf436ff-fe42-41d1-a179-602c374dbb16","direction":"outgoing","index":128435,"result_id":"6a811d86-6862-4dde-8daa-3d0d362a54db","status":200,"timestamp":"2026-05-22T12:24:59.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:24:59.343-04:00"},{"id":"680e861a-3366-4fd7-ace7-67c579d92478","created_at":"2026-05-22T12:25:03.164-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|7.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#447365002)","type":"info"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|7.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#60027007)","type":"info"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.164-04:00"},{"id":"f1681269-7192-47cc-bd40-f472d081d7e7","created_at":"2026-05-22T12:25:03.213-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.213-04:00"},{"id":"2cfb19a9-3308-4923-bdc8-0e84be9c6131","created_at":"2026-05-22T12:25:03.455-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f18c8b18-f483-4822-9cd5-aa51a2d4c024","direction":"outgoing","index":128436,"result_id":"2cfb19a9-3308-4923-bdc8-0e84be9c6131","status":200,"timestamp":"2026-05-22T12:25:03.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"},{"id":"11a8c1c9-47e1-450d-83dd-3de2624585a1","direction":"outgoing","index":128437,"result_id":"2cfb19a9-3308-4923-bdc8-0e84be9c6131","status":200,"timestamp":"2026-05-22T12:25:03.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/4866099e-5e19-4703-9ac7-97a83fb217f0","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.455-04:00"},{"id":"bbf64c8c-ff34-4375-9462-c6cf880068a1","created_at":"2026-05-22T12:25:03.489-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_procedure","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.489-04:00"},{"id":"0936b6c6-60a0-4531-8c29-306134195ad5","created_at":"2026-05-22T12:25:03.853-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fe035b4e-9628-45a4-916d-a96e10bba50d","direction":"outgoing","index":128438,"result_id":"0936b6c6-60a0-4531-8c29-306134195ad5","status":200,"timestamp":"2026-05-22T12:25:03.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=85","verb":"get"},{"id":"dde6b137-7581-4971-a374-4cf0cba185ac","direction":"outgoing","index":128439,"result_id":"0936b6c6-60a0-4531-8c29-306134195ad5","status":200,"timestamp":"2026-05-22T12:25:03.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=355","verb":"get"},{"id":"e68c42cf-1dba-4a4a-adde-61857a0db395","direction":"outgoing","index":128440,"result_id":"0936b6c6-60a0-4531-8c29-306134195ad5","status":200,"timestamp":"2026-05-22T12:25:03.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=907","verb":"get"}],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.853-04:00"},{"id":"cdee4d23-89b1-43a8-b766-4a95a03ef867","created_at":"2026-05-22T12:25:03.898-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `_id`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.898-04:00"},{"id":"3feb901d-f071-48af-9270-a07041f8ea38","created_at":"2026-05-22T12:25:03.901-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `questionnaire`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_questionnaire_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.901-04:00"},{"id":"59db105c-c9ff-41f9-8868-cb493f203662","created_at":"2026-05-22T12:25:03.902-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `authored`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_authored_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.902-04:00"},{"id":"2e5e4cde-7614-4a1e-b20b-4d5113cef2e4","created_at":"2026-05-22T12:25:03.903-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `status`","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.903-04:00"},{"id":"10875b62-3f66-491f-8b16-4d9652aafbeb","created_at":"2026-05-22T12:25:03.904-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:03.904-04:00"},{"id":"60ac5e8e-3b01-4ba7-8775-914672166f84","created_at":"2026-05-22T12:25:04.261-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5a6a04c0-1088-4f3e-bb53-8f4c1602eb45","direction":"outgoing","index":128441,"result_id":"60ac5e8e-3b01-4ba7-8775-914672166f84","status":200,"timestamp":"2026-05-22T12:25:04.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"cca94037-399d-47a7-a7d2-eea418f7088f","direction":"outgoing","index":128442,"result_id":"60ac5e8e-3b01-4ba7-8775-914672166f84","status":200,"timestamp":"2026-05-22T12:25:04.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"95d3b8c5-a52f-4602-9d16-b3883d3dd603","direction":"outgoing","index":128443,"result_id":"60ac5e8e-3b01-4ba7-8775-914672166f84","status":200,"timestamp":"2026-05-22T12:25:04.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"skip","result_message":"No Provenance resources appear to be available. Please use patients with more information","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.261-04:00"},{"id":"6b845f6f-bb2f-4dc5-8028-28d97de6ff52","created_at":"2026-05-22T12:25:04.304-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-questionnaireresponse profile were returned","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.304-04:00"},{"id":"970c42d6-c87c-40e4-a2a6-84ee27f2558f","created_at":"2026-05-22T12:25:04.306-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources were found","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.306-04:00"},{"id":"4bed2605-a28c-4f66-81f9-25e8cd548162","created_at":"2026-05-22T12:25:04.307-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.307-04:00"},{"id":"e1f22e18-621e-47f4-991f-7a60f5fc795d","created_at":"2026-05-22T12:25:04.308-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_questionnaire_response","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.308-04:00"},{"id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","created_at":"2026-05-22T12:25:04.919-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2cba2052-11ea-48f5-8620-47783e2257a2","direction":"outgoing","index":128444,"result_id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","status":200,"timestamp":"2026-05-22T12:25:04.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=85","verb":"get"},{"id":"88598f5a-0009-4b78-8d30-843bb5cb17ce","direction":"outgoing","index":128445,"result_id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","status":200,"timestamp":"2026-05-22T12:25:04.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355","verb":"get"},{"id":"0a020204-6c37-4574-916d-a99b345c59b3","direction":"outgoing","index":128446,"result_id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","status":200,"timestamp":"2026-05-22T12:25:04.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/_search","verb":"post"},{"id":"c3a1c45a-c738-4594-bc70-1112e81250d4","direction":"outgoing","index":128447,"result_id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","status":200,"timestamp":"2026-05-22T12:25:04.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=Patient/355","verb":"get"},{"id":"c4e727e4-1bf5-4de7-a5c1-ccdfa708edea","direction":"outgoing","index":128448,"result_id":"8a9e5944-4b09-478f-b19e-5f817e6dace1","status":200,"timestamp":"2026-05-22T12:25:04.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:04.919-04:00"},{"id":"25d29008-6eb3-491b-a19d-3d20c6f987e7","created_at":"2026-05-22T12:25:05.096-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"779349be-6c10-46e7-a539-2063b56b01e1","direction":"outgoing","index":128449,"result_id":"25d29008-6eb3-491b-a19d-3d20c6f987e7","status":200,"timestamp":"2026-05-22T12:25:05.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_id=3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:05.096-04:00"},{"id":"8f97221e-21e1-468d-8ef0-2450184f0a1f","created_at":"2026-05-22T12:25:05.355-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b9691d7a-57f9-41e0-8554-3372846f0262","direction":"outgoing","index":128450,"result_id":"8f97221e-21e1-468d-8ef0-2450184f0a1f","status":200,"timestamp":"2026-05-22T12:25:05.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=233169004\u0026patient=355","verb":"get"},{"id":"6deeab35-e2f9-47b2-877e-20cc9f91f83e","direction":"outgoing","index":128451,"result_id":"8f97221e-21e1-468d-8ef0-2450184f0a1f","status":200,"timestamp":"2026-05-22T12:25:05.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:05.355-04:00"},{"id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","created_at":"2026-05-22T12:25:06.174-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2c14a1ce-f086-46f0-882b-c7f208c8ea6c","direction":"outgoing","index":128452,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"516fdd9a-7ea4-4430-a249-aedc4c483cee","direction":"outgoing","index":128453,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"08f76303-f10a-40b3-a246-c7dc9759cfd7","direction":"outgoing","index":128454,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"095da4f1-3b9a-401f-b9fe-e41375df744c","direction":"outgoing","index":128455,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"2ea4b2b9-5955-48a8-b51f-b189ca511f48","direction":"outgoing","index":128456,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"e8e85a02-322e-42ba-9a35-8b6c5bc41d5b","direction":"outgoing","index":128457,"result_id":"0ad12292-9fb0-44f0-ab1a-8b0bf270ed3c","status":200,"timestamp":"2026-05-22T12:25:06.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:06.174-04:00"},{"id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","created_at":"2026-05-22T12:25:07.155-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ba1f16b2-084e-40e7-855b-b6d6fc3b2419","direction":"outgoing","index":128458,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"83fa843b-4c44-4989-af4b-9e4b660495e5","direction":"outgoing","index":128459,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"4aa81067-59f7-4aa7-903d-066c189c4330","direction":"outgoing","index":128460,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"3e06f66b-d265-4e98-b097-ec6abad65157","direction":"outgoing","index":128461,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"3f58d5be-9e8e-4734-905c-3e48ad948dea","direction":"outgoing","index":128462,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"e79e9d13-bcd4-436d-9405-036f6e3279af","direction":"outgoing","index":128463,"result_id":"4ab776b6-6f4b-4d7b-9c64-071e2de3b422","status":200,"timestamp":"2026-05-22T12:25:07.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_authored_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:07.155-04:00"},{"id":"6d432bc6-b349-4e5c-ab4a-f2ffdd577d4f","created_at":"2026-05-22T12:25:07.489-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"73dc9820-2194-4e2e-85a8-6de5015daf82","direction":"outgoing","index":128464,"result_id":"6d432bc6-b349-4e5c-ab4a-f2ffdd577d4f","status":200,"timestamp":"2026-05-22T12:25:07.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=completed","verb":"get"},{"id":"9be74bab-c5ad-4629-a2e2-a059492cf2a9","direction":"outgoing","index":128465,"result_id":"6d432bc6-b349-4e5c-ab4a-f2ffdd577d4f","status":200,"timestamp":"2026-05-22T12:25:07.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_status_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:07.489-04:00"},{"id":"82c42695-d1d9-47ed-927e-ada23bfbd156","created_at":"2026-05-22T12:25:07.764-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"80eb8dba-d6ad-4576-99e7-8b6c455e5af1","direction":"outgoing","index":128466,"result_id":"82c42695-d1d9-47ed-927e-ada23bfbd156","status":200,"timestamp":"2026-05-22T12:25:07.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=387713003\u0026patient=355","verb":"get"},{"id":"11054d3f-2661-489e-999c-d6362f70933a","direction":"outgoing","index":128467,"result_id":"82c42695-d1d9-47ed-927e-ada23bfbd156","status":200,"timestamp":"2026-05-22T12:25:07.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:07.764-04:00"},{"id":"8880b557-d630-4012-af89-c3c70a9274f2","created_at":"2026-05-22T12:25:07.918-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"826172a0-ba26-45e7-8df3-c30aada8b52a","direction":"outgoing","index":128468,"result_id":"8880b557-d630-4012-af89-c3c70a9274f2","status":200,"timestamp":"2026-05-22T12:25:07.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:07.918-04:00"},{"id":"477107db-fa32-4b13-b79b-d7828089e24b","created_at":"2026-05-22T12:25:08.346-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6cf22f11-0d22-4eb9-97a6-093a5bec422d","direction":"outgoing","index":128469,"result_id":"477107db-fa32-4b13-b79b-d7828089e24b","status":200,"timestamp":"2026-05-22T12:25:08.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"39c9acca-5c3e-4763-8f1b-3dafd04f8dbc","direction":"outgoing","index":128470,"result_id":"477107db-fa32-4b13-b79b-d7828089e24b","status":200,"timestamp":"2026-05-22T12:25:08.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"254b968a-4997-4be4-b918-0c7bec3d9703","direction":"outgoing","index":128471,"result_id":"477107db-fa32-4b13-b79b-d7828089e24b","status":200,"timestamp":"2026-05-22T12:25:08.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:08.346-04:00"},{"id":"83d95fe6-0fe1-4be7-86e1-5b0fe77d278b","created_at":"2026-05-22T12:25:10.772-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest.category[0]: Reference to draft ValueSet http://hl7.org/fhir/ValueSet/servicerequest-category|4.0.1","type":"info"},{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"ServiceRequest/d1ab235c-2f94-4a51-8d36-45b9fc9dfd5f: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:10.772-04:00"},{"id":"f4d42e95-44f6-47d2-ab20-cfb31a8eed79","created_at":"2026-05-22T12:25:10.784-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:10.784-04:00"},{"id":"1f4ed0d2-6d00-4470-8612-914f21cff41d","created_at":"2026-05-22T12:25:10.937-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dcffcc58-b825-4815-ab6d-1d46e1715bc2","direction":"outgoing","index":128472,"result_id":"1f4ed0d2-6d00-4470-8612-914f21cff41d","status":200,"timestamp":"2026-05-22T12:25:10.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/f649e860-6104-49b2-96ec-9b219c4a49af","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:10.937-04:00"},{"id":"c0be47ed-a0be-4b9a-b7c0-bede4c3a73e4","created_at":"2026-05-22T12:25:10.957-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_service_request","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:10.957-04:00"},{"id":"b0697e95-e2e4-443d-894a-bded2e319f04","created_at":"2026-05-22T12:25:11.078-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Location reference used for this test was pulled from resource\nEncounter/cac22925-f852-4ed3-af57-50afe02288bd\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"834a7adf-12b7-429c-aa66-4e2c23e3efdc","direction":"outgoing","index":128473,"result_id":"b0697e95-e2e4-443d-894a-bded2e319f04","status":200,"timestamp":"2026-05-22T12:25:11.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.078-04:00"},{"id":"e1b7ecc2-e9b6-4892-883b-82872c1ed0b5","created_at":"2026-05-22T12:25:11.375-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9754985d-c310-4c05-b04e-a919c40a3465","direction":"outgoing","index":128474,"result_id":"e1b7ecc2-e9b6-4892-883b-82872c1ed0b5","status":200,"timestamp":"2026-05-22T12:25:11.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location?address=DRACUT","verb":"get"},{"id":"a1edf7c7-db95-44af-ad09-8d1a0e74c4d5","direction":"outgoing","index":128475,"result_id":"e1b7ecc2-e9b6-4892-883b-82872c1ed0b5","status":200,"timestamp":"2026-05-22T12:25:11.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/_search","verb":"post"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.375-04:00"},{"id":"fbf24e2c-a95e-4fb4-82bc-c073248d96eb","created_at":"2026-05-22T12:25:11.518-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3219a673-54fb-4681-93a8-e73cfa00a7cc","direction":"outgoing","index":128476,"result_id":"fbf24e2c-a95e-4fb4-82bc-c073248d96eb","status":200,"timestamp":"2026-05-22T12:25:11.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location?address-city=DRACUT","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_city_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.518-04:00"},{"id":"f304e4b2-e447-4153-ae9d-60c32620f358","created_at":"2026-05-22T12:25:11.659-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"136169fe-f8e4-4827-990d-f6e159092b40","direction":"outgoing","index":128477,"result_id":"f304e4b2-e447-4153-ae9d-60c32620f358","status":200,"timestamp":"2026-05-22T12:25:11.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location?address-postalcode=01826-2611","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_postalcode_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.659-04:00"},{"id":"2a8dfbdb-c446-46c2-a7b9-9b6377728430","created_at":"2026-05-22T12:25:11.807-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d332a0fd-a597-440d-81fb-091ba8e1c430","direction":"outgoing","index":128478,"result_id":"2a8dfbdb-c446-46c2-a7b9-9b6377728430","status":200,"timestamp":"2026-05-22T12:25:11.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location?address-state=MA","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_state_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.807-04:00"},{"id":"99676dd6-c8ea-45f4-9e00-efd0a6576116","created_at":"2026-05-22T12:25:11.949-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"45db6e06-8882-4934-9bba-efa5b6bb0f4c","direction":"outgoing","index":128479,"result_id":"99676dd6-c8ea-45f4-9e00-efd0a6576116","status":200,"timestamp":"2026-05-22T12:25:11.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location?name=PCP87052","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:11.949-04:00"},{"id":"8ce0b4e5-b6ec-40a4-9abd-69d22a6e19a5","created_at":"2026-05-22T12:25:12.001-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Location/b594895c-11cb-403f-a3bb-5729a3da4bd6: Location: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.001-04:00"},{"id":"13a4a5b6-a0d6-4036-9017-2124ffa66fa3","created_at":"2026-05-22T12:25:12.007-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.007-04:00"},{"id":"0e9db0e8-491e-450c-b228-023333b68f1d","created_at":"2026-05-22T12:25:12.010-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.010-04:00"},{"id":"e02c3829-412c-4af9-8504-ba68f5c663cf","created_at":"2026-05-22T12:25:12.012-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_location","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.012-04:00"},{"id":"0f3649d6-7d56-4a1e-ab69-39c3996e7f6d","created_at":"2026-05-22T12:25:12.146-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"40fb3d4f-1bbe-462d-adbb-8521bf97a069","direction":"outgoing","index":128480,"result_id":"0f3649d6-7d56-4a1e-ab69-39c3996e7f6d","status":200,"timestamp":"2026-05-22T12:25:12.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.146-04:00"},{"id":"b8fddba2-a025-4fff-81a4-57930575a22f","created_at":"2026-05-22T12:25:12.410-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2a339232-38ef-4fd3-8214-8f2760b68d22","direction":"outgoing","index":128481,"result_id":"b8fddba2-a025-4fff-81a4-57930575a22f","status":200,"timestamp":"2026-05-22T12:25:12.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT","verb":"get"},{"id":"3eed9b7e-cb41-4d3c-a06e-dab102b3e740","direction":"outgoing","index":128482,"result_id":"b8fddba2-a025-4fff-81a4-57930575a22f","status":200,"timestamp":"2026-05-22T12:25:12.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/_search","verb":"post"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.410-04:00"},{"id":"ca7b4210-756d-47c6-968d-6497ed8d2fc6","created_at":"2026-05-22T12:25:12.570-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4ac8591b-cb25-42d6-b0e8-afc6f0f4a8bc","direction":"outgoing","index":128483,"result_id":"ca7b4210-756d-47c6-968d-6497ed8d2fc6","status":200,"timestamp":"2026-05-22T12:25:12.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.570-04:00"},{"id":"e9597cdb-e413-4228-97a7-ab7085bc924c","created_at":"2026-05-22T12:25:12.624-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization.identifier[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.624-04:00"},{"id":"a00d6d9f-a379-4f02-ab46-b17ca1c6165b","created_at":"2026-05-22T12:25:12.629-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.629-04:00"},{"id":"b3c78859-f15a-49f5-ac78-502d72210569","created_at":"2026-05-22T12:25:12.631-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_organization","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.631-04:00"},{"id":"203e1538-e082-43cf-8415-a3146d8ce0ba","created_at":"2026-05-22T12:25:12.765-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"a15d1ebc-3366-41f0-acf6-7c59ed1c5dc3","direction":"outgoing","index":128484,"result_id":"203e1538-e082-43cf-8415-a3146d8ce0ba","status":200,"timestamp":"2026-05-22T12:25:12.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:12.765-04:00"},{"id":"aea779e6-f8c9-444f-9e37-012f2f623f6b","created_at":"2026-05-22T12:25:13.030-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3810e14f-0496-43f9-8d21-b0a753552843","direction":"outgoing","index":128485,"result_id":"aea779e6-f8c9-444f-9e37-012f2f623f6b","status":200,"timestamp":"2026-05-22T12:25:13.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?_id=d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"c23002aa-8598-4be8-9b2c-396eb479074d","direction":"outgoing","index":128486,"result_id":"aea779e6-f8c9-444f-9e37-012f2f623f6b","status":200,"timestamp":"2026-05-22T12:25:13.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/_search","verb":"post"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.030-04:00"},{"id":"dd375b8b-b990-415c-a8ca-306f0315145c","created_at":"2026-05-22T12:25:13.311-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7f0ec777-6df9-47b6-8d14-a560a6986a88","direction":"outgoing","index":128487,"result_id":"dd375b8b-b990-415c-a8ca-306f0315145c","status":200,"timestamp":"2026-05-22T12:25:13.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819","verb":"get"},{"id":"9543c6a8-8399-4062-81e5-0b5bf6d92e82","direction":"outgoing","index":128488,"result_id":"dd375b8b-b990-415c-a8ca-306f0315145c","status":200,"timestamp":"2026-05-22T12:25:13.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.311-04:00"},{"id":"d1eabcf3-bea2-4af9-96e4-61cff54b5e6b","created_at":"2026-05-22T12:25:13.461-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c21c8a7d-3cb4-42b2-a4b7-34089d0d5f92","direction":"outgoing","index":128489,"result_id":"d1eabcf3-bea2-4af9-96e4-61cff54b5e6b","status":200,"timestamp":"2026-05-22T12:25:13.463-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.461-04:00"},{"id":"e0bc38f6-ed05-4076-8e34-8676b440c769","created_at":"2026-05-22T12:25:13.559-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.559-04:00"},{"id":"57a1f79c-fc6d-472c-9580-5e179df5637e","created_at":"2026-05-22T12:25:13.565-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.565-04:00"},{"id":"1704dfe3-8288-43ab-961e-02bea63ba30f","created_at":"2026-05-22T12:25:13.699-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3fa1a4b0-7815-49cb-9885-8d6fc153976f","direction":"outgoing","index":128490,"result_id":"1704dfe3-8288-43ab-961e-02bea63ba30f","status":200,"timestamp":"2026-05-22T12:25:13.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_address_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.699-04:00"},{"id":"a877ad61-bd29-44fc-9930-0b01c2b3d18b","created_at":"2026-05-22T12:25:13.722-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.722-04:00"},{"id":"9647fd0c-7da7-435d-a0a9-ba9faffb17db","created_at":"2026-05-22T12:25:13.857-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe PractitionerRole reference used for this test was pulled from resource\nMedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"41f1831e-2a7e-46ae-b27a-9eefc84f69ca","direction":"outgoing","index":128491,"result_id":"9647fd0c-7da7-435d-a0a9-ba9faffb17db","status":200,"timestamp":"2026-05-22T12:25:13.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:13.857-04:00"},{"id":"e9c68e9f-2420-44be-9904-f4409e82a4ab","created_at":"2026-05-22T12:25:14.118-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8d40348c-d737-489b-b90b-d19db7577f6b","direction":"outgoing","index":128492,"result_id":"e9c68e9f-2420-44be-9904-f4409e82a4ab","status":200,"timestamp":"2026-05-22T12:25:14.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?practitioner=Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"1fcdf6cb-2d06-4b39-be1c-f8a736108561","direction":"outgoing","index":128493,"result_id":"e9c68e9f-2420-44be-9904-f4409e82a4ab","status":200,"timestamp":"2026-05-22T12:25:14.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/_search","verb":"post"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:14.118-04:00"},{"id":"cca0210e-0971-4a9f-b56d-ee1bd2afebc6","created_at":"2026-05-22T12:25:14.451-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f8173d2e-38d4-40d9-8ee8-2fdfcdb97174","direction":"outgoing","index":128494,"result_id":"cca0210e-0971-4a9f-b56d-ee1bd2afebc6","status":200,"timestamp":"2026-05-22T12:25:14.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=208D00000X","verb":"get"},{"id":"369dc217-2426-475a-8597-eca8f3d1b451","direction":"outgoing","index":128495,"result_id":"cca0210e-0971-4a9f-b56d-ee1bd2afebc6","status":200,"timestamp":"2026-05-22T12:25:14.463-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=http://nucc.org/provider-taxonomy%7C208D00000X","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:14.451-04:00"},{"id":"05af765b-2526-4bcb-8b35-16f279a21a1f","created_at":"2026-05-22T12:25:16.024-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:16.024-04:00"},{"id":"8dd7dbd1-e489-4dbf-b065-c6cb631e844b","created_at":"2026-05-22T12:25:16.033-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:16.033-04:00"},{"id":"9289aa33-f7fa-4799-898f-198aba27f81b","created_at":"2026-05-22T12:25:16.474-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"98419f6d-647e-4497-b7e0-602e9442b440","direction":"outgoing","index":128496,"result_id":"9289aa33-f7fa-4799-898f-198aba27f81b","status":200,"timestamp":"2026-05-22T12:25:16.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"96d55c08-6870-4a05-970a-2097482997ca","direction":"outgoing","index":128497,"result_id":"9289aa33-f7fa-4799-898f-198aba27f81b","status":200,"timestamp":"2026-05-22T12:25:16.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/2aaf3922-72e6-4cb8-8f17-a8a709886a89","verb":"get"},{"id":"d057686b-9bf6-4e12-8674-a3389e0c3593","direction":"outgoing","index":128498,"result_id":"9289aa33-f7fa-4799-898f-198aba27f81b","status":200,"timestamp":"2026-05-22T12:25:16.513-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Endpoint/b5ebb5af-57fa-4ae8-a224-35a0e3ed0ea1","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:16.474-04:00"},{"id":"d774a1d3-75c8-4112-a7e6-5ae2c6fadded","created_at":"2026-05-22T12:25:16.526-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_practitioner_role","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:16.526-04:00"},{"id":"7be93b99-081d-4ea8-afc8-6c4e3780a5ed","created_at":"2026-05-22T12:25:16.692-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"06f8586b-6264-4f77-a8f8-cb54deeaf054","direction":"outgoing","index":128499,"result_id":"7be93b99-081d-4ea8-afc8-6c4e3780a5ed","status":200,"timestamp":"2026-05-22T12:25:16.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:16.692-04:00"},{"id":"1957ee1d-4feb-4752-9a4e-45dd27969de2","created_at":"2026-05-22T12:25:22.993-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#informant)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance|7.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#informant)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|1.0.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: None of the codings provided are in the value set 'US Core Provenance Participant Type Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-provenance-participant-type|7.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/provenance-participant-type#author)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:22.993-04:00"},{"id":"a212a08a-78d1-4db8-8098-80ef70fa49e5","created_at":"2026-05-22T12:25:23.347-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:23.347-04:00"},{"id":"c28829ed-d6a8-410a-9254-c977f9edc72a","created_at":"2026-05-22T12:25:23.350-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:23.350-04:00"},{"id":"60300190-6bc9-465e-ac0b-db1233c6cbe0","created_at":"2026-05-22T12:25:23.351-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_provenance","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:23.351-04:00"},{"id":"3c618530-a452-49a6-a0b9-7cbad2bb4c8c","created_at":"2026-05-22T12:25:23.474-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe RelatedPerson reference used for this test was pulled from resource\nCareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"8767602a-11b9-4634-a50c-795f441b91b3","direction":"outgoing","index":128500,"result_id":"3c618530-a452-49a6-a0b9-7cbad2bb4c8c","status":200,"timestamp":"2026-05-22T12:25:23.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:23.474-04:00"},{"id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","created_at":"2026-05-22T12:25:24.102-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"803fbf30-d67c-49b6-9247-892c10afc0ec","direction":"outgoing","index":128501,"result_id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","status":200,"timestamp":"2026-05-22T12:25:24.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=85","verb":"get"},{"id":"db961456-9092-40bd-97a5-b0d2946db25a","direction":"outgoing","index":128502,"result_id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","status":200,"timestamp":"2026-05-22T12:25:24.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/_search","verb":"post"},{"id":"7c1915e6-deec-4f4f-8bde-122d53f45941","direction":"outgoing","index":128503,"result_id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","status":200,"timestamp":"2026-05-22T12:25:24.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=Patient/85","verb":"get"},{"id":"78161285-4015-465d-a2a4-e48baf3891dc","direction":"outgoing","index":128504,"result_id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","status":200,"timestamp":"2026-05-22T12:25:24.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=355","verb":"get"},{"id":"7f6ebe7e-7304-4f14-a249-c5e17342f30c","direction":"outgoing","index":128505,"result_id":"b6471f06-10e9-4ea2-8b5f-6f41b220931f","status":200,"timestamp":"2026-05-22T12:25:24.149-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:24.102-04:00"},{"id":"97de7881-c8fb-4ed3-b2b4-818b2dcaac9d","created_at":"2026-05-22T12:25:24.296-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2d158aff-d5f7-4a76-b528-70cad0dc0f91","direction":"outgoing","index":128506,"result_id":"97de7881-c8fb-4ed3-b2b4-818b2dcaac9d","status":200,"timestamp":"2026-05-22T12:25:24.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_id=4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:24.296-04:00"},{"id":"40622d1c-a4d6-4032-b120-f781ae104b98","created_at":"2026-05-22T12:25:24.435-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8c8e0852-b51f-47d3-9701-81145fdf91cd","direction":"outgoing","index":128507,"result_id":"40622d1c-a4d6-4032-b120-f781ae104b98","status":200,"timestamp":"2026-05-22T12:25:24.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:24.435-04:00"},{"id":"f39a66f8-5517-4b53-aa4d-68462a444640","created_at":"2026-05-22T12:25:24.575-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ccbdbc80-2bb3-4c48-8490-340d7e220424","direction":"outgoing","index":128508,"result_id":"f39a66f8-5517-4b53-aa4d-68462a444640","status":200,"timestamp":"2026-05-22T12:25:24.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_patient_name_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:24.575-04:00"},{"id":"a4a63b37-d10f-4f4c-a3f8-611fefff9dad","created_at":"2026-05-22T12:25:25.045-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"43c9eed5-a760-4f35-b118-75c6752de3c9","direction":"outgoing","index":128509,"result_id":"a4a63b37-d10f-4f4c-a3f8-611fefff9dad","status":200,"timestamp":"2026-05-22T12:25:25.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"9d1013c9-85f9-4827-a375-abddbe7c15e6","direction":"outgoing","index":128510,"result_id":"a4a63b37-d10f-4f4c-a3f8-611fefff9dad","status":200,"timestamp":"2026-05-22T12:25:25.064-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"bfef0743-3391-4db6-bd6c-c48e5d899b1a","direction":"outgoing","index":128511,"result_id":"a4a63b37-d10f-4f4c-a3f8-611fefff9dad","status":200,"timestamp":"2026-05-22T12:25:25.077-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_provenance_revinclude_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.045-04:00"},{"id":"a77a8c82-40da-464f-8382-f14dd378b87d","created_at":"2026-05-22T12:25:25.124-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a: RelatedPerson: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.124-04:00"},{"id":"b4c81c1c-5943-4266-884d-d58d5fb3dd3b","created_at":"2026-05-22T12:25:25.129-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.129-04:00"},{"id":"70925f2f-bab8-4ea0-953a-334ff5d5c00c","created_at":"2026-05-22T12:25:25.132-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.132-04:00"},{"id":"53c64f2f-fcf7-4a13-b153-9a5316212218","created_at":"2026-05-22T12:25:25.133-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_related_person","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.133-04:00"},{"id":"e916ee2b-694b-4256-b265-dac2b2995293","created_at":"2026-05-22T12:25:25.256-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Specimen reference used for this test was pulled from resource\nObservation/c1acf7df-5fdc-4338-bb91-add5b859696b\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"aadc21d9-642b-4178-834b-0d2551ec2266","direction":"outgoing","index":128512,"result_id":"e916ee2b-694b-4256-b265-dac2b2995293","status":200,"timestamp":"2026-05-22T12:25:25.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_read_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.256-04:00"},{"id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","created_at":"2026-05-22T12:25:25.899-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0ef3ce8e-62e7-492f-8fee-125e5d01bc54","direction":"outgoing","index":128513,"result_id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","status":200,"timestamp":"2026-05-22T12:25:25.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=85","verb":"get"},{"id":"02ea0afa-f75f-4bbb-8c3b-83ad69be1201","direction":"outgoing","index":128514,"result_id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","status":200,"timestamp":"2026-05-22T12:25:25.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/_search","verb":"post"},{"id":"cd2cf4a2-3d17-433b-881a-3a1a1209dbb8","direction":"outgoing","index":128515,"result_id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","status":200,"timestamp":"2026-05-22T12:25:25.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=Patient/85","verb":"get"},{"id":"20bac23c-0968-4634-b7b3-8f3cbf33a74b","direction":"outgoing","index":128516,"result_id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","status":200,"timestamp":"2026-05-22T12:25:25.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=355","verb":"get"},{"id":"1ab0eee0-9d57-4b25-9c75-a68b35a207e6","direction":"outgoing","index":128517,"result_id":"4bc413e4-6686-4c73-ad2a-ff0d933719e3","status":200,"timestamp":"2026-05-22T12:25:25.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_patient_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:25.899-04:00"},{"id":"de5c01f1-5183-4a42-b15b-7014154eee4d","created_at":"2026-05-22T12:25:26.082-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"615e1845-5cc3-44aa-a6b3-ce54e9e7ff00","direction":"outgoing","index":128518,"result_id":"de5c01f1-5183-4a42-b15b-7014154eee4d","status":200,"timestamp":"2026-05-22T12:25:26.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?_id=95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:26.082-04:00"},{"id":"14c43740-7235-4b2a-99d8-2c33cd5e3f84","created_at":"2026-05-22T12:25:26.124-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.type.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20230901' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814","type":"warning"},{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.type: None of the codings provided are in the value set 'Specimen type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.54|20221102), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#122575003)","type":"warning"},{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.collection.bodySite: None of the codings provided are in the value set 'SNOMED CT Body Structures' (http://hl7.org/fhir/ValueSet/body-site|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#106004)","type":"warning"},{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:26.124-04:00"},{"id":"09a45f44-ecc4-4183-937b-88b6f8c576a0","created_at":"2026-05-22T12:25:26.130-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:26.130-04:00"},{"id":"2aa26f12-6190-4b7b-a393-ea2a96f10106","created_at":"2026-05-22T12:25:26.132-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_reference_resolution_test","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:26.132-04:00"},{"id":"c00a7c5b-01f3-418b-8d5e-4fa5cdffc4f9","created_at":"2026-05-22T12:25:26.133-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_specimen","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:26.133-04:00"},{"id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","created_at":"2026-05-22T12:25:30.324-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"26615dc5-52bf-49a6-bbd5-038f55272d63","direction":"outgoing","index":128519,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"968c17e2-518e-4b1e-8848-0281e7df72f1","direction":"outgoing","index":128520,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=613840d9-8e65-49fc-ac26-be6ec7bc3b60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35347797-1e9c-4424-823e-7432e1cb6349","direction":"outgoing","index":128521,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=613840d9-8e65-49fc-ac26-be6ec7bc3b60\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ef4c891-7b2c-4007-8a95-dc8b53ce3346","direction":"outgoing","index":128522,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"180a6e9c-1445-4a0e-b412-1d997c9c888e","direction":"outgoing","index":128523,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=30ea29ec-5bc5-4360-8b8f-c7128d34aad7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7501c97-fb78-4dfe-bbb5-0b0083c202dd","direction":"outgoing","index":128524,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"deade7d1-5bdc-4cef-8ca7-75fbff237dde","direction":"outgoing","index":128525,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=240e4d19-e146-4961-bc26-89c88eda7ea0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f1d6447-e3a3-4c5f-94f7-bb73cd8eb81a","direction":"outgoing","index":128526,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=240e4d19-e146-4961-bc26-89c88eda7ea0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1be462-023a-4e4e-9652-a5152028d826","direction":"outgoing","index":128527,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"bd705142-9b80-41b2-8247-d775f8602407","direction":"outgoing","index":128528,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=36103d6a-0950-49a5-b646-91b3491d1857\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d95c5001-1698-4242-8213-ae0e1bce34b3","direction":"outgoing","index":128529,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=36103d6a-0950-49a5-b646-91b3491d1857\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"282fc46c-a55a-4b1f-8b89-45df07247d36","direction":"outgoing","index":128530,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"},{"id":"367f2959-0035-405a-bbab-7f3e3dcc3198","direction":"outgoing","index":128531,"result_id":"a6a4b104-7d98-4e43-acde-ad3f1e867543","status":200,"timestamp":"2026-05-22T12:25:30.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_types","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:30.324-04:00"},{"id":"3aae450a-6f31-45cb-81db-efe72712b18c","created_at":"2026-05-22T12:25:30.496-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_attachments","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:30.496-04:00"},{"id":"04413028-2be3-4c5c-ab2d-f615076bb965","created_at":"2026-05-22T12:25:30.498-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:30.498-04:00"},{"id":"e7760639-1733-45ad-a301-b8a67cd2f074","created_at":"2026-05-22T12:25:31.289-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"abd7ae3b-392e-4e82-aa69-007104fa10dc","direction":"outgoing","index":128532,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"fe0a3110-0b6f-4c30-978b-36154654715a","direction":"outgoing","index":128533,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"3295d3fd-e9c9-4241-a35d-ba952fcc6bb3","direction":"outgoing","index":128534,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"2fa7742e-13b3-4da5-b218-14e4851032e8","direction":"outgoing","index":128535,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"c6eaf810-6b44-410d-86eb-481fa515d173","direction":"outgoing","index":128536,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"2f929f5a-c70a-4485-840e-49c94755cd76","direction":"outgoing","index":128537,"result_id":"e7760639-1733-45ad-a301-b8a67cd2f074","status":200,"timestamp":"2026-05-22T12:25:31.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_screening_assessment-us_core_screening_assessment_category","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.289-04:00"},{"id":"b530e763-197a-4dc3-8689-a764a4387df7","created_at":"2026-05-22T12:25:31.367-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_v700_screening_assessment","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.367-04:00"},{"id":"c277ebdd-e12e-466c-ac30-532f1e7ae344","created_at":"2026-05-22T12:25:31.377-04:00","inputs":[{"name":"dar_extension_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.377-04:00"},{"id":"42cc893b-b149-46ea-b493-96b886e27f18","created_at":"2026-05-22T12:25:31.379-04:00","inputs":[{"name":"dar_code_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v700-us_core_v700_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.379-04:00"},{"id":"9000ddf1-c656-42ca-9de5-e08073a48222","created_at":"2026-05-22T12:25:31.380-04:00","inputs":[{"name":"dar_extension_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"dar_code_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api-us_core_311_data_absent_reason","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.380-04:00"},{"id":"2d381802-2206-49fe-b87b-49b5f359304c","created_at":"2026-05-22T12:25:31.393-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:13:29-04:00\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v700-us_core_v700_fhir_api","test_run_id":"dbce9aea-451b-4578-ae1a-5e96c7b7fcf6","test_session_id":"hlJ2kla7TNg","updated_at":"2026-05-22T12:25:31.393-04:00"}] \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_800.yaml b/execution_scripts/reference_server/fhir_api_only/us_core_server_800.yaml new file mode 100644 index 000000000..5cd8bd4e8 --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_800.yaml @@ -0,0 +1,37 @@ +sessions: + - suite: us_core_v800 + preset: Inferno Reference Server + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 8.0.0 session created + status: created + start_run: + runnable: 4 + inputs: + smart_auth_info: + access_token: SAMPLE_TOKEN + timeout: 1200 # API tests are very long-running + action_description: Run Group 4 US Core FHIR API + + - state_description: Finished Group 4 US Core FHIR API + status: done + last_completed: 4 + action: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/fhir_api_only/us_core_server_800_expected.json b/execution_scripts/reference_server/fhir_api_only/us_core_server_800_expected.json new file mode 100644 index 000000000..f613ef69d --- /dev/null +++ b/execution_scripts/reference_server/fhir_api_only/us_core_server_800_expected.json @@ -0,0 +1,53183 @@ +[ + { + "id": "e1c0abb6-a0ef-453c-9817-1efc45d2eabd", + "created_at": "2026-05-22T12:31:34.643-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.", + "type": "info" + }, + { + "message": "https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-standalone_auth_tls", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:31:34.643-04:00" + }, + { + "id": "25ecf97d-6421-4f36-a78d-1637003ae024", + "created_at": "2026-05-22T12:32:05.408-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CapabilityStatement: CapabilityStatement.instantiates[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.implementationGuide[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/ImplementationGuide/hl7.fhir.uv.bulkdata'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[10].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/group-export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].resource[18].operation[0].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/patient-export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement.rest[0].operation[1].definition: A definition could not be found for Canonical URL 'http://hl7.org/fhir/uv/bulkdata/OperationDefinition/export'", + "type": "info" + }, + { + "message": "CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5be6e785-6227-451d-a593-81d20a741dd2", + "direction": "outgoing", + "index": 128538, + "result_id": "25ecf97d-6421-4f36-a78d-1637003ae024", + "status": 200, + "timestamp": "2026-05-22T12:32:05.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-us_core_conformance_support", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.408-04:00" + }, + { + "id": "ba0fb49b-8c3f-4a1b-ba94-5b7020c8f8ad", + "created_at": "2026-05-22T12:32:05.626-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-us_core_fhir_version", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.626-04:00" + }, + { + "id": "d685d2b4-6566-4ba7-a25c-c659a43ed8c3", + "created_at": "2026-05-22T12:32:05.639-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5be6e785-6227-451d-a593-81d20a741dd2", + "direction": "outgoing", + "index": 128538, + "result_id": "25ecf97d-6421-4f36-a78d-1637003ae024", + "status": 200, + "timestamp": "2026-05-22T12:32:05.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-us_core_json_support", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.639-04:00" + }, + { + "id": "2c9b1f90-6921-4b09-baf3-373bce4cc49a", + "created_at": "2026-05-22T12:32:05.647-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5be6e785-6227-451d-a593-81d20a741dd2", + "direction": "outgoing", + "index": 128538, + "result_id": "25ecf97d-6421-4f36-a78d-1637003ae024", + "status": 200, + "timestamp": "2026-05-22T12:32:05.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-us_core_profile_support", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.647-04:00" + }, + { + "id": "c3162298-cf13-4c0b-bb21-563ce6e6abe9", + "created_at": "2026-05-22T12:32:05.661-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "5be6e785-6227-451d-a593-81d20a741dd2", + "direction": "outgoing", + "index": 128538, + "result_id": "25ecf97d-6421-4f36-a78d-1637003ae024", + "status": 200, + "timestamp": "2026-05-22T12:32:05.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/metadata", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement-us_core_instantiate", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.661-04:00" + }, + { + "id": "2dc67d05-a2ad-47c8-b65f-fa2e1b8f8c41", + "created_at": "2026-05-22T12:32:05.666-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_capability_statement", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:05.666-04:00" + }, + { + "id": "85bd1bc3-dd1f-45ff-b94b-c54f56632eac", + "created_at": "2026-05-22T12:32:06.230-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cbaebfdf-6fe4-4f74-b5fc-465e83dc9c86", + "direction": "outgoing", + "index": 128539, + "result_id": "85bd1bc3-dd1f-45ff-b94b-c54f56632eac", + "status": 200, + "timestamp": "2026-05-22T12:32:06.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85", + "verb": "get" + }, + { + "id": "947a146d-ece5-4368-a246-f4fcc6166c38", + "direction": "outgoing", + "index": 128540, + "result_id": "85bd1bc3-dd1f-45ff-b94b-c54f56632eac", + "status": 200, + "timestamp": "2026-05-22T12:32:06.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/_search", + "verb": "post" + }, + { + "id": "4539c5d3-7396-4c11-a4fd-908df03cd227", + "direction": "outgoing", + "index": 128541, + "result_id": "85bd1bc3-dd1f-45ff-b94b-c54f56632eac", + "status": 200, + "timestamp": "2026-05-22T12:32:06.268-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355", + "verb": "get" + }, + { + "id": "fe92ae62-a5e4-4b53-9eef-8085e5641d18", + "direction": "outgoing", + "index": 128542, + "result_id": "85bd1bc3-dd1f-45ff-b94b-c54f56632eac", + "status": 200, + "timestamp": "2026-05-22T12:32:06.285-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:06.230-04:00" + }, + { + "id": "ad426cd5-6899-4e9d-b2a9-309c797d3975", + "created_at": "2026-05-22T12:32:06.528-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4b1e6a62-00eb-4a64-ab1e-81af96f18f95", + "direction": "outgoing", + "index": 128543, + "result_id": "ad426cd5-6899-4e9d-b2a9-309c797d3975", + "status": 200, + "timestamp": "2026-05-22T12:32:06.531-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + }, + { + "id": "d03cb879-9c12-4a69-862c-e322fac2c714", + "direction": "outgoing", + "index": 128544, + "result_id": "ad426cd5-6899-4e9d-b2a9-309c797d3975", + "status": 200, + "timestamp": "2026-05-22T12:32:06.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_identifier_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:06.528-04:00" + }, + { + "id": "d948dba1-8889-4531-b9dd-ea33e7f46e9f", + "created_at": "2026-05-22T12:32:06.689-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "234cd98d-51cc-4eab-98a0-3cdce19275c0", + "direction": "outgoing", + "index": 128545, + "result_id": "d948dba1-8889-4531-b9dd-ea33e7f46e9f", + "status": 200, + "timestamp": "2026-05-22T12:32:06.695-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:06.689-04:00" + }, + { + "id": "125c907e-a296-4447-9f90-c61aa121c727", + "created_at": "2026-05-22T12:32:06.859-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8716f071-0e5d-44a7-a49b-ada8bb56b5c8", + "direction": "outgoing", + "index": 128546, + "result_id": "125c907e-a296-4447-9f90-c61aa121c727", + "status": 200, + "timestamp": "2026-05-22T12:32:06.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_birthdate_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:06.859-04:00" + }, + { + "id": "a953ea69-cc72-4bc8-be92-b084a0b12734", + "created_at": "2026-05-22T12:32:07.125-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "af90e36f-7a99-4d59-bfc5-0b2816ce5976", + "direction": "outgoing", + "index": 128547, + "result_id": "a953ea69-cc72-4bc8-be92-b084a0b12734", + "status": 200, + "timestamp": "2026-05-22T12:32:07.128-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?death-date=1977-07-14T04:17:45-04:00\u0026family=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_death_date_family_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:07.125-04:00" + }, + { + "id": "5ad8525e-a75f-47ee-b9ec-cd117e470475", + "created_at": "2026-05-22T12:32:07.256-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7c0fde7d-9e46-47f0-9728-11d2170a0d3b", + "direction": "outgoing", + "index": 128548, + "result_id": "5ad8525e-a75f-47ee-b9ec-cd117e470475", + "status": 200, + "timestamp": "2026-05-22T12:32:07.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_birthdate_family_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:07.256-04:00" + }, + { + "id": "d037819d-cfea-4611-9da7-f8e957217bdf", + "created_at": "2026-05-22T12:32:07.403-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "617c95c0-bb1b-4e58-a4ec-8b26cf458f00", + "direction": "outgoing", + "index": 128549, + "result_id": "d037819d-cfea-4611-9da7-f8e957217bdf", + "status": 200, + "timestamp": "2026-05-22T12:32:07.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:07.403-04:00" + }, + { + "id": "f0e2c3a6-0a96-4c55-8011-d2b0d2eb5a89", + "created_at": "2026-05-22T12:32:07.918-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d61ab238-ffb0-44b4-84f0-dcf87cc28b4a", + "direction": "outgoing", + "index": 128550, + "result_id": "f0e2c3a6-0a96-4c55-8011-d2b0d2eb5a89", + "status": 200, + "timestamp": "2026-05-22T12:32:07.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target", + "verb": "get" + }, + { + "id": "6c571aa3-10f2-47e7-ab7d-441b3b72cd87", + "direction": "outgoing", + "index": 128551, + "result_id": "f0e2c3a6-0a96-4c55-8011-d2b0d2eb5a89", + "status": 200, + "timestamp": "2026-05-22T12:32:07.941-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target", + "verb": "get" + }, + { + "id": "e9122dce-a2b5-435a-98ee-f5b641a5ea0f", + "direction": "outgoing", + "index": 128552, + "result_id": "f0e2c3a6-0a96-4c55-8011-d2b0d2eb5a89", + "status": 200, + "timestamp": "2026-05-22T12:32:07.960-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient?_id=908\u0026_revinclude=Provenance:target", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:07.918-04:00" + }, + { + "id": "6f36b944-c769-4ced-b6dc-c8d7862e8992", + "created_at": "2026-05-22T12:32:11.356-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Patient/85: Patient.extension[2]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + }, + { + "message": "Patient/85: Patient.communication[0].language: None of the codings provided are in the value set 'Languages' (http://terminology.hl7.org/ValueSet/Languages|1.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = urn:ietf:bcp:47#en-US)", + "type": "warning" + }, + { + "message": "Patient/355: Patient.extension[2]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)", + "type": "warning" + }, + { + "message": "Patient/355: Patient.communication[0].language: None of the codings provided are in the value set 'Languages' (http://terminology.hl7.org/ValueSet/Languages|1.0.0), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = urn:ietf:bcp:47#en-US)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:11.356-04:00" + }, + { + "id": "853384d3-135c-42b8-96eb-939883ca6846", + "created_at": "2026-05-22T12:32:11.384-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient-us_core_v800_patient_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:11.384-04:00" + }, + { + "id": "b3ce6043-e091-4cb8-9f6f-789a009c4d1c", + "created_at": "2026-05-22T12:32:11.387-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_patient", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:11.387-04:00" + }, + { + "id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "created_at": "2026-05-22T12:32:12.139-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "59b981b7-85e6-44d6-b164-db4e62ac946a", + "direction": "outgoing", + "index": 128553, + "result_id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "status": 200, + "timestamp": "2026-05-22T12:32:12.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85", + "verb": "get" + }, + { + "id": "7d9279c9-bf1a-46aa-96f9-b040163eb2f4", + "direction": "outgoing", + "index": 128554, + "result_id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "status": 200, + "timestamp": "2026-05-22T12:32:12.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355", + "verb": "get" + }, + { + "id": "1130e7a9-87f7-4b9e-850b-586a9a1cbb21", + "direction": "outgoing", + "index": 128555, + "result_id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "status": 200, + "timestamp": "2026-05-22T12:32:12.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search", + "verb": "post" + }, + { + "id": "a1c1fdc2-f8e2-467e-96c7-983de047ed64", + "direction": "outgoing", + "index": 128556, + "result_id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "status": 200, + "timestamp": "2026-05-22T12:32:12.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355", + "verb": "get" + }, + { + "id": "c856dd67-31dc-425e-b28d-0f85eb39fcea", + "direction": "outgoing", + "index": 128557, + "result_id": "6802d11a-bae9-40b8-a2c0-b2786cd85631", + "status": 200, + "timestamp": "2026-05-22T12:32:12.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:12.139-04:00" + }, + { + "id": "30e6ab7d-8b2f-4f62-9d24-9e1966cb6879", + "created_at": "2026-05-22T12:32:12.791-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f5844cf8-6c3a-4c5c-8cb7-a5cba807d420", + "direction": "outgoing", + "index": 128558, + "result_id": "30e6ab7d-8b2f-4f62-9d24-9e1966cb6879", + "status": 200, + "timestamp": "2026-05-22T12:32:12.798-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355", + "verb": "get" + }, + { + "id": "6ac6ce7f-e2fe-410b-b433-55035be481b7", + "direction": "outgoing", + "index": 128559, + "result_id": "30e6ab7d-8b2f-4f62-9d24-9e1966cb6879", + "status": 200, + "timestamp": "2026-05-22T12:32:12.827-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_patient_clinical_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:12.791-04:00" + }, + { + "id": "87b41ef9-482f-408b-8492-a58779c12163", + "created_at": "2026-05-22T12:32:13.130-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "507f74b1-3843-417c-9a50-d55e724ecae5", + "direction": "outgoing", + "index": 128560, + "result_id": "87b41ef9-482f-408b-8492-a58779c12163", + "status": 200, + "timestamp": "2026-05-22T12:32:13.135-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:13.130-04:00" + }, + { + "id": "4fa064a9-5db3-4501-a8b2-a1dd6de9d2e3", + "created_at": "2026-05-22T12:32:14.343-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cb294c31-2160-423a-b92f-37d8f5ca1a42", + "direction": "outgoing", + "index": 128561, + "result_id": "4fa064a9-5db3-4501-a8b2-a1dd6de9d2e3", + "status": 200, + "timestamp": "2026-05-22T12:32:14.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "6958aa3d-a7d8-4231-bd8a-380741485952", + "direction": "outgoing", + "index": 128562, + "result_id": "4fa064a9-5db3-4501-a8b2-a1dd6de9d2e3", + "status": 200, + "timestamp": "2026-05-22T12:32:14.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "b8c11f0a-244a-4f78-8a06-09c239334b07", + "direction": "outgoing", + "index": 128563, + "result_id": "4fa064a9-5db3-4501-a8b2-a1dd6de9d2e3", + "status": 200, + "timestamp": "2026-05-22T12:32:14.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:14.343-04:00" + }, + { + "id": "cebc55c4-bd31-43ea-bb44-cb4311f1efbe", + "created_at": "2026-05-22T12:32:19.097-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20240625), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)", + "type": "warning" + }, + { + "message": "AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:19.097-04:00" + }, + { + "id": "05346df6-48a6-41fb-b2d5-562afba395eb", + "created_at": "2026-05-22T12:32:19.138-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:19.138-04:00" + }, + { + "id": "ccfab8ef-6b6d-4f32-aa68-bb27b4a16f8e", + "created_at": "2026-05-22T12:32:19.297-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fe9831b5-aea3-44ca-8de2-4084d82b8b73", + "direction": "outgoing", + "index": 128564, + "result_id": "ccfab8ef-6b6d-4f32-aa68-bb27b4a16f8e", + "status": 200, + "timestamp": "2026-05-22T12:32:19.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance-us_core_v800_allergy_intolerance_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:19.297-04:00" + }, + { + "id": "f3faa91c-3615-4f57-a752-797bb91d408b", + "created_at": "2026-05-22T12:32:19.381-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_allergy_intolerance", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:19.381-04:00" + }, + { + "id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "created_at": "2026-05-22T12:32:21.043-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d4aa985-44b8-4aad-ba37-a792f9f58f3a", + "direction": "outgoing", + "index": 128565, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.048-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "d9b7a08a-9337-4ecb-8c23-5b1ddce3edf4", + "direction": "outgoing", + "index": 128566, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/_search", + "verb": "post" + }, + { + "id": "8c111368-ab08-474b-b55d-0869a9b3cf4e", + "direction": "outgoing", + "index": 128567, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "e6223408-5bab-4cd2-ac86-41f6aeded64b", + "direction": "outgoing", + "index": 128568, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.101-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "18608b1e-3a03-4ea5-b3d3-8d69ea858fd6", + "direction": "outgoing", + "index": 128569, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "e579b266-b934-4f07-862f-9c36b9874307", + "direction": "outgoing", + "index": 128570, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9ce7a4dd-9200-4819-aaf9-13473da617e4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "277fc03e-9e92-4776-9550-99c7031ea4a5", + "direction": "outgoing", + "index": 128571, + "result_id": "5bc64511-18f8-4a63-b467-d922d9f46efe", + "status": 200, + "timestamp": "2026-05-22T12:32:21.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:21.043-04:00" + }, + { + "id": "a2a8cbf9-4c7f-486e-9f2f-121330c5720e", + "created_at": "2026-05-22T12:32:21.775-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "12b4b5bc-b94d-456f-838d-bfb51402826d", + "direction": "outgoing", + "index": 128572, + "result_id": "a2a8cbf9-4c7f-486e-9f2f-121330c5720e", + "status": 200, + "timestamp": "2026-05-22T12:32:21.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "bc57aa9b-51d1-4692-a380-17808d021dfd", + "direction": "outgoing", + "index": 128573, + "result_id": "a2a8cbf9-4c7f-486e-9f2f-121330c5720e", + "status": 200, + "timestamp": "2026-05-22T12:32:21.800-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "08afcc0a-13ac-46ce-85e5-0d18aea8f2f5", + "direction": "outgoing", + "index": 128574, + "result_id": "a2a8cbf9-4c7f-486e-9f2f-121330c5720e", + "status": 200, + "timestamp": "2026-05-22T12:32:21.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "0208d153-1c76-4fc1-ac58-fcfe48812492", + "direction": "outgoing", + "index": 128575, + "result_id": "a2a8cbf9-4c7f-486e-9f2f-121330c5720e", + "status": 200, + "timestamp": "2026-05-22T12:32:21.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:21.775-04:00" + }, + { + "id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "created_at": "2026-05-22T12:32:23.403-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "8738126c-1166-4bfa-9cec-ec78a2ff19fa", + "direction": "outgoing", + "index": 128576, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "d0dc35e6-2021-4116-b07e-3b5abb24ab3a", + "direction": "outgoing", + "index": 128577, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "71852cc3-bdff-4e73-ac87-722d06ca4365", + "direction": "outgoing", + "index": 128578, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.446-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "3fe5bf6f-e09f-4a45-a538-40fb78e2b257", + "direction": "outgoing", + "index": 128579, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.459-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "1d972dce-ca69-4321-b8cb-38f404100f62", + "direction": "outgoing", + "index": 128580, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "f8c7dd20-bfae-4893-9d6a-d6db9c23ca70", + "direction": "outgoing", + "index": 128581, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "aa974c5e-a831-4d16-8ad8-f6320a41dac1", + "direction": "outgoing", + "index": 128582, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.497-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "bd6c506b-f9fc-416f-8c53-bc3dfbf3e228", + "direction": "outgoing", + "index": 128583, + "result_id": "2a2498eb-f583-4298-9273-10b0c3095ffd", + "status": 200, + "timestamp": "2026-05-22T12:32:23.510-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_patient_category_status_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:23.403-04:00" + }, + { + "id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "created_at": "2026-05-22T12:32:25.358-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cc48934c-1faf-4688-85d9-11723c996f2e", + "direction": "outgoing", + "index": 128584, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ba49e4a6-9885-4635-bfd5-50eb9daaffb0", + "direction": "outgoing", + "index": 128585, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.382-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4b3acf4c-e9d5-479e-9b3a-fd3c11b47b81", + "direction": "outgoing", + "index": 128586, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "780a2dd5-138f-4386-ab09-b62323da3a9c", + "direction": "outgoing", + "index": 128587, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.412-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "20f5ad3b-38b7-4fc6-8b6d-5b45bb3dbff5", + "direction": "outgoing", + "index": 128588, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "950ce470-d4a0-4405-aee3-8ef2a7b017b1", + "direction": "outgoing", + "index": 128589, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "14b4d729-8ce5-428a-b41c-504176ec3362", + "direction": "outgoing", + "index": 128590, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ea9f9517-20e9-4e90-a432-1ca6ceaa1b64", + "direction": "outgoing", + "index": 128591, + "result_id": "fc32817d-dfe4-43e0-9b00-eb6efd07e075", + "status": 200, + "timestamp": "2026-05-22T12:32:25.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=25445866-2275-4488-a2de-4cdc4ee0a7b2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:25.358-04:00" + }, + { + "id": "305a51c3-a7ec-4265-9ce1-6323e30359f2", + "created_at": "2026-05-22T12:32:25.604-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5b6f1277-a698-458f-b0f4-dde9ecd26bc0", + "direction": "outgoing", + "index": 128592, + "result_id": "305a51c3-a7ec-4265-9ce1-6323e30359f2", + "status": 200, + "timestamp": "2026-05-22T12:32:25.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:25.604-04:00" + }, + { + "id": "3d196eed-e8e4-47c8-b3df-ecbe2c5694d2", + "created_at": "2026-05-22T12:32:27.938-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "73d453a2-5f14-4395-ad5f-a681e32178e1", + "direction": "outgoing", + "index": 128593, + "result_id": "3d196eed-e8e4-47c8-b3df-ecbe2c5694d2", + "status": 200, + "timestamp": "2026-05-22T12:32:27.945-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85", + "verb": "get" + }, + { + "id": "96f5ced9-012a-431c-991f-4c6b43c54f93", + "direction": "outgoing", + "index": 128594, + "result_id": "3d196eed-e8e4-47c8-b3df-ecbe2c5694d2", + "status": 200, + "timestamp": "2026-05-22T12:32:27.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355", + "verb": "get" + }, + { + "id": "e9822e57-d707-468f-8d3c-5db740026ca6", + "direction": "outgoing", + "index": 128595, + "result_id": "3d196eed-e8e4-47c8-b3df-ecbe2c5694d2", + "status": 200, + "timestamp": "2026-05-22T12:32:27.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d0bc0c06-d765-434a-bded-37e3c5dca9f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "edcd75ab-9da9-44d7-b70f-fa3b33175faa", + "direction": "outgoing", + "index": 128596, + "result_id": "3d196eed-e8e4-47c8-b3df-ecbe2c5694d2", + "status": 200, + "timestamp": "2026-05-22T12:32:27.996-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:27.938-04:00" + }, + { + "id": "e6605a8e-8e9e-4b54-936f-93c2d11d8daf", + "created_at": "2026-05-22T12:32:35.895-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.category[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:35.895-04:00" + }, + { + "id": "9eb148bf-9720-4060-ab73-533deeb2d7da", + "created_at": "2026-05-22T12:32:35.973-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:35.973-04:00" + }, + { + "id": "25732ec9-fec9-4a8d-a8f2-b971c8dc3921", + "created_at": "2026-05-22T12:32:36.258-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d454ee94-2efe-4e86-a91a-7ed1b4a21a5e", + "direction": "outgoing", + "index": 128597, + "result_id": "25732ec9-fec9-4a8d-a8f2-b971c8dc3921", + "status": 200, + "timestamp": "2026-05-22T12:32:36.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "1cae0ed3-b6fc-456d-b564-fa3756a75f65", + "direction": "outgoing", + "index": 128598, + "result_id": "25732ec9-fec9-4a8d-a8f2-b971c8dc3921", + "status": 200, + "timestamp": "2026-05-22T12:32:36.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan-us_core_v800_care_plan_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:36.258-04:00" + }, + { + "id": "edc25ab7-e89b-4d39-bee8-c31c0642c9df", + "created_at": "2026-05-22T12:32:36.312-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_plan", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:36.312-04:00" + }, + { + "id": "85899f39-4eaa-416a-80eb-3ba801811738", + "created_at": "2026-05-22T12:32:39.857-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b6562788-710d-4bbc-b241-6ee9fb71dee2", + "direction": "outgoing", + "index": 128599, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "5ae70bd4-477b-42c9-961d-856f43ccf314", + "direction": "outgoing", + "index": 128600, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "39e27733-0d6e-450d-9f34-df517373c396", + "direction": "outgoing", + "index": 128601, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/_search", + "verb": "post" + }, + { + "id": "b2773d45-60fd-40e9-b6e2-62f19defeffe", + "direction": "outgoing", + "index": 128602, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active", + "verb": "get" + }, + { + "id": "8a789c11-c90a-48c6-919b-d66d22c21a78", + "direction": "outgoing", + "index": 128603, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "dbe34b04-a368-4853-a3cf-bcdbacd79991", + "direction": "outgoing", + "index": 128604, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "62c7b25e-d156-4b54-9283-ea054ec735e8", + "direction": "outgoing", + "index": 128605, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "89d89362-9c1c-405e-abe4-3523c589b66b", + "direction": "outgoing", + "index": 128606, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.970-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "018e2451-dc86-42b7-ad09-3ce54904336a", + "direction": "outgoing", + "index": 128607, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.984-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "180e7a41-9747-423c-b413-4748db3e31fa", + "direction": "outgoing", + "index": 128608, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:39.996-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "09885440-afc6-47e3-82a9-392f9efedfcc", + "direction": "outgoing", + "index": 128609, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.041-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "5df171a3-33ec-4f54-9950-db498ec3faf4", + "direction": "outgoing", + "index": 128610, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8149570b-c9f3-46e8-b8a0-1ba01d2ba86f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7a742f74-8556-4cea-b824-592d11f6f1b7", + "direction": "outgoing", + "index": 128611, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.071-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "0375fa2c-f228-4df0-9099-8f0a23cd5599", + "direction": "outgoing", + "index": 128612, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.088-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=908\u0026status=proposed", + "verb": "get" + }, + { + "id": "310a2c22-9ea1-47d1-861e-dec45652f99f", + "direction": "outgoing", + "index": 128613, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=908\u0026status=active", + "verb": "get" + }, + { + "id": "499bce19-c061-4cb4-bb22-5a230d75096a", + "direction": "outgoing", + "index": 128614, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=908\u0026status=suspended", + "verb": "get" + }, + { + "id": "e57f5cd7-8e43-44ba-8e9c-7f2767d9d6d2", + "direction": "outgoing", + "index": 128615, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=908\u0026status=inactive", + "verb": "get" + }, + { + "id": "d201969e-d892-4aca-9cd5-d37a5e7fb868", + "direction": "outgoing", + "index": 128616, + "result_id": "85899f39-4eaa-416a-80eb-3ba801811738", + "status": 200, + "timestamp": "2026-05-22T12:32:40.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=908\u0026status=entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:39.857-04:00" + }, + { + "id": "adbf03eb-d6d8-421f-9892-339e3b4efdf8", + "created_at": "2026-05-22T12:32:40.733-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "38f49545-07c1-4d62-989d-89979662b238", + "direction": "outgoing", + "index": 128617, + "result_id": "adbf03eb-d6d8-421f-9892-339e3b4efdf8", + "status": 400, + "timestamp": "2026-05-22T12:32:40.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003", + "verb": "get" + }, + { + "id": "5b0c496e-f3eb-4428-b96a-5032887db557", + "direction": "outgoing", + "index": 128618, + "result_id": "adbf03eb-d6d8-421f-9892-339e3b4efdf8", + "status": 400, + "timestamp": "2026-05-22T12:32:40.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003\u0026status=proposed", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_role_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:40.733-04:00" + }, + { + "id": "2eae3be2-1640-433b-80d2-ad20027d99f0", + "created_at": "2026-05-22T12:32:41.445-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "bb216dea-fcc0-4b14-96e1-c81bd6df3361", + "direction": "outgoing", + "index": 128619, + "result_id": "2eae3be2-1640-433b-80d2-ad20027d99f0", + "status": 400, + "timestamp": "2026-05-22T12:32:41.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003", + "verb": "get" + }, + { + "id": "aa2552c2-881a-4898-a7b0-615164fab3fd", + "direction": "outgoing", + "index": 128620, + "result_id": "2eae3be2-1640-433b-80d2-ad20027d99f0", + "status": 400, + "timestamp": "2026-05-22T12:32:41.472-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003\u0026status=proposed", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_patient_role_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:41.445-04:00" + }, + { + "id": "8c006905-6fe0-42cf-94cb-fa89ca92c156", + "created_at": "2026-05-22T12:32:41.763-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "616205bd-71ff-4211-bae5-6a92895c19c7", + "direction": "outgoing", + "index": 128621, + "result_id": "8c006905-6fe0-42cf-94cb-fa89ca92c156", + "status": 200, + "timestamp": "2026-05-22T12:32:41.769-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:41.763-04:00" + }, + { + "id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "created_at": "2026-05-22T12:32:48.028-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dec78469-01c8-4c87-8766-39b59d218109", + "direction": "outgoing", + "index": 128622, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed", + "verb": "get" + }, + { + "id": "b29a63fa-14e3-4f5d-81c2-ffceadd31b37", + "direction": "outgoing", + "index": 128623, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active", + "verb": "get" + }, + { + "id": "f15ca2ef-5598-42be-bdae-5b2d29ef40a8", + "direction": "outgoing", + "index": 128624, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended", + "verb": "get" + }, + { + "id": "cbcd6992-a093-43b9-928a-784991662385", + "direction": "outgoing", + "index": 128625, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive", + "verb": "get" + }, + { + "id": "48092a7a-8bfa-45f6-bc0a-71b146e4e7ea", + "direction": "outgoing", + "index": 128626, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.105-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "5ec01859-3e15-4029-b2fc-d9e23d930cb9", + "direction": "outgoing", + "index": 128627, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed", + "verb": "get" + }, + { + "id": "c786eb4b-c87f-4fe5-b33c-8a6e521feebc", + "direction": "outgoing", + "index": 128628, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.126-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "a7261469-e250-48ee-8d95-8ed501c4ea89", + "direction": "outgoing", + "index": 128629, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended", + "verb": "get" + }, + { + "id": "710871df-cd4f-45af-9401-e28c34b59f40", + "direction": "outgoing", + "index": 128630, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.150-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive", + "verb": "get" + }, + { + "id": "46d4a007-bc6b-4029-9869-1a1694a46ede", + "direction": "outgoing", + "index": 128631, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7277e48d-4682-484d-a650-8776a1646e98\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "902b13ad-c39a-4697-b1ca-92db25759c0a", + "direction": "outgoing", + "index": 128632, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error", + "verb": "get" + }, + { + "id": "63b5eb8c-d23b-4c67-888f-55631cc4b601", + "direction": "outgoing", + "index": 128633, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=908\u0026status=proposed", + "verb": "get" + }, + { + "id": "f4963503-9432-4133-afe7-6774caa6a32d", + "direction": "outgoing", + "index": 128634, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=908\u0026status=active", + "verb": "get" + }, + { + "id": "5d7bd5ab-e813-4766-a672-f8370544d7a0", + "direction": "outgoing", + "index": 128635, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.210-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=908\u0026status=suspended", + "verb": "get" + }, + { + "id": "38b46867-493a-4f35-9c40-d60b880581f8", + "direction": "outgoing", + "index": 128636, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=908\u0026status=inactive", + "verb": "get" + }, + { + "id": "fd6afe9b-719d-410b-8fac-7b9ec057e61d", + "direction": "outgoing", + "index": 128637, + "result_id": "aa47a97c-654e-4af1-b8b1-76142a461112", + "status": 200, + "timestamp": "2026-05-22T12:32:48.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=908\u0026status=entered-in-error", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:48.028-04:00" + }, + { + "id": "ed53d725-0335-4a92-a953-674af0ab7187", + "created_at": "2026-05-22T12:32:53.709-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[3].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#133932002)", + "type": "warning" + }, + { + "message": "CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed", + "type": "warning" + }, + { + "message": "CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[0].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#116154003)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)", + "type": "warning" + }, + { + "message": "CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:53.709-04:00" + }, + { + "id": "039b9820-c9bd-4c8d-b11d-96462b8d2b27", + "created_at": "2026-05-22T12:32:53.891-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:32:53.891-04:00" + }, + { + "id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "created_at": "2026-05-22T12:33:07.684-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ab23974c-0534-43e7-8eb2-e2a5687000e1", + "direction": "outgoing", + "index": 128638, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.689-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "da0c5fc3-2a68-424b-a592-c1d07c60d38c", + "direction": "outgoing", + "index": 128639, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.722-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "33f94024-642c-488d-824f-d96f2f48e629", + "direction": "outgoing", + "index": 128640, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.760-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "c34a2ad2-c2d4-4ae0-9627-a452e616e0af", + "direction": "outgoing", + "index": 128641, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "3341d78d-6753-4130-9ba4-284d7bbe7c71", + "direction": "outgoing", + "index": 128642, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "81ceab1e-2833-4c37-9f2c-7fd9dddb9327", + "direction": "outgoing", + "index": 128643, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.837-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + }, + { + "id": "f169536d-17b9-4871-ace3-ce91f29c0119", + "direction": "outgoing", + "index": 128644, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.855-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "4079bd5a-c34d-4d1f-a09c-d937e1c53166", + "direction": "outgoing", + "index": 128645, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "65f674f6-0625-417b-9e4a-5095243dd4df", + "direction": "outgoing", + "index": 128646, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "fb915b71-7f85-43b4-a12a-53dc8f0a2e12", + "direction": "outgoing", + "index": 128647, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.905-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "d5879409-2594-4108-88de-c69588084d42", + "direction": "outgoing", + "index": 128648, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.929-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "aebd768f-abd0-4d11-8e46-7e305d368398", + "direction": "outgoing", + "index": 128649, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:07.992-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "1fd741e7-9825-49ae-92e2-05d2c7a512b1", + "direction": "outgoing", + "index": 128650, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "a45d86e2-6c2b-46ec-a810-a05cfd7541c3", + "direction": "outgoing", + "index": 128651, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "eb4fcbca-77c0-491d-9745-263545d7406c", + "direction": "outgoing", + "index": 128652, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.054-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "0ba4501a-44a1-48d3-94d2-efe448c57a10", + "direction": "outgoing", + "index": 128653, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.096-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "400b729a-b976-4748-b4ed-3562abad9ffa", + "direction": "outgoing", + "index": 128654, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.113-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "ef3c4141-39e0-4a0e-a08e-d6599f59f59c", + "direction": "outgoing", + "index": 128655, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.128-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "6013144f-01c1-4783-bd3a-72a9b051c992", + "direction": "outgoing", + "index": 128656, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "c28ac3b8-6269-4b6d-96c8-69f40903016e", + "direction": "outgoing", + "index": 128657, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.159-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "746f80aa-70f7-4e3c-8e05-d269746125c9", + "direction": "outgoing", + "index": 128658, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "62ef46c1-32f3-4b05-901c-29f40f9bea03", + "direction": "outgoing", + "index": 128659, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "151128f8-4eac-4919-a578-b3f932c2db1a", + "direction": "outgoing", + "index": 128660, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "20d261f8-9ca7-4fea-b172-aaf5a07b8560", + "direction": "outgoing", + "index": 128661, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "8ffa9356-cef8-4292-9a62-fc79ed8435d6", + "direction": "outgoing", + "index": 128662, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.232-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "31bb6953-7298-4035-9241-fbea6dd9670a", + "direction": "outgoing", + "index": 128663, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "9a80f412-a972-4d16-b6ac-c09f4f413525", + "direction": "outgoing", + "index": 128664, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "a9ed54d6-61d7-4401-bcbc-bfd13cfe5649", + "direction": "outgoing", + "index": 128665, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.279-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "b881794d-67e7-4ef6-94c4-2772010f778a", + "direction": "outgoing", + "index": 128666, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "7810b8bb-1460-4c69-83dd-8c27a3fe6fe9", + "direction": "outgoing", + "index": 128667, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "80664066-c0da-4b5c-878c-49b610f5a2d9", + "direction": "outgoing", + "index": 128668, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "6d701e77-7130-4873-bb9b-21635fa6d917", + "direction": "outgoing", + "index": 128669, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.331-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "81214a17-3841-4a39-bf28-88650f73f804", + "direction": "outgoing", + "index": 128670, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "078e340a-5250-4785-ac01-5027069e3b94", + "direction": "outgoing", + "index": 128671, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "7ea9d0c6-b03c-43e8-92a1-298a79cd28fb", + "direction": "outgoing", + "index": 128672, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.374-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "b03ecd48-708c-438e-81c6-0d73af5f6fd7", + "direction": "outgoing", + "index": 128673, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.392-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "b497f600-d8cb-4b3c-9ef7-6a3ea9b31e49", + "direction": "outgoing", + "index": 128674, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "25dbabba-c077-44e7-875e-8857b711ea21", + "direction": "outgoing", + "index": 128675, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "132d238f-0ddd-4090-b054-e7c1987533ed", + "direction": "outgoing", + "index": 128676, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "4ff28b9c-aeca-4560-8aca-165ddd048ea3", + "direction": "outgoing", + "index": 128677, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.446-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "ae17ae81-7dfd-4c01-81eb-a945ea73467f", + "direction": "outgoing", + "index": 128678, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "a5e0e7af-ac13-48c7-9cef-3347d9ad1178", + "direction": "outgoing", + "index": 128679, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.469-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "6439c435-6e1d-4e34-8ab2-319db95155bf", + "direction": "outgoing", + "index": 128680, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.482-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "bab6cfea-5338-4d0c-aace-4ad4f0f01d30", + "direction": "outgoing", + "index": 128681, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.497-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "fd80e97c-7b28-4f09-8985-673f4c1796a8", + "direction": "outgoing", + "index": 128682, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "98b2e518-e5de-4aac-ba2f-cfca7ca59f96", + "direction": "outgoing", + "index": 128683, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "cb6c9644-2a75-4ccf-8894-d7e8e17705f7", + "direction": "outgoing", + "index": 128684, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "435cb82f-23e3-461e-ab04-1c4a1d5003e2", + "direction": "outgoing", + "index": 128685, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.548-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "7bcfd1aa-954a-4c93-adf3-3147079164a2", + "direction": "outgoing", + "index": 128686, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.561-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "9b9bc645-6b06-4839-af4d-9b80b7a164f4", + "direction": "outgoing", + "index": 128687, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "d5d4c9d1-d281-4fcf-ab65-61bd120064be", + "direction": "outgoing", + "index": 128688, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.585-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "642992a5-a189-4cee-97af-4f849ea84e47", + "direction": "outgoing", + "index": 128689, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "5568de2b-b276-46d0-977d-356f5dcffc90", + "direction": "outgoing", + "index": 128690, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "e6636147-93c7-49b3-8455-de6afdb173cc", + "direction": "outgoing", + "index": 128691, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.625-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "d1498fd8-1bfc-4b93-931a-14189fe2b800", + "direction": "outgoing", + "index": 128692, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "f0d8eed8-35e3-4677-b3ea-2e74c8937f00", + "direction": "outgoing", + "index": 128693, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "8c86c163-b144-47e3-9297-b44d8bb08f07", + "direction": "outgoing", + "index": 128694, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.672-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "346b49ef-dc3e-4525-8f70-b698b2daaa4e", + "direction": "outgoing", + "index": 128695, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "d16f0e53-4071-44e1-ae7e-fed0ca79ebdb", + "direction": "outgoing", + "index": 128696, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "e59da726-99c3-4d5d-85ee-c1f91625be90", + "direction": "outgoing", + "index": 128697, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.750-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "3afead3a-90ee-4418-9876-509041a7e5df", + "direction": "outgoing", + "index": 128698, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "9ca988fe-28eb-46c4-b185-b156b6cb3c10", + "direction": "outgoing", + "index": 128699, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.792-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "ffc76c05-6be5-4c4d-9b42-f066e7bb7008", + "direction": "outgoing", + "index": 128700, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "af58ae35-4ccc-44c9-9c85-8a5878055e49", + "direction": "outgoing", + "index": 128701, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "bd669c3e-5113-42be-b4db-1d9e4a25a311", + "direction": "outgoing", + "index": 128702, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "9d5af525-594f-419a-83b3-e42af07c5f59", + "direction": "outgoing", + "index": 128703, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "d55ffbec-ec0f-416f-8183-58cf32788324", + "direction": "outgoing", + "index": 128704, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.866-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "50bd8dfd-413a-4984-9f31-e8416d9f5f57", + "direction": "outgoing", + "index": 128705, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "4a75563f-2b9c-4a0e-87b0-d37f3c3ab2dc", + "direction": "outgoing", + "index": 128706, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.912-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "8801127e-949b-4420-83fd-6cf094779bfb", + "direction": "outgoing", + "index": 128707, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "4f8abbe3-13a3-4aff-a58f-98e05b488859", + "direction": "outgoing", + "index": 128708, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "c5cc40f6-c21a-4305-a6e2-0d0fbc4fb601", + "direction": "outgoing", + "index": 128709, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.973-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "e429ff00-4230-49ff-9a76-ef39e1446f0d", + "direction": "outgoing", + "index": 128710, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.985-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "0cb4ec2a-2134-471c-b012-2629d0c1a54e", + "direction": "outgoing", + "index": 128711, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:08.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "007222cb-6d66-428f-a598-2a970247ab1e", + "direction": "outgoing", + "index": 128712, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.011-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "702c730f-24b9-4f5b-8523-b928d008b85b", + "direction": "outgoing", + "index": 128713, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "20d94731-6433-453a-8bdd-a4743fcd2db4", + "direction": "outgoing", + "index": 128714, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "82981453-025d-42e2-b033-07c72f61e343", + "direction": "outgoing", + "index": 128715, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.054-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "db2f0430-3897-408f-ad7a-118acee7bbc1", + "direction": "outgoing", + "index": 128716, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.067-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/355", + "verb": "get" + }, + { + "id": "f8720b4e-0da5-4fce-977b-e661d6642356", + "direction": "outgoing", + "index": 128717, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.080-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + }, + { + "id": "e511b60b-bb55-4d3d-a3f3-881684b678d5", + "direction": "outgoing", + "index": 128718, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/defb162c-d2b6-470d-ae06-6297179c8ee8", + "verb": "get" + }, + { + "id": "5f33f0c2-aadf-4a78-a243-6878c71dee54", + "direction": "outgoing", + "index": 128719, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.109-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Patient/85", + "verb": "get" + }, + { + "id": "60f92a85-1bad-43f1-909e-3ba2c0857fd6", + "direction": "outgoing", + "index": 128720, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.124-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "4b1987a7-e1d2-4617-9cd4-106d53cfe5fc", + "direction": "outgoing", + "index": 128721, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "fa64e7c7-54c9-4446-9b69-86d86be6e828", + "direction": "outgoing", + "index": 128722, + "result_id": "13db0609-dce6-47e0-9bbf-a67e5163c005", + "status": 200, + "timestamp": "2026-05-22T12:33:09.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team-us_core_v800_care_team_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:07.684-04:00" + }, + { + "id": "536ae2a7-5022-4f38-aabf-82f6cc003d93", + "created_at": "2026-05-22T12:33:09.164-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_team", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:09.164-04:00" + }, + { + "id": "18f92505-3acf-4993-948a-176a4a9d947e", + "created_at": "2026-05-22T12:33:11.602-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4cb49341-c14a-4f3f-9d25-415df298a6f3", + "direction": "outgoing", + "index": 128723, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "b1c83335-55c4-4668-b9ee-f291727788ab", + "direction": "outgoing", + "index": 128724, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=80e3f8b9-42f3-417e-a0cf-ca810026ed80\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c3f1e6b4-b89f-40a6-9adb-c717d8b180c4", + "direction": "outgoing", + "index": 128725, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.648-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "094677d7-4159-46fb-9c33-6168b5efde2f", + "direction": "outgoing", + "index": 128726, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=80e3f8b9-42f3-417e-a0cf-ca810026ed80\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d9b51d4-d478-4ade-8fa3-bb3fae368897", + "direction": "outgoing", + "index": 128727, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "7a80c80a-07f9-41cf-8511-82d2c8b43f7d", + "direction": "outgoing", + "index": 128728, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e30dba7-4157-41b5-a5db-e7430981a171\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "57ef8c1a-433b-4109-a3ce-901e7ea4da3e", + "direction": "outgoing", + "index": 128729, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "cfee3e0b-1da1-4354-8c2e-ccd98a8cf55d", + "direction": "outgoing", + "index": 128730, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c01ce7a4-e02e-4c57-8e84-0bbe0048a2ef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3bd19529-a843-4976-bb3d-75764696bb2c", + "direction": "outgoing", + "index": 128731, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.723-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355", + "verb": "get" + }, + { + "id": "62231e9f-e69c-401d-af12-bbdc9dac0922", + "direction": "outgoing", + "index": 128732, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.734-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ddb40c0f-295b-49c8-9049-ed5ca8b41c8c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4c308234-82a3-4258-a2e6-d72b623d5a21", + "direction": "outgoing", + "index": 128733, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ddb40c0f-295b-49c8-9049-ed5ca8b41c8c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cf5b2e08-b53c-4bc6-b30f-06e6e988a471", + "direction": "outgoing", + "index": 128734, + "result_id": "18f92505-3acf-4993-948a-176a4a9d947e", + "status": 200, + "timestamp": "2026-05-22T12:33:11.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:11.602-04:00" + }, + { + "id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "created_at": "2026-05-22T12:33:13.898-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4486e52c-2d7c-4e7f-8c6e-c210d3068f68", + "direction": "outgoing", + "index": 128735, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.905-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85", + "verb": "get" + }, + { + "id": "0945a93e-3539-4482-bdbe-107397ed3a9e", + "direction": "outgoing", + "index": 128736, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.933-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f0097d3-e529-4e71-8224-4d569057013f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78c5a497-127d-4de8-8f0c-04115db15195", + "direction": "outgoing", + "index": 128737, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.950-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355", + "verb": "get" + }, + { + "id": "483a18ed-475c-43b3-846a-6dea6220d851", + "direction": "outgoing", + "index": 128738, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9348e4c2-142b-4dfb-9309-d4c26d4671cb", + "direction": "outgoing", + "index": 128739, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f4124d1-8d25-4f13-bfae-692d59c5b267", + "direction": "outgoing", + "index": 128740, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:13.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a9269444-91c9-4896-8782-546fad67dfea", + "direction": "outgoing", + "index": 128741, + "result_id": "310c71a2-8d52-45b0-a610-e9ef4ddb8288", + "status": 200, + "timestamp": "2026-05-22T12:33:14.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:13.898-04:00" + }, + { + "id": "cf03e902-7ca4-49a9-8e65-f34d611cfa1b", + "created_at": "2026-05-22T12:33:14.353-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "5badfa4d-cb02-4e54-9d2f-bcadba6235e5", + "direction": "outgoing", + "index": 128742, + "result_id": "cf03e902-7ca4-49a9-8e65-f34d611cfa1b", + "status": 200, + "timestamp": "2026-05-22T12:33:14.357-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85", + "verb": "get" + }, + { + "id": "847170c9-4270-4890-800e-cabe1cb77f2a", + "direction": "outgoing", + "index": 128743, + "result_id": "cf03e902-7ca4-49a9-8e65-f34d611cfa1b", + "status": 200, + "timestamp": "2026-05-22T12:33:14.370-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85", + "verb": "get" + }, + { + "id": "f5035006-fb31-4fa6-a456-fabdb176c317", + "direction": "outgoing", + "index": 128744, + "result_id": "cf03e902-7ca4-49a9-8e65-f34d611cfa1b", + "status": 200, + "timestamp": "2026-05-22T12:33:14.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_category_encounter_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:14.353-04:00" + }, + { + "id": "579007d6-d903-4d89-86d3-1a92ab755701", + "created_at": "2026-05-22T12:33:16.706-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fbfc7403-a884-4303-8ed5-e48824cd3bcd", + "direction": "outgoing", + "index": 128745, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00", + "verb": "get" + }, + { + "id": "b5c0c529-fba0-4e70-bc23-af25964c2991", + "direction": "outgoing", + "index": 128746, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00", + "verb": "get" + }, + { + "id": "b3ab74db-69c2-427a-9f76-6ccf786192fd", + "direction": "outgoing", + "index": 128747, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ecea0cbf-3c14-404a-809d-fdb0b0b13922\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "088218b1-0b95-470d-86db-2c858a939ce8", + "direction": "outgoing", + "index": 128748, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.770-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00", + "verb": "get" + }, + { + "id": "b38085f4-b54b-4199-88cb-d27219db71d7", + "direction": "outgoing", + "index": 128749, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bc9f1cd7-5cd2-4ebd-92d7-4e43c1ab2ca9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2e4edb63-c4c5-487c-a83f-34aa9a9bf838", + "direction": "outgoing", + "index": 128750, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00", + "verb": "get" + }, + { + "id": "28908d1a-40f7-45fd-b4f0-efc5584038d5", + "direction": "outgoing", + "index": 128751, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.814-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00", + "verb": "get" + }, + { + "id": "57a2800b-4d21-4ef4-a052-451700d1e620", + "direction": "outgoing", + "index": 128752, + "result_id": "579007d6-d903-4d89-86d3-1a92ab755701", + "status": 200, + "timestamp": "2026-05-22T12:33:16.825-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_recorded_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:16.706-04:00" + }, + { + "id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "created_at": "2026-05-22T12:33:18.960-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "703f7481-544d-439b-a120-7a823dbc782f", + "direction": "outgoing", + "index": 128753, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:18.972-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8275e338-009c-40d0-8e53-00ccd323debd", + "direction": "outgoing", + "index": 128754, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:19.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=41044b64-877f-44fb-8ae2-486a112f5f55\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c689c34c-3409-423a-ae6b-1a9330934225", + "direction": "outgoing", + "index": 128755, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:19.041-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6f140788-455a-4ac1-bf99-073ed35ae08a", + "direction": "outgoing", + "index": 128756, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:19.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9c638b70-6898-482f-b6b3-847a29a5a41c", + "direction": "outgoing", + "index": 128757, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:19.072-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1d8a9a48-4a4a-4bda-883d-5f79275a9a42", + "direction": "outgoing", + "index": 128758, + "result_id": "e7eea52e-622e-4bd4-947c-57fa3e94678f", + "status": 200, + "timestamp": "2026-05-22T12:33:19.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:18.960-04:00" + }, + { + "id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "created_at": "2026-05-22T12:33:20.768-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "afe89f68-2474-49bf-be32-53a75c279c87", + "direction": "outgoing", + "index": 128759, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85", + "verb": "get" + }, + { + "id": "fe21aed6-bd56-499d-911c-74ecb02d9546", + "direction": "outgoing", + "index": 128760, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.800-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0d91e0bb-5aaf-48c7-beb3-db598177209d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8e8ff38-1732-4a09-8f84-879e90094322", + "direction": "outgoing", + "index": 128761, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85", + "verb": "get" + }, + { + "id": "5464f14a-2132-405d-91cc-6fbe006c2227", + "direction": "outgoing", + "index": 128762, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=adea2548-e6c9-4a0c-b918-6e977d841e22\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "28d575b5-c5a8-4137-84de-6b05854e4015", + "direction": "outgoing", + "index": 128763, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "f2875c6b-b049-4cba-8927-61136e0aac88", + "direction": "outgoing", + "index": 128764, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11fc3f0d-ec3c-49e3-9266-c937c641195d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "538245a6-6e35-4fc5-bb61-23f3534c6f6f", + "direction": "outgoing", + "index": 128765, + "result_id": "3273a98b-0185-4680-a2c3-29c21986e6a0", + "status": 200, + "timestamp": "2026-05-22T12:33:20.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11fc3f0d-ec3c-49e3-9266-c937c641195d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_category_clinical_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:20.768-04:00" + }, + { + "id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "created_at": "2026-05-22T12:33:23.066-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "29a27386-35df-4f2a-b8a9-de9cf1d2c966", + "direction": "outgoing", + "index": 128766, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1da3bd60-b213-4f15-836c-818541e75ae1", + "direction": "outgoing", + "index": 128767, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.104-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "92844fb4-8e2d-4360-a5d4-65ac3cf11199", + "direction": "outgoing", + "index": 128768, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4777ae-56a2-4b24-b78d-9d629c4867a2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "06939e6c-e4b8-40f8-9114-f947da97e9eb", + "direction": "outgoing", + "index": 128769, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.137-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "83ccea1b-03e0-49b0-975c-980b88775e95", + "direction": "outgoing", + "index": 128770, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0d0b2fb5-00c8-40b3-bf4c-75fb2d182e7f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "384e47c6-3473-4dd5-b960-8956379bc6a8", + "direction": "outgoing", + "index": 128771, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b3abde01-1d8e-46ed-9508-e9419bb59f85", + "direction": "outgoing", + "index": 128772, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f4d8d477-52e8-45e7-9304-0acb5d56e899", + "direction": "outgoing", + "index": 128773, + "result_id": "d2582902-eb7b-4716-8c3c-62a1c381c4ed", + "status": 200, + "timestamp": "2026-05-22T12:33:23.189-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_onset_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:23.066-04:00" + }, + { + "id": "d4ae3334-234d-495e-ac03-912968298c06", + "created_at": "2026-05-22T12:33:23.550-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3ae0f052-64e1-4744-8e03-fc96ae35488c", + "direction": "outgoing", + "index": 128774, + "result_id": "d4ae3334-234d-495e-ac03-912968298c06", + "status": 200, + "timestamp": "2026-05-22T12:33:23.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "81298690-e269-47dd-b693-6fc1718dab99", + "direction": "outgoing", + "index": 128775, + "result_id": "d4ae3334-234d-495e-ac03-912968298c06", + "status": 200, + "timestamp": "2026-05-22T12:33:23.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85", + "verb": "get" + }, + { + "id": "220edbaf-ba9a-4f32-82b1-92ea29239bad", + "direction": "outgoing", + "index": 128776, + "result_id": "d4ae3334-234d-495e-ac03-912968298c06", + "status": 200, + "timestamp": "2026-05-22T12:33:23.581-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:23.550-04:00" + }, + { + "id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "created_at": "2026-05-22T12:33:25.267-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e87a3f71-d447-41e4-ab5e-a443a0bc39c5", + "direction": "outgoing", + "index": 128777, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85", + "verb": "get" + }, + { + "id": "2b3cf78e-ac63-4f93-bb89-75471ee5f8cb", + "direction": "outgoing", + "index": 128778, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e821a74-3388-4e03-818d-347980152cff\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "721fd0aa-17a3-4703-a7dc-23cbfba00283", + "direction": "outgoing", + "index": 128779, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.324-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85", + "verb": "get" + }, + { + "id": "1762c9d1-7661-4068-892e-96a04cf37615", + "direction": "outgoing", + "index": 128780, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0abae0df-b7c5-4600-a1ca-b79d2557888c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4ec6c5f8-4145-4153-a836-97fc53aa143b", + "direction": "outgoing", + "index": 128781, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "97ea6921-0c3e-4c4e-8a7b-a64c35dd12e3", + "direction": "outgoing", + "index": 128782, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af42a6a7-8c4a-4542-a728-befec230df66\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "747f86e8-dfa7-41a2-89e5-39d7e173ab12", + "direction": "outgoing", + "index": 128783, + "result_id": "ea74748b-7c1c-4f90-a3b1-ed0973f5fe7a", + "status": 200, + "timestamp": "2026-05-22T12:33:25.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af42a6a7-8c4a-4542-a728-befec230df66\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_clinical_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:25.267-04:00" + }, + { + "id": "e2c9ffe4-c64e-4ebe-be81-b2c602732a6b", + "created_at": "2026-05-22T12:33:25.395-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `asserted-date`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_asserted_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:25.395-04:00" + }, + { + "id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "created_at": "2026-05-22T12:33:26.550-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f560e21a-4d6b-433c-a131-9f4887ef1b85", + "direction": "outgoing", + "index": 128784, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bc8b999d-2cb2-4440-8de0-bb1677134576", + "direction": "outgoing", + "index": 128785, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f8a24949-dc5e-4a18-895c-91789b5caaf0", + "direction": "outgoing", + "index": 128786, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.577-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=20d15523-45d0-4312-bd4e-3e6a1c4e3050\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a6208d88-b11c-49ac-b25d-0a5b31cca6c2", + "direction": "outgoing", + "index": 128787, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "43745d34-f8f7-4ad0-8e63-ce810a28add4", + "direction": "outgoing", + "index": 128788, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=20853a85-0a48-4134-90de-56000927bfd5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "49ccf97d-d50b-4cfc-997f-fccb2bb4ea78", + "direction": "outgoing", + "index": 128789, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.621-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "51edc83c-6755-453d-adf3-823469f40d4c", + "direction": "outgoing", + "index": 128790, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "173945be-e8de-455e-8445-97dc723b106e", + "direction": "outgoing", + "index": 128791, + "result_id": "beb9341d-5067-4511-be53-4de4a8daf3e4", + "status": 200, + "timestamp": "2026-05-22T12:33:26.645-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_patient_abatement_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:26.550-04:00" + }, + { + "id": "e5396c87-1296-43fa-8664-81f93e5eeac9", + "created_at": "2026-05-22T12:33:26.772-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c6d90eae-9194-472a-837e-4a6f2ce5ca2c", + "direction": "outgoing", + "index": 128792, + "result_id": "e5396c87-1296-43fa-8664-81f93e5eeac9", + "status": 200, + "timestamp": "2026-05-22T12:33:26.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:26.772-04:00" + }, + { + "id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "created_at": "2026-05-22T12:33:28.516-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "38245894-d3b5-45df-9888-71f414078f58", + "direction": "outgoing", + "index": 128793, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=85", + "verb": "get" + }, + { + "id": "ac38bc83-910a-41a0-86da-5225dd8108cd", + "direction": "outgoing", + "index": 128794, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cddd1058-b8be-4568-9f03-f2d6fbd6d7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7c0a270f-dd46-467d-8aa3-978f0585297e", + "direction": "outgoing", + "index": 128795, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.560-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=355", + "verb": "get" + }, + { + "id": "ab099b87-2fbf-4c35-8099-9d10a55cb84b", + "direction": "outgoing", + "index": 128796, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b8206b85-91c7-4ec1-8f52-abba2c4fad64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "464414c4-898e-4dcb-a922-8e87d449576c", + "direction": "outgoing", + "index": 128797, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b8206b85-91c7-4ec1-8f52-abba2c4fad64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2dc9cdc7-9001-4d65-8686-b903a808fec8", + "direction": "outgoing", + "index": 128798, + "result_id": "3aa668ab-b51c-4852-9382-2dc974785c31", + "status": 200, + "timestamp": "2026-05-22T12:33:28.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:28.516-04:00" + }, + { + "id": "ed8c4dbc-9e05-40d4-b2c2-cfd38995fd02", + "created_at": "2026-05-22T12:33:33.574-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.code: None of the codings provided are in the value set 'US Core Condition Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-condition-code|8.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#15777000)", + "type": "info" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'", + "type": "info" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:33.574-04:00" + }, + { + "id": "1aae4626-63b0-4950-800a-d5d9a8a60904", + "created_at": "2026-05-22T12:33:33.706-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:33.706-04:00" + }, + { + "id": "17271f73-d5df-4d89-96f7-156ac2a37b91", + "created_at": "2026-05-22T12:33:34.939-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d376f11d-5af4-4733-b867-c2ee66a9d8f2", + "direction": "outgoing", + "index": 128799, + "result_id": "17271f73-d5df-4d89-96f7-156ac2a37b91", + "status": 200, + "timestamp": "2026-05-22T12:33:34.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis-us_core_v800_condition_encounter_diagnosis_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:34.939-04:00" + }, + { + "id": "f163e6f1-f786-4a6a-b40c-5486f5304ed2", + "created_at": "2026-05-22T12:33:34.976-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_encounter_diagnosis", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:34.976-04:00" + }, + { + "id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "created_at": "2026-05-22T12:33:36.196-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8b56df49-908d-494f-ac38-ee4d2694050e", + "direction": "outgoing", + "index": 128800, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.203-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85", + "verb": "get" + }, + { + "id": "7d069607-dd3e-46ad-94db-f831b2a1a157", + "direction": "outgoing", + "index": 128801, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.234-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85", + "verb": "get" + }, + { + "id": "89a5056b-c475-4513-a5d9-0cacf600a270", + "direction": "outgoing", + "index": 128802, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355", + "verb": "get" + }, + { + "id": "d07c8e1e-f1ee-4d8f-9d01-a3a38abd30c4", + "direction": "outgoing", + "index": 128803, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/_search", + "verb": "post" + }, + { + "id": "0cbc7698-3bf7-470c-b344-88dc55c5a433", + "direction": "outgoing", + "index": 128804, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "ecd41c9b-7aed-408f-b62e-7bcfb22944ad", + "direction": "outgoing", + "index": 128805, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355", + "verb": "get" + }, + { + "id": "cecd33a6-ec84-4ecf-8d03-158ba031b490", + "direction": "outgoing", + "index": 128806, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355", + "verb": "get" + }, + { + "id": "689e4722-9a47-4f71-ace7-6ae49e861f61", + "direction": "outgoing", + "index": 128807, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.316-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=908", + "verb": "get" + }, + { + "id": "a12d1e1d-305f-4acc-81f5-f40bd57900cb", + "direction": "outgoing", + "index": 128808, + "result_id": "54f3b6fb-e272-42fc-b55c-da6306d187ef", + "status": 200, + "timestamp": "2026-05-22T12:33:36.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:36.196-04:00" + }, + { + "id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "created_at": "2026-05-22T12:33:37.436-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f897399e-28f5-4033-8ce3-52d72d0f4b63", + "direction": "outgoing", + "index": 128809, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=85", + "verb": "get" + }, + { + "id": "afca6e87-6ae5-4ba2-9a21-1c5fa4999c23", + "direction": "outgoing", + "index": 128810, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1f0097d3-e529-4e71-8224-4d569057013f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "176ad48b-cc62-4aa9-8756-a0c7905dd1d6", + "direction": "outgoing", + "index": 128811, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355", + "verb": "get" + }, + { + "id": "aeafb109-899f-45bf-9344-edcd10771828", + "direction": "outgoing", + "index": 128812, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.498-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d38f7bf8-454e-4b89-9a55-4dcf0ceff175", + "direction": "outgoing", + "index": 128813, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.511-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "608f6e97-a372-4eaf-8bd9-9db7fd48e0d0", + "direction": "outgoing", + "index": 128814, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=64b10a94-1859-4b00-bb58-c53139a5a150\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "62e441a5-83cf-4015-803b-04fd3c1ef8ef", + "direction": "outgoing", + "index": 128815, + "result_id": "aff730e9-3cfd-42c1-ab9c-22f2fc99aec3", + "status": 200, + "timestamp": "2026-05-22T12:33:37.538-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:37.436-04:00" + }, + { + "id": "ed394c29-65cf-4f29-a399-387590b31c36", + "created_at": "2026-05-22T12:33:37.552-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `category`, `encounter`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_category_encounter_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:37.552-04:00" + }, + { + "id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "created_at": "2026-05-22T12:33:40.053-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "28d52c16-74ce-4bcc-b396-febe426bd932", + "direction": "outgoing", + "index": 128816, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00", + "verb": "get" + }, + { + "id": "7bcb039d-88c4-411e-9b55-1717f2345154", + "direction": "outgoing", + "index": 128817, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00", + "verb": "get" + }, + { + "id": "03af91c1-a32a-4b17-a09b-45af6f193eb3", + "direction": "outgoing", + "index": 128818, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.101-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00", + "verb": "get" + }, + { + "id": "47a13d24-c2e6-458f-bda8-468c4063da4b", + "direction": "outgoing", + "index": 128819, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00", + "verb": "get" + }, + { + "id": "8f9c149e-ff85-44b7-a81a-c7c9a7dd5f5c", + "direction": "outgoing", + "index": 128820, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c29632d9-1236-45be-8904-1c149640ac15\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d1d146a5-2633-4c50-866e-08546bebbb8b", + "direction": "outgoing", + "index": 128821, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c29632d9-1236-45be-8904-1c149640ac15\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4c4cabf9-0066-4957-b9c2-44ec5cc69803", + "direction": "outgoing", + "index": 128822, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.154-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00", + "verb": "get" + }, + { + "id": "6e45b180-91c6-451b-b466-79d9c353c412", + "direction": "outgoing", + "index": 128823, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.164-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f1dda63-2b94-4f80-a3a8-26558f44c255\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c62a8360-628e-4be5-97fa-f16313d58bf5", + "direction": "outgoing", + "index": 128824, + "result_id": "d7f07715-e911-4f98-8dc8-79ddaf2c9e5b", + "status": 200, + "timestamp": "2026-05-22T12:33:40.179-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f1dda63-2b94-4f80-a3a8-26558f44c255\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_recorded_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:40.053-04:00" + }, + { + "id": "20c1728e-676d-40f9-a7e6-ecd09a104424", + "created_at": "2026-05-22T12:33:40.788-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2a542c0c-4479-4f51-937e-0d5b862693e3", + "direction": "outgoing", + "index": 128825, + "result_id": "20c1728e-676d-40f9-a7e6-ecd09a104424", + "status": 200, + "timestamp": "2026-05-22T12:33:40.812-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "36c73894-99a0-4d98-ae10-d625188493a9", + "direction": "outgoing", + "index": 128826, + "result_id": "20c1728e-676d-40f9-a7e6-ecd09a104424", + "status": 200, + "timestamp": "2026-05-22T12:33:40.842-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a702d4d8-5125-4d78-b84d-f929bbaff087", + "direction": "outgoing", + "index": 128827, + "result_id": "20c1728e-676d-40f9-a7e6-ecd09a104424", + "status": 200, + "timestamp": "2026-05-22T12:33:40.859-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b5764176-c201-4669-a9df-aa291e179afa", + "direction": "outgoing", + "index": 128828, + "result_id": "20c1728e-676d-40f9-a7e6-ecd09a104424", + "status": 200, + "timestamp": "2026-05-22T12:33:40.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=49286280-2cdf-4ec6-bdb8-0ac0c06fcde2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:40.788-04:00" + }, + { + "id": "5a0618f3-daeb-49f9-b221-93aae3bbf2bb", + "created_at": "2026-05-22T12:33:41.144-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f59c8d6e-3f90-47a0-8dea-67c7bb253c55", + "direction": "outgoing", + "index": 128829, + "result_id": "5a0618f3-daeb-49f9-b221-93aae3bbf2bb", + "status": 200, + "timestamp": "2026-05-22T12:33:41.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "f42872d3-f98e-4611-ac3e-e4e4c1a70887", + "direction": "outgoing", + "index": 128830, + "result_id": "5a0618f3-daeb-49f9-b221-93aae3bbf2bb", + "status": 200, + "timestamp": "2026-05-22T12:33:41.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_category_clinical_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:41.144-04:00" + }, + { + "id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "created_at": "2026-05-22T12:33:43.704-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2de52a14-82e0-421d-b6c3-eaffdf281fa4", + "direction": "outgoing", + "index": 128831, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7b15f5ef-727b-4392-8567-14afe94b1e0e", + "direction": "outgoing", + "index": 128832, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.735-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5fe4eff2-48c2-4b85-8da8-7f0c4b7364da", + "direction": "outgoing", + "index": 128833, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f0f48c45-7ea2-43b7-9b26-1ac636faea75", + "direction": "outgoing", + "index": 128834, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "95219a2d-0f65-44b6-a267-010e7cbd81fe", + "direction": "outgoing", + "index": 128835, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=062e8124-c1c3-4537-bb8d-5bb6237a6fc3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0e51c250-9124-4331-a5c1-562658ce95da", + "direction": "outgoing", + "index": 128836, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.792-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=062e8124-c1c3-4537-bb8d-5bb6237a6fc3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "02bff681-9ed9-48f1-be50-58cabbe1a873", + "direction": "outgoing", + "index": 128837, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "70124efe-d2a4-47d4-b067-1f1052091df0", + "direction": "outgoing", + "index": 128838, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c574c2de-410d-4c24-9342-ecd4e200590e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "df2a981a-4df8-401f-b549-9a0196e3e8e2", + "direction": "outgoing", + "index": 128839, + "result_id": "56838265-84d8-4ee3-a9c1-b1ec9629dab3", + "status": 200, + "timestamp": "2026-05-22T12:33:43.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c574c2de-410d-4c24-9342-ecd4e200590e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_onset_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:43.704-04:00" + }, + { + "id": "c121c2d6-0e4a-4ad1-84b3-35385d1a19ab", + "created_at": "2026-05-22T12:33:44.094-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "27f83bd5-5a8b-4ef9-8cf6-afe8fab747d3", + "direction": "outgoing", + "index": 128840, + "result_id": "c121c2d6-0e4a-4ad1-84b3-35385d1a19ab", + "status": 200, + "timestamp": "2026-05-22T12:33:44.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355", + "verb": "get" + }, + { + "id": "a257a3e1-4a21-4742-b70a-26fdc4e5514f", + "direction": "outgoing", + "index": 128841, + "result_id": "c121c2d6-0e4a-4ad1-84b3-35385d1a19ab", + "status": 200, + "timestamp": "2026-05-22T12:33:44.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:44.094-04:00" + }, + { + "id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "created_at": "2026-05-22T12:33:45.619-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "046dca7a-c122-4e7d-a281-425071ba59d7", + "direction": "outgoing", + "index": 128842, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355", + "verb": "get" + }, + { + "id": "fffbfa00-22f4-48fe-96f1-1a4877d9725d", + "direction": "outgoing", + "index": 128843, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af42a6a7-8c4a-4542-a728-befec230df66\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db192c85-61c8-400a-b287-e046920a4166", + "direction": "outgoing", + "index": 128844, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af42a6a7-8c4a-4542-a728-befec230df66\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8b26a147-9455-4afd-904f-b22bba855176", + "direction": "outgoing", + "index": 128845, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.683-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355", + "verb": "get" + }, + { + "id": "8679e252-466d-42e2-88b4-1b728da04a57", + "direction": "outgoing", + "index": 128846, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=07c21590-c776-49c1-b02c-90aa1e64d80f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "df545821-82d6-4bba-8bc2-7691a377f418", + "direction": "outgoing", + "index": 128847, + "result_id": "d146eb55-553c-4ae8-a6ad-06e03ce7ef89", + "status": 200, + "timestamp": "2026-05-22T12:33:45.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=07c21590-c776-49c1-b02c-90aa1e64d80f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_clinical_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:45.619-04:00" + }, + { + "id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "created_at": "2026-05-22T12:33:46.399-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "187a9801-b4d6-4fd4-8f92-dfb62decdd06", + "direction": "outgoing", + "index": 128848, + "result_id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "status": 200, + "timestamp": "2026-05-22T12:33:46.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355", + "verb": "get" + }, + { + "id": "643d443d-8913-45bc-ad48-d4f507c9177d", + "direction": "outgoing", + "index": 128849, + "result_id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "status": 200, + "timestamp": "2026-05-22T12:33:46.430-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "59b215d3-d72b-4354-9e8b-5aacb1736a2b", + "direction": "outgoing", + "index": 128850, + "result_id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "status": 200, + "timestamp": "2026-05-22T12:33:46.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c5ddd693-c28b-4934-affb-d153d13cb046", + "direction": "outgoing", + "index": 128851, + "result_id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "status": 200, + "timestamp": "2026-05-22T12:33:46.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b511b207-8287-46a1-961c-4e76b78a700e", + "direction": "outgoing", + "index": 128852, + "result_id": "c194d744-2d70-4fe1-a460-e7b14040d6ae", + "status": 200, + "timestamp": "2026-05-22T12:33:46.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_asserted_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:46.399-04:00" + }, + { + "id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "created_at": "2026-05-22T12:33:48.638-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d58bd0d2-9782-4516-956f-4810e61efc3a", + "direction": "outgoing", + "index": 128853, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6c26c411-1728-4226-9d5e-63285bffd14b", + "direction": "outgoing", + "index": 128854, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "93da277f-3402-43a2-8812-b2a56c233997", + "direction": "outgoing", + "index": 128855, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.683-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ffdf550c-b7f1-4c55-95ef-571dcb67148b", + "direction": "outgoing", + "index": 128856, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.697-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5d111124-ea39-4a95-abd3-6ba92048a042", + "direction": "outgoing", + "index": 128857, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bc8e4e51-79ac-4388-b094-cf43f4724729\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95ca72e6-ef38-45af-98fb-26565fe17b49", + "direction": "outgoing", + "index": 128858, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.720-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bfec6f4a-f907-4ece-9b09-feae7fd72d96", + "direction": "outgoing", + "index": 128859, + "result_id": "5381201e-dd1d-4147-a8fb-7ffeb95e9dfd", + "status": 200, + "timestamp": "2026-05-22T12:33:48.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9c377eec-4bff-4552-997d-7f36086ccf56\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_patient_abatement_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:48.638-04:00" + }, + { + "id": "44a0fa05-4d70-4a9c-9c19-b0f8767b49d9", + "created_at": "2026-05-22T12:33:48.854-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4bdf1a1e-684e-4298-b8dd-653c88d853a0", + "direction": "outgoing", + "index": 128860, + "result_id": "44a0fa05-4d70-4a9c-9c19-b0f8767b49d9", + "status": 200, + "timestamp": "2026-05-22T12:33:48.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:48.854-04:00" + }, + { + "id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "created_at": "2026-05-22T12:33:49.828-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d65abc08-2c83-4381-a12e-d7ed3e0a733c", + "direction": "outgoing", + "index": 128861, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=85", + "verb": "get" + }, + { + "id": "46c94de9-a3ed-4ea1-824e-bdd3aef63dbf", + "direction": "outgoing", + "index": 128862, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.859-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=85", + "verb": "get" + }, + { + "id": "8cf438a1-68f6-4bf7-ae0a-2e2d89e215a4", + "direction": "outgoing", + "index": 128863, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=355", + "verb": "get" + }, + { + "id": "db99f3ab-bf20-4e2f-8f1f-bfaf7439f1ee", + "direction": "outgoing", + "index": 128864, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=355", + "verb": "get" + }, + { + "id": "599a9c63-9c39-4896-a821-5d63b6091940", + "direction": "outgoing", + "index": 128865, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=908", + "verb": "get" + }, + { + "id": "80ffd9db-8eef-4fd7-bf12-8e75d037c320", + "direction": "outgoing", + "index": 128866, + "result_id": "fe058e07-60f9-4704-bedd-ac81d79ce031", + "status": 200, + "timestamp": "2026-05-22T12:33:49.917-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:49.828-04:00" + }, + { + "id": "f368b73d-5617-4a70-829c-d8286e958e6b", + "created_at": "2026-05-22T12:33:50.891-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)", + "type": "warning" + }, + { + "message": "Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.category[0]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/condition-category#health-concern)", + "type": "warning" + }, + { + "message": "Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:50.891-04:00" + }, + { + "id": "08463f2c-05a4-4aff-a53c-faebe7d137ce", + "created_at": "2026-05-22T12:33:50.917-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:50.917-04:00" + }, + { + "id": "4b203696-ec0c-4e83-9485-67a2df828d62", + "created_at": "2026-05-22T12:33:50.923-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns-us_core_v800_condition_problems_health_concerns_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:50.923-04:00" + }, + { + "id": "0f764e42-6c62-486c-b89f-61df4ee201ef", + "created_at": "2026-05-22T12:33:50.924-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_condition_problems_health_concerns", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:50.924-04:00" + }, + { + "id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "created_at": "2026-05-22T12:33:51.904-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7b2f2730-05b6-414e-807e-69dc16dd872b", + "direction": "outgoing", + "index": 128867, + "result_id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "status": 200, + "timestamp": "2026-05-22T12:33:51.915-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?patient=85", + "verb": "get" + }, + { + "id": "a262cd55-0d1e-4168-bf3a-a64a39b11450", + "direction": "outgoing", + "index": 128868, + "result_id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "status": 200, + "timestamp": "2026-05-22T12:33:51.941-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage/_search", + "verb": "post" + }, + { + "id": "86cdeee4-ae57-4a1e-8f5d-d6b0f587cea9", + "direction": "outgoing", + "index": 128869, + "result_id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "status": 200, + "timestamp": "2026-05-22T12:33:51.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?patient=Patient/85", + "verb": "get" + }, + { + "id": "b0e6a964-6578-4bda-80d4-2396d0f24b6a", + "direction": "outgoing", + "index": 128870, + "result_id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "status": 200, + "timestamp": "2026-05-22T12:33:51.976-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?patient=355", + "verb": "get" + }, + { + "id": "7d106209-3c86-4da0-a415-f1041d08a070", + "direction": "outgoing", + "index": 128871, + "result_id": "bd89baa3-c1a2-482e-beeb-d71d53c025c4", + "status": 200, + "timestamp": "2026-05-22T12:33:51.990-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:51.904-04:00" + }, + { + "id": "5a76b314-12a2-4c3c-9bbc-5da291d7d8ab", + "created_at": "2026-05-22T12:33:52.109-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ab300586-10c3-4344-b412-f56e416f421f", + "direction": "outgoing", + "index": 128872, + "result_id": "5a76b314-12a2-4c3c-9bbc-5da291d7d8ab", + "status": 200, + "timestamp": "2026-05-22T12:33:52.119-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.109-04:00" + }, + { + "id": "43348536-58aa-49c4-85f2-018e42a82139", + "created_at": "2026-05-22T12:33:52.580-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "660f5e9d-f638-4ea6-abfa-c1069367f1c9", + "direction": "outgoing", + "index": 128873, + "result_id": "43348536-58aa-49c4-85f2-018e42a82139", + "status": 200, + "timestamp": "2026-05-22T12:33:52.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "12037cd8-bdc8-4146-b9a5-1de75c961a1e", + "direction": "outgoing", + "index": 128874, + "result_id": "43348536-58aa-49c4-85f2-018e42a82139", + "status": 200, + "timestamp": "2026-05-22T12:33:52.602-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "be627f85-9934-45cb-8d79-c147738ffd3b", + "direction": "outgoing", + "index": 128875, + "result_id": "43348536-58aa-49c4-85f2-018e42a82139", + "status": 200, + "timestamp": "2026-05-22T12:33:52.618-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.580-04:00" + }, + { + "id": "b3f5457b-bf05-4cc7-ab43-f6de7abcb681", + "created_at": "2026-05-22T12:33:52.674-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.identifier[0].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#MB)", + "type": "warning" + }, + { + "message": "Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.type: None of the codings provided are in the value set 'Payer Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.114222.4.11.3591|20250419), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = https://nahdo.org/sopt#3712, http://terminology.hl7.org/CodeSystem/v3-ActCode#PPO)", + "type": "warning" + }, + { + "message": "Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.674-04:00" + }, + { + "id": "acc6effd-c554-431e-9202-790aa3430ffd", + "created_at": "2026-05-22T12:33:52.682-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.682-04:00" + }, + { + "id": "d17e9e18-2daa-47db-b7e8-a19ae9a49484", + "created_at": "2026-05-22T12:33:52.833-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f76a85a6-2173-4f81-88d5-e4a6a5f4de61", + "direction": "outgoing", + "index": 128876, + "result_id": "d17e9e18-2daa-47db-b7e8-a19ae9a49484", + "status": 200, + "timestamp": "2026-05-22T12:33:52.837-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage-us_core_v800_coverage_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.833-04:00" + }, + { + "id": "5d8f61fd-4eed-4f92-90a0-d09e829aeac3", + "created_at": "2026-05-22T12:33:52.854-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_coverage", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:52.854-04:00" + }, + { + "id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "created_at": "2026-05-22T12:33:53.559-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "16525dd1-7a28-4ca1-90ab-2c0b3fd06293", + "direction": "outgoing", + "index": 128877, + "result_id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "status": 200, + "timestamp": "2026-05-22T12:33:53.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=85", + "verb": "get" + }, + { + "id": "591292ec-d5e4-4c81-9071-8e8a3230c991", + "direction": "outgoing", + "index": 128878, + "result_id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "status": 200, + "timestamp": "2026-05-22T12:33:53.594-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355", + "verb": "get" + }, + { + "id": "0bce8f56-c12f-40ce-ab41-9dab09d8d391", + "direction": "outgoing", + "index": 128879, + "result_id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "status": 200, + "timestamp": "2026-05-22T12:33:53.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/_search", + "verb": "post" + }, + { + "id": "9f8f39f4-6f4a-4830-9972-df0dca55d177", + "direction": "outgoing", + "index": 128880, + "result_id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "status": 200, + "timestamp": "2026-05-22T12:33:53.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355", + "verb": "get" + }, + { + "id": "8b0291d1-d27b-4018-bd07-c7b5beecb8b8", + "direction": "outgoing", + "index": 128881, + "result_id": "c18428cd-1c51-4c3d-ab3e-b34824c66ba2", + "status": 200, + "timestamp": "2026-05-22T12:33:53.646-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:53.559-04:00" + }, + { + "id": "f5761419-47f8-4fc9-813e-a3aa190b3640", + "created_at": "2026-05-22T12:33:53.907-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0c623f9d-dc73-4224-b9ec-62a2b4b640bd", + "direction": "outgoing", + "index": 128882, + "result_id": "f5761419-47f8-4fc9-813e-a3aa190b3640", + "status": 200, + "timestamp": "2026-05-22T12:33:53.912-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active", + "verb": "get" + }, + { + "id": "8aededc7-a186-461a-bf87-0d53e77880ce", + "direction": "outgoing", + "index": 128883, + "result_id": "f5761419-47f8-4fc9-813e-a3aa190b3640", + "status": 200, + "timestamp": "2026-05-22T12:33:53.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active,inactive,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:53.907-04:00" + }, + { + "id": "144ddde4-cc70-4b4c-abde-6c1697d9b500", + "created_at": "2026-05-22T12:33:54.169-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "implantable_device_codes", + "value": null, + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "656c40f5-e330-4482-8ada-5a8ad3481d56", + "direction": "outgoing", + "index": 128884, + "result_id": "144ddde4-cc70-4b4c-abde-6c1697d9b500", + "status": 200, + "timestamp": "2026-05-22T12:33:54.172-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001", + "verb": "get" + }, + { + "id": "01d8f11f-cfac-4080-be56-4170e7d91213", + "direction": "outgoing", + "index": 128885, + "result_id": "144ddde4-cc70-4b4c-abde-6c1697d9b500", + "status": 200, + "timestamp": "2026-05-22T12:33:54.187-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_patient_type_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:54.169-04:00" + }, + { + "id": "95b6f986-7ea5-4740-b55a-ca26ba68c453", + "created_at": "2026-05-22T12:33:54.306-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "18cef8f8-749c-4281-bcac-f2815dd70b74", + "direction": "outgoing", + "index": 128886, + "result_id": "95b6f986-7ea5-4740-b55a-ca26ba68c453", + "status": 200, + "timestamp": "2026-05-22T12:33:54.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:54.306-04:00" + }, + { + "id": "c886a3ad-ff31-4340-a472-8ac57b17c85a", + "created_at": "2026-05-22T12:33:54.805-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3d9b958d-da81-43e1-b604-e229cc999c94", + "direction": "outgoing", + "index": 128887, + "result_id": "c886a3ad-ff31-4340-a472-8ac57b17c85a", + "status": 200, + "timestamp": "2026-05-22T12:33:54.808-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ac9999e7-0127-42b1-b2dd-d4a8abf10f47", + "direction": "outgoing", + "index": 128888, + "result_id": "c886a3ad-ff31-4340-a472-8ac57b17c85a", + "status": 200, + "timestamp": "2026-05-22T12:33:54.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "99afa31e-1514-4c25-993d-71b128201eb1", + "direction": "outgoing", + "index": 128889, + "result_id": "c886a3ad-ff31-4340-a472-8ac57b17c85a", + "status": 200, + "timestamp": "2026-05-22T12:33:54.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:54.805-04:00" + }, + { + "id": "787bf4ad-d3db-4586-8df1-2f5ca4735aa5", + "created_at": "2026-05-22T12:33:55.067-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:55.067-04:00" + }, + { + "id": "f360d970-4c86-4dcd-98c6-3f01d475691d", + "created_at": "2026-05-22T12:33:55.093-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:55.093-04:00" + }, + { + "id": "11c908d5-1e7c-4a38-9046-4337f4bf93e3", + "created_at": "2026-05-22T12:33:55.101-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device-us_core_v800_device_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:55.101-04:00" + }, + { + "id": "7e1065e9-cf5d-4c53-8f90-4b2198743698", + "created_at": "2026-05-22T12:33:55.104-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_device", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:55.104-04:00" + }, + { + "id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "created_at": "2026-05-22T12:33:58.442-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "879c6129-c602-48ab-886f-e8391bdfcf7f", + "direction": "outgoing", + "index": 128890, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "c188bffc-36a8-429c-a745-3fad3f617d08", + "direction": "outgoing", + "index": 128891, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.476-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "deb3eecf-5ab9-4349-98c5-585fe7460e0c", + "direction": "outgoing", + "index": 128892, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "ed45ee6c-0cf9-4fff-8f06-915643065b3b", + "direction": "outgoing", + "index": 128893, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.510-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "2f88dddd-83f9-4d35-a319-f2993e77f564", + "direction": "outgoing", + "index": 128894, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "d55906c0-5057-44fb-9550-189701297444", + "direction": "outgoing", + "index": 128895, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "1f5a2550-67ed-4ed3-a92b-996351bc5566", + "direction": "outgoing", + "index": 128896, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.545-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "736a2eb4-8095-4886-a62f-7001e5985d94", + "direction": "outgoing", + "index": 128897, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.555-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "bd69be91-e087-4b76-a589-29b0ae4fb66b", + "direction": "outgoing", + "index": 128898, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.568-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355", + "verb": "get" + }, + { + "id": "b22eb870-4918-4a6e-9f7f-e23b811a2c43", + "direction": "outgoing", + "index": 128899, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=908", + "verb": "get" + }, + { + "id": "9a664d6d-2926-4351-86ab-cf81295f66be", + "direction": "outgoing", + "index": 128900, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.593-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=908", + "verb": "get" + }, + { + "id": "378e0935-10f7-4745-9aa8-9592ae0903c1", + "direction": "outgoing", + "index": 128901, + "result_id": "5ecff6d2-a8e8-4b9e-8cd8-9dd4f61be94b", + "status": 200, + "timestamp": "2026-05-22T12:33:58.603-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:33:58.442-04:00" + }, + { + "id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "created_at": "2026-05-22T12:34:00.721-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "913ce6cf-0ddd-4ee6-bd6c-4fbe1735231d", + "direction": "outgoing", + "index": 128902, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "64174bc9-7b07-4727-9d18-f5731f2e57d6", + "direction": "outgoing", + "index": 128903, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=174eea44-4366-4c28-ac21-c177fe197246\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2db3c496-9c22-4713-9aea-3f99f31b023e", + "direction": "outgoing", + "index": 128904, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.788-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "8c89ea76-c287-4a0c-8999-e27ab0342d8d", + "direction": "outgoing", + "index": 128905, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=77ffad71-488b-488e-bcc5-d0a2254055f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cb372dad-b389-4402-9841-e84393fbdef1", + "direction": "outgoing", + "index": 128906, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=77ffad71-488b-488e-bcc5-d0a2254055f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2071ff02-9da0-495b-872f-973c62f1dce0", + "direction": "outgoing", + "index": 128907, + "result_id": "4134bb52-689e-4e60-8303-37bdd7e8e869", + "status": 200, + "timestamp": "2026-05-22T12:34:00.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:00.721-04:00" + }, + { + "id": "b6b9ad89-b901-4073-8856-a1a5f937e94f", + "created_at": "2026-05-22T12:34:01.359-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d7e54385-74c3-45dd-8fd1-dd1bbf3c081a", + "direction": "outgoing", + "index": 128908, + "result_id": "b6b9ad89-b901-4073-8856-a1a5f937e94f", + "status": 200, + "timestamp": "2026-05-22T12:34:01.365-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "df3fba49-f2b3-4932-acd0-52fb89bdae25", + "direction": "outgoing", + "index": 128909, + "result_id": "b6b9ad89-b901-4073-8856-a1a5f937e94f", + "status": 200, + "timestamp": "2026-05-22T12:34:01.385-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://loinc.org%7CLP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "be4feea9-66c2-4958-a7b9-474b49c70178", + "direction": "outgoing", + "index": 128910, + "result_id": "b6b9ad89-b901-4073-8856-a1a5f937e94f", + "status": 200, + "timestamp": "2026-05-22T12:34:01.402-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=LP29684-5\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:01.359-04:00" + }, + { + "id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "created_at": "2026-05-22T12:34:04.140-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "44c9c9cd-1d75-4976-9ea1-bfc898876b36", + "direction": "outgoing", + "index": 128911, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "87b380cd-68f4-4eec-8d46-bd13f6d94205", + "direction": "outgoing", + "index": 128912, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.175-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9ce8b6e8-fe74-4c87-bd47-7ad020148017\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f885c511-58f0-488e-a79e-4f536e6a3a0c", + "direction": "outgoing", + "index": 128913, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "f0c45410-af71-474f-a3ab-dc04483ffb0b", + "direction": "outgoing", + "index": 128914, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0053a32-057b-4f20-b4d1-db7dc0032037\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa172078-2d2d-42f5-8a13-7a07e1610f16", + "direction": "outgoing", + "index": 128915, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0053a32-057b-4f20-b4d1-db7dc0032037\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8fc9603d-7082-4a96-ac2c-13217f0ac54d", + "direction": "outgoing", + "index": 128916, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "7b83c9a1-d560-4d17-bd77-65e30d2a28f8", + "direction": "outgoing", + "index": 128917, + "result_id": "6c29e1e2-a8d6-4fa2-a83a-b47adbda1196", + "status": 200, + "timestamp": "2026-05-22T12:34:04.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fd7cd26d-fcf6-4dfa-a1f3-68e99f223942\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:04.140-04:00" + }, + { + "id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "created_at": "2026-05-22T12:34:05.313-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "807f54b0-b773-4ba2-9b8d-ed96998ab5af", + "direction": "outgoing", + "index": 128918, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "36f0fcf4-6633-45a3-8895-e44f4bcab2e7", + "direction": "outgoing", + "index": 128919, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f66f87fd-0dae-48da-99b7-cb95033694a8", + "direction": "outgoing", + "index": 128920, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8c64f178-8b94-48fc-a449-4618050c7f55", + "direction": "outgoing", + "index": 128921, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.377-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2591e770-7607-4af6-92d3-5c4ed5204504", + "direction": "outgoing", + "index": 128922, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.392-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "078b7497-0acf-4aa5-bdc3-9c2987973180", + "direction": "outgoing", + "index": 128923, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.402-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "30c5945f-4ce3-43a7-be5b-1074aab010eb", + "direction": "outgoing", + "index": 128924, + "result_id": "38b056c3-ff01-4b5a-a0c7-28f056c1d713", + "status": 200, + "timestamp": "2026-05-22T12:34:05.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:05.313-04:00" + }, + { + "id": "f418431b-8f11-4ef2-946a-6ae97b9cd8cb", + "created_at": "2026-05-22T12:34:05.827-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "604fff82-4833-4b08-a88d-b3bcedd93e18", + "direction": "outgoing", + "index": 128925, + "result_id": "f418431b-8f11-4ef2-946a-6ae97b9cd8cb", + "status": 200, + "timestamp": "2026-05-22T12:34:05.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "d14e6298-f4f5-43ce-8fee-7e14d86ff974", + "direction": "outgoing", + "index": 128926, + "result_id": "f418431b-8f11-4ef2-946a-6ae97b9cd8cb", + "status": 200, + "timestamp": "2026-05-22T12:34:05.858-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85", + "verb": "get" + }, + { + "id": "e65d3045-658a-49af-ba97-ebe7069476a5", + "direction": "outgoing", + "index": 128927, + "result_id": "f418431b-8f11-4ef2-946a-6ae97b9cd8cb", + "status": 200, + "timestamp": "2026-05-22T12:34:05.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:05.827-04:00" + }, + { + "id": "af5691c3-c838-49c9-8201-668747095c29", + "created_at": "2026-05-22T12:34:07.187-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e81668d4-0f99-450a-aee1-0b778a8dfc2e", + "direction": "outgoing", + "index": 128928, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.194-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7723563a-86ec-4466-a77a-b414ca8ccd3c", + "direction": "outgoing", + "index": 128929, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.219-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "95ea2fc8-ff4b-4c30-8826-64d028eafa9a", + "direction": "outgoing", + "index": 128930, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d4503eda-b3e4-460a-8445-e8913e82a584", + "direction": "outgoing", + "index": 128931, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1eac41d4-7332-4737-a5df-89e01649c65c", + "direction": "outgoing", + "index": 128932, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "78e1940d-8402-4b54-8838-b06a25694538", + "direction": "outgoing", + "index": 128933, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "eacb0086-069f-431f-956e-cf4144b9e422", + "direction": "outgoing", + "index": 128934, + "result_id": "af5691c3-c838-49c9-8201-668747095c29", + "status": 200, + "timestamp": "2026-05-22T12:34:07.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:07.187-04:00" + }, + { + "id": "7d5b1eb0-4b94-4653-b42b-d960477ef714", + "created_at": "2026-05-22T12:34:07.432-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e564b210-ae07-420b-af72-af024317ed95", + "direction": "outgoing", + "index": 128935, + "result_id": "7d5b1eb0-4b94-4653-b42b-d960477ef714", + "status": 200, + "timestamp": "2026-05-22T12:34:07.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:07.432-04:00" + }, + { + "id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "created_at": "2026-05-22T12:34:10.133-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "809ca134-1232-4e12-8b3b-f58f1e68b9b6", + "direction": "outgoing", + "index": 128936, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85", + "verb": "get" + }, + { + "id": "17c8eec3-8e70-494a-8fba-b2803101237b", + "direction": "outgoing", + "index": 128937, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.164-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85", + "verb": "get" + }, + { + "id": "76ca3b51-4658-4b9d-9e68-8ead08bf88c5", + "direction": "outgoing", + "index": 128938, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.180-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85", + "verb": "get" + }, + { + "id": "55f55c62-acba-491a-89b9-3ff48ba9e791", + "direction": "outgoing", + "index": 128939, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.193-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355", + "verb": "get" + }, + { + "id": "79050383-6543-45cc-bda6-e7bf14b7696f", + "direction": "outgoing", + "index": 128940, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355", + "verb": "get" + }, + { + "id": "155475a8-09a2-41c4-95ec-25fd2d8551a9", + "direction": "outgoing", + "index": 128941, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.215-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355", + "verb": "get" + }, + { + "id": "6a40d568-45fc-4b94-ba0e-8b6c78edbff6", + "direction": "outgoing", + "index": 128942, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.225-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=908", + "verb": "get" + }, + { + "id": "3f8a7f27-a7da-4e89-9720-79a193ae88a5", + "direction": "outgoing", + "index": 128943, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.237-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=908", + "verb": "get" + }, + { + "id": "f5a3898c-12bb-435b-80a7-5d431423bff3", + "direction": "outgoing", + "index": 128944, + "result_id": "3e182f66-85eb-4599-b45f-c519ec9cd96a", + "status": 200, + "timestamp": "2026-05-22T12:34:10.250-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:10.133-04:00" + }, + { + "id": "b5360798-e7d1-4ac2-aec8-7bf2f5eba3e3", + "created_at": "2026-05-22T12:34:15.666-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:15.666-04:00" + }, + { + "id": "997f1b80-ca2e-441d-8201-1e06e19886df", + "created_at": "2026-05-22T12:34:15.712-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:15.712-04:00" + }, + { + "id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "created_at": "2026-05-22T12:34:21.213-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "548e9421-75ef-4d5d-a4aa-39959031f9fe", + "direction": "outgoing", + "index": 128945, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082", + "verb": "get" + }, + { + "id": "90c3a0b0-2e06-4aa9-99ee-84943fa61a84", + "direction": "outgoing", + "index": 128946, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "e1b46f23-7a84-4c61-a841-13acb4d51844", + "direction": "outgoing", + "index": 128947, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.272-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "abb62d13-81c1-435b-9aee-407d62c75140", + "direction": "outgoing", + "index": 128948, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "689d9d45-fe17-48db-8656-1b7f0e178819", + "direction": "outgoing", + "index": 128949, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "5b01698d-c58a-47b2-a8ac-589d66abee60", + "direction": "outgoing", + "index": 128950, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.317-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "aaded513-1a9b-41c9-9b61-bfcde5e8bc84", + "direction": "outgoing", + "index": 128951, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "9c1e9174-22a5-4d96-8a83-d025f0133072", + "direction": "outgoing", + "index": 128952, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.345-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "7883150a-cc7c-400f-ba67-eaea395eb1d9", + "direction": "outgoing", + "index": 128953, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "a04e2b8e-a974-4dd9-ba95-674cfc49f909", + "direction": "outgoing", + "index": 128954, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "592aa6ad-6fc3-4886-83cd-a3cfc6c88216", + "direction": "outgoing", + "index": 128955, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "84103375-6678-4891-b2be-550f43cf6302", + "direction": "outgoing", + "index": 128956, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "d0a5fc97-572a-451f-96c2-3bc4d2a54832", + "direction": "outgoing", + "index": 128957, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.408-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "bfcd1436-4e6b-48dc-994b-3a935660a098", + "direction": "outgoing", + "index": 128958, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a0940843-b7c6-44e7-a5f7-02d696d8fd17", + "direction": "outgoing", + "index": 128959, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "a06a74da-037e-4110-b924-1c5be9653caa", + "direction": "outgoing", + "index": 128960, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "88e22774-bc4e-4164-8c32-e7b4521b3bf2", + "direction": "outgoing", + "index": 128961, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "b272725b-7fee-446b-a6a7-68ac7dd26d65", + "direction": "outgoing", + "index": 128962, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.475-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "ac2e32d4-4fe3-42ad-97fa-09676605e387", + "direction": "outgoing", + "index": 128963, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "f3f60145-1549-4d3d-9d94-ca2e7f5bbe99", + "direction": "outgoing", + "index": 128964, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.504-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "ae36e227-941b-45ea-863c-ac9b52821761", + "direction": "outgoing", + "index": 128965, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.516-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "f33416ad-7afd-47eb-a874-d2c21a0fb4d2", + "direction": "outgoing", + "index": 128966, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.530-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "da5b0823-8058-4e30-a307-3e2c583107a4", + "direction": "outgoing", + "index": 128967, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "c2cac6f4-2790-43ef-a023-1e052648c805", + "direction": "outgoing", + "index": 128968, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "ef493d8e-d464-4e8a-b0ae-e19b30e817f2", + "direction": "outgoing", + "index": 128969, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "5b933633-355e-4a6f-8148-7749b1136f35", + "direction": "outgoing", + "index": 128970, + "result_id": "9d3cfc6d-78b5-4c91-8829-5fd819f3e277", + "status": 200, + "timestamp": "2026-05-22T12:34:21.582-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note-us_core_v800_diagnostic_report_note_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:21.213-04:00" + }, + { + "id": "80d2cb02-6cdc-41ec-9520-82edf020af2f", + "created_at": "2026-05-22T12:34:21.594-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_note", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:21.594-04:00" + }, + { + "id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "created_at": "2026-05-22T12:34:22.355-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f28b4c26-a65d-4f16-bc19-ab28a2eeee92", + "direction": "outgoing", + "index": 128971, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "7efe40dc-0b20-441e-8c67-0570c5e65c4a", + "direction": "outgoing", + "index": 128972, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "90b8e907-fb5c-405f-8b54-f6c17447976f", + "direction": "outgoing", + "index": 128973, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.410-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search", + "verb": "post" + }, + { + "id": "179a1872-4f21-46e9-bfbe-18defc7d5add", + "direction": "outgoing", + "index": 128974, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "462f5cc0-c76a-4154-b14d-1aacbf088a09", + "direction": "outgoing", + "index": 128975, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.438-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355", + "verb": "get" + }, + { + "id": "4fcca04e-ff2c-4cb6-8ebf-7d704514f7e5", + "direction": "outgoing", + "index": 128976, + "result_id": "0b7326bd-ec9d-447e-8c2e-babf16764b93", + "status": 200, + "timestamp": "2026-05-22T12:34:22.450-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:22.355-04:00" + }, + { + "id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "created_at": "2026-05-22T12:34:23.430-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2a685c00-6a5a-4329-840f-b4fcc0187db4", + "direction": "outgoing", + "index": 128977, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.438-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "ab8946df-6bfb-42a3-98f0-f8809f65ee41", + "direction": "outgoing", + "index": 128978, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.467-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=174eea44-4366-4c28-ac21-c177fe197246\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f3189561-25a8-49b9-91f6-5c5a07b5f3c9", + "direction": "outgoing", + "index": 128979, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "a44362b6-9c2c-415a-be45-229673299a89", + "direction": "outgoing", + "index": 128980, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.501-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=77ffad71-488b-488e-bcc5-d0a2254055f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ca4cc0d7-9b24-4b9c-a24d-02e3c55d09a0", + "direction": "outgoing", + "index": 128981, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=77ffad71-488b-488e-bcc5-d0a2254055f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9e2fdf49-de3c-44f0-b7db-bc117d938ad4", + "direction": "outgoing", + "index": 128982, + "result_id": "17af99bf-9cdb-4f82-b1ba-6c2f98f2555f", + "status": 200, + "timestamp": "2026-05-22T12:34:23.528-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:23.430-04:00" + }, + { + "id": "aab20f4a-7e35-48d8-81b1-db9fdbbaac2b", + "created_at": "2026-05-22T12:34:23.779-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "337d8deb-5533-4b67-af07-6eba0c45b7fb", + "direction": "outgoing", + "index": 128983, + "result_id": "aab20f4a-7e35-48d8-81b1-db9fdbbaac2b", + "status": 200, + "timestamp": "2026-05-22T12:34:23.783-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "c823850d-ced8-4ee0-a817-036b53808dc8", + "direction": "outgoing", + "index": 128984, + "result_id": "aab20f4a-7e35-48d8-81b1-db9fdbbaac2b", + "status": 200, + "timestamp": "2026-05-22T12:34:23.800-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:23.779-04:00" + }, + { + "id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "created_at": "2026-05-22T12:34:25.392-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f66f710c-712a-4581-b310-c28a1f8c78c0", + "direction": "outgoing", + "index": 128985, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "ed6fe508-428e-4d7f-9a8a-e53d7583804c", + "direction": "outgoing", + "index": 128986, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0053a32-057b-4f20-b4d1-db7dc0032037\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8d80701f-d1f1-436d-92a7-6972932d8e80", + "direction": "outgoing", + "index": 128987, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0053a32-057b-4f20-b4d1-db7dc0032037\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "39960e63-9fc8-4931-b68b-d0a2245d967d", + "direction": "outgoing", + "index": 128988, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "fc5ecaa9-93f3-4ce9-9d85-4605221b4ed5", + "direction": "outgoing", + "index": 128989, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad6e105b-c8ca-439e-97c4-84007df3f6b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47d66537-d7f9-4c81-b169-b7429bfc6197", + "direction": "outgoing", + "index": 128990, + "result_id": "42f97cda-9168-4355-b3c0-6cb2cabc550f", + "status": 200, + "timestamp": "2026-05-22T12:34:25.480-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ad6e105b-c8ca-439e-97c4-84007df3f6b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:25.392-04:00" + }, + { + "id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "created_at": "2026-05-22T12:34:26.328-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dfb7e3c3-81df-44e3-aec5-0b82401853d6", + "direction": "outgoing", + "index": 128991, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.334-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0cfe9132-18da-4388-95b1-76baf011c642", + "direction": "outgoing", + "index": 128992, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1c712d0b-0689-48a1-9b56-4ae792209d93", + "direction": "outgoing", + "index": 128993, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "180abe86-f545-40c3-bb9e-63bdc95a3999", + "direction": "outgoing", + "index": 128994, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "806acd9e-7693-45f6-8db6-114897fa5bbf", + "direction": "outgoing", + "index": 128995, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ff68364f-5d5e-48a8-9271-69fd3221f563", + "direction": "outgoing", + "index": 128996, + "result_id": "f2d74dce-5aed-40ef-9f6d-bd91abbdded7", + "status": 200, + "timestamp": "2026-05-22T12:34:26.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:26.328-04:00" + }, + { + "id": "4831f975-55e7-4291-8d32-a4173b4bae43", + "created_at": "2026-05-22T12:34:26.677-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3ea6d31b-2d61-4f0f-9854-2a63635ab74d", + "direction": "outgoing", + "index": 128997, + "result_id": "4831f975-55e7-4291-8d32-a4173b4bae43", + "status": 200, + "timestamp": "2026-05-22T12:34:26.681-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355", + "verb": "get" + }, + { + "id": "8f349f97-4c9b-4a62-8c10-854bd1e2bf15", + "direction": "outgoing", + "index": 128998, + "result_id": "4831f975-55e7-4291-8d32-a4173b4bae43", + "status": 200, + "timestamp": "2026-05-22T12:34:26.706-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:26.677-04:00" + }, + { + "id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "created_at": "2026-05-22T12:34:27.542-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "429e56bc-65f2-4d32-8bdd-1a9441224803", + "direction": "outgoing", + "index": 128999, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.546-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6096d1c8-d5d6-441e-a835-54c7ec7f204a", + "direction": "outgoing", + "index": 129000, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f2bcf2b9-fa43-4b19-84e2-4460fe904484", + "direction": "outgoing", + "index": 129001, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7fdd90e3-54fe-47e7-9912-2398b0257291", + "direction": "outgoing", + "index": 129002, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "936b03d0-ae80-4eef-a327-15bbe6b27ea1", + "direction": "outgoing", + "index": 129003, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bf3ae7a9-b5b7-4abc-9a62-98b98c5afde0", + "direction": "outgoing", + "index": 129004, + "result_id": "4a17a668-cd59-465c-a69b-43f788f66b1b", + "status": 200, + "timestamp": "2026-05-22T12:34:27.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:27.542-04:00" + }, + { + "id": "9185c634-9758-430b-9aa0-6db49493921a", + "created_at": "2026-05-22T12:34:27.805-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "870517fc-4857-4c63-b21b-2aa71830d8bd", + "direction": "outgoing", + "index": 129005, + "result_id": "9185c634-9758-430b-9aa0-6db49493921a", + "status": 200, + "timestamp": "2026-05-22T12:34:27.817-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:27.805-04:00" + }, + { + "id": "9f4b25fd-e206-40e6-b949-78b53fa9480b", + "created_at": "2026-05-22T12:34:28.288-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "431f10eb-4505-467c-954f-34efbf27bc29", + "direction": "outgoing", + "index": 129006, + "result_id": "9f4b25fd-e206-40e6-b949-78b53fa9480b", + "status": 200, + "timestamp": "2026-05-22T12:34:28.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85", + "verb": "get" + }, + { + "id": "77359d48-ea9b-4338-aac0-3c8894914a2c", + "direction": "outgoing", + "index": 129007, + "result_id": "9f4b25fd-e206-40e6-b949-78b53fa9480b", + "status": 200, + "timestamp": "2026-05-22T12:34:28.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355", + "verb": "get" + }, + { + "id": "dbcb86ee-8cf6-4c80-b055-d688ecd38ef5", + "direction": "outgoing", + "index": 129008, + "result_id": "9f4b25fd-e206-40e6-b949-78b53fa9480b", + "status": 200, + "timestamp": "2026-05-22T12:34:28.335-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:28.288-04:00" + }, + { + "id": "d48c000e-29bf-490d-8ec3-1822db0ed0e6", + "created_at": "2026-05-22T12:34:28.646-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:28.646-04:00" + }, + { + "id": "9cdc9f6b-6be2-42b9-bfeb-012be4264cce", + "created_at": "2026-05-22T12:34:28.666-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:28.666-04:00" + }, + { + "id": "83df13cf-dd84-4b96-ac1d-c036a499ab42", + "created_at": "2026-05-22T12:34:30.245-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "81c3629a-24c2-40af-94a6-f2cfeec2c574", + "direction": "outgoing", + "index": 129009, + "result_id": "83df13cf-dd84-4b96-ac1d-c036a499ab42", + "status": 200, + "timestamp": "2026-05-22T12:34:30.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28", + "verb": "get" + }, + { + "id": "9a1a510b-adc1-47fe-bc73-45a9155fdc2d", + "direction": "outgoing", + "index": 129010, + "result_id": "83df13cf-dd84-4b96-ac1d-c036a499ab42", + "status": 200, + "timestamp": "2026-05-22T12:34:30.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466", + "verb": "get" + }, + { + "id": "e50b080c-e41a-40a9-8b60-427445ffbcc9", + "direction": "outgoing", + "index": 129011, + "result_id": "83df13cf-dd84-4b96-ac1d-c036a499ab42", + "status": 200, + "timestamp": "2026-05-22T12:34:30.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "18cd61dc-5b66-455a-abba-98241968412e", + "direction": "outgoing", + "index": 129012, + "result_id": "83df13cf-dd84-4b96-ac1d-c036a499ab42", + "status": 200, + "timestamp": "2026-05-22T12:34:30.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab-us_core_v800_diagnostic_report_lab_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:30.245-04:00" + }, + { + "id": "ad11a215-022e-4822-aba4-5b3ec590a3ab", + "created_at": "2026-05-22T12:34:30.330-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_diagnostic_report_lab", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:30.330-04:00" + }, + { + "id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "created_at": "2026-05-22T12:34:34.211-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b80e0565-2eba-4299-8b80-8c8b55a40fee", + "direction": "outgoing", + "index": 129013, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.217-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "d26a7f05-39cb-4ca2-8b31-f2c5eb49c17b", + "direction": "outgoing", + "index": 129014, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5bbcec1c-a11f-457c-a963-3fe1d74e5ff4", + "direction": "outgoing", + "index": 129015, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2977fb36-f5c8-43ed-a45f-a8bfe5f466f9", + "direction": "outgoing", + "index": 129016, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search", + "verb": "post" + }, + { + "id": "8af5e2b5-3852-40fb-84ee-fc77631768d6", + "direction": "outgoing", + "index": 129017, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.308-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "11e484ac-6bd8-4199-9c36-2aacadb733e2", + "direction": "outgoing", + "index": 129018, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e9ba7d90-33e9-43e7-af21-ec34e537d215", + "direction": "outgoing", + "index": 129019, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.331-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85", + "verb": "get" + }, + { + "id": "68cc1713-7f57-4dbe-b9a2-fa4125eb51cb", + "direction": "outgoing", + "index": 129020, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=62352474-891a-4d62-9f5b-eed202af0819\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0ac2bc4c-9917-4ded-a322-691a7ca4ee00", + "direction": "outgoing", + "index": 129021, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.353-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=62352474-891a-4d62-9f5b-eed202af0819\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "61911387-2ed3-4dd7-b910-d7a94bffc033", + "direction": "outgoing", + "index": 129022, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "1a897440-47e0-4c1d-bb78-833479aa5f33", + "direction": "outgoing", + "index": 129023, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23a566a3-2e0e-4657-abd4-b9ad4b5b6cad\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26394c80-b788-467c-8c8f-9d11b5636e37", + "direction": "outgoing", + "index": 129024, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.388-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23a566a3-2e0e-4657-abd4-b9ad4b5b6cad\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7898d4b8-33e6-41e2-b9df-aeeda7b9ad1f", + "direction": "outgoing", + "index": 129025, + "result_id": "6b88fd83-4bf2-4b33-b00d-82ecb72a228a", + "status": 200, + "timestamp": "2026-05-22T12:34:34.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:34.211-04:00" + }, + { + "id": "1973b265-6a68-437f-9f7c-b1f5f200a514", + "created_at": "2026-05-22T12:34:34.522-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fe5ef71a-6b0a-47a0-ae2f-c6a5e31a59c2", + "direction": "outgoing", + "index": 129026, + "result_id": "1973b265-6a68-437f-9f7c-b1f5f200a514", + "status": 200, + "timestamp": "2026-05-22T12:34:34.525-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:34.522-04:00" + }, + { + "id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "created_at": "2026-05-22T12:34:37.311-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4a66a4b4-d381-4b9f-976c-80b56f0185b0", + "direction": "outgoing", + "index": 129027, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded", + "verb": "get" + }, + { + "id": "b4f8f408-adef-4ea7-a30e-0e30cf4c24ed", + "direction": "outgoing", + "index": 129028, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e0ba3d14-96f8-4473-91b0-cf86d5441d3c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "32f0f0bd-f0bc-4265-8fce-7a0409cfa9e9", + "direction": "outgoing", + "index": 129029, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded", + "verb": "get" + }, + { + "id": "181c12b7-3574-44c8-94b3-63abd915461d", + "direction": "outgoing", + "index": 129030, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3b1de52b-eceb-4b85-98bb-76914c3fe36e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6633c257-42e1-485f-87d9-862a0ad492a7", + "direction": "outgoing", + "index": 129031, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error", + "verb": "get" + }, + { + "id": "58404196-b13f-42f9-9235-65a01e8b39b7", + "direction": "outgoing", + "index": 129032, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.403-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf6c8ec7-ea9b-446c-953a-71af6424b237\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b76aa69-f0b9-4cc6-a533-f6bff2709864", + "direction": "outgoing", + "index": 129033, + "result_id": "ee49a9f6-d95d-4185-97f3-3237c2d1e076", + "status": 200, + "timestamp": "2026-05-22T12:34:37.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf6c8ec7-ea9b-446c-953a-71af6424b237\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:37.311-04:00" + }, + { + "id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "created_at": "2026-05-22T12:34:40.573-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "31ffb7c9-3c10-49e6-b4d3-54e1a33163e3", + "direction": "outgoing", + "index": 129034, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "236d5801-7852-4e7e-9101-2123931742c3", + "direction": "outgoing", + "index": 129035, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0f411a70-3fee-4970-97b9-ed9bd3c36213\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "90b4ae8b-7208-45d6-a99b-6904ac1bc63b", + "direction": "outgoing", + "index": 129036, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0f411a70-3fee-4970-97b9-ed9bd3c36213\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0b216e4-0379-4983-835d-378be3735608", + "direction": "outgoing", + "index": 129037, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85", + "verb": "get" + }, + { + "id": "80ef7730-62d9-41fc-9523-f6864b1b4518", + "direction": "outgoing", + "index": 129038, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cb210404-5a64-4571-ad8e-1c004baff16e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "512dfea9-e408-4120-8279-2b155dcaa167", + "direction": "outgoing", + "index": 129039, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=cb210404-5a64-4571-ad8e-1c004baff16e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bc584e51-a367-434c-a12d-ab694c1b02a2", + "direction": "outgoing", + "index": 129040, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.674-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355", + "verb": "get" + }, + { + "id": "0eb9ce0a-7cce-4ad2-ba4e-3fb79a9fa648", + "direction": "outgoing", + "index": 129041, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.687-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b366401d-a848-4546-a1d8-74b983491f82\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2c2b6008-f01c-49d3-b863-813556951525", + "direction": "outgoing", + "index": 129042, + "result_id": "b482ee32-fb4c-4d8a-8211-92084828121d", + "status": 200, + "timestamp": "2026-05-22T12:34:40.697-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b366401d-a848-4546-a1d8-74b983491f82\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:40.573-04:00" + }, + { + "id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "created_at": "2026-05-22T12:34:43.433-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a35b15b0-7317-4ed3-a173-e8c1bed8f4d5", + "direction": "outgoing", + "index": 129043, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8c940581-0f63-42b9-9edc-afd47c2fb993", + "direction": "outgoing", + "index": 129044, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a1331dee-ff34-4164-a327-61d802d1fc72", + "direction": "outgoing", + "index": 129045, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.480-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7d433d05-b708-4990-9172-0b639bbc11a3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7d70cb67-31c3-4385-9f32-f68f0dc70d2b", + "direction": "outgoing", + "index": 129046, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7d433d05-b708-4990-9172-0b639bbc11a3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1be3796f-fb88-441a-acf1-12fe518088e0", + "direction": "outgoing", + "index": 129047, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.508-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a52cb795-edd5-446a-ad73-b9641f836e92", + "direction": "outgoing", + "index": 129048, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.518-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca77aab6-2cad-45e5-a8ff-2e8fff0f986d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9003b0e2-881a-4430-b0a2-6c04241b096c", + "direction": "outgoing", + "index": 129049, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.530-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca77aab6-2cad-45e5-a8ff-2e8fff0f986d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93bddb42-945c-436e-9983-ae71c3d94c7a", + "direction": "outgoing", + "index": 129050, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5b5cfadd-5fe9-4b1a-b7b3-de195178b20b", + "direction": "outgoing", + "index": 129051, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "35951e36-5429-412f-bfba-558b0278e35e", + "direction": "outgoing", + "index": 129052, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.565-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c93ba11c-dabd-410c-bd6b-70b5279e223e", + "direction": "outgoing", + "index": 129053, + "result_id": "49c2c596-7eaf-4476-a469-737ff6e50775", + "status": 200, + "timestamp": "2026-05-22T12:34:43.575-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:43.433-04:00" + }, + { + "id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "created_at": "2026-05-22T12:34:44.564-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f53c0d24-cbb8-461b-b882-2db55006318f", + "direction": "outgoing", + "index": 129054, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.571-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "47bc7ece-3f37-49a1-92db-9133d41873ee", + "direction": "outgoing", + "index": 129055, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "972f8943-56bf-4c20-b21d-d80a9bd18794", + "direction": "outgoing", + "index": 129056, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.604-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "744453f9-70e5-4b5b-9f1b-269347a8584d", + "direction": "outgoing", + "index": 129057, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "4925c17d-922f-4b03-b0f8-7a5ecc31513e", + "direction": "outgoing", + "index": 129058, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3", + "verb": "get" + }, + { + "id": "7a8c3b35-43ef-45e4-8683-8d3cde73bd75", + "direction": "outgoing", + "index": 129059, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "4aa7de8d-5806-4269-a081-b360ce132420", + "direction": "outgoing", + "index": 129060, + "result_id": "cdb63b64-4492-426f-bb29-0451ce5e14df", + "status": 200, + "timestamp": "2026-05-22T12:34:44.653-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_type_period_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:44.564-04:00" + }, + { + "id": "5d012c25-0d27-4d5b-a057-83adaa23ae9e", + "created_at": "2026-05-22T12:34:45.066-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5a9bca7c-9845-4d0f-8643-d6412df51790", + "direction": "outgoing", + "index": 129061, + "result_id": "5d012c25-0d27-4d5b-a057-83adaa23ae9e", + "status": 200, + "timestamp": "2026-05-22T12:34:45.070-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3", + "verb": "get" + }, + { + "id": "232be3a0-b98f-4d68-9151-45e4181883c5", + "direction": "outgoing", + "index": 129062, + "result_id": "5d012c25-0d27-4d5b-a057-83adaa23ae9e", + "status": 200, + "timestamp": "2026-05-22T12:34:45.090-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3", + "verb": "get" + }, + { + "id": "09e58e4d-f792-4cca-bd89-5ee75b830c08", + "direction": "outgoing", + "index": 129063, + "result_id": "5d012c25-0d27-4d5b-a057-83adaa23ae9e", + "status": 200, + "timestamp": "2026-05-22T12:34:45.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_patient_type_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:45.066-04:00" + }, + { + "id": "dc7e07d7-0cb7-4995-b2e2-7f2f90c5169e", + "created_at": "2026-05-22T12:34:45.229-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ffe93a5f-998c-4f46-afd9-6ac348ef98e6", + "direction": "outgoing", + "index": 129064, + "result_id": "dc7e07d7-0cb7-4995-b2e2-7f2f90c5169e", + "status": 200, + "timestamp": "2026-05-22T12:34:45.231-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:45.229-04:00" + }, + { + "id": "103d7eab-1ee6-411d-8270-419e97736c88", + "created_at": "2026-05-22T12:34:47.668-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "37c8d329-2153-40b4-8739-28efb47c6381", + "direction": "outgoing", + "index": 129065, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.672-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ff2a5722-2bb3-468b-b424-a99c973847ae", + "direction": "outgoing", + "index": 129066, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8c497249-eb3b-480e-877b-355bc2458cf5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec03fa1d-a77e-4847-a68d-78c46f46aca1", + "direction": "outgoing", + "index": 129067, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.705-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8c497249-eb3b-480e-877b-355bc2458cf5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4e06fba6-8cf8-4898-9256-435200a5d00c", + "direction": "outgoing", + "index": 129068, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.720-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "a3a29708-9bf0-4bee-86de-3efbfde769da", + "direction": "outgoing", + "index": 129069, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.729-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5bb47886-868d-411e-b96f-519cb6d83e95\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8a6495b2-4eda-4780-9daf-60e2f342978d", + "direction": "outgoing", + "index": 129070, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.742-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5bb47886-868d-411e-b96f-519cb6d83e95\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f19d620b-9e40-47ed-b292-db1b47a3f0c0", + "direction": "outgoing", + "index": 129071, + "result_id": "103d7eab-1ee6-411d-8270-419e97736c88", + "status": 200, + "timestamp": "2026-05-22T12:34:47.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:34:47.668-04:00" + }, + { + "id": "fbfba3a7-c6d4-4583-b9d7-7bc69a63890a", + "created_at": "2026-05-22T12:35:02.180-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'HL7 ValueSet of Format Codes for use with Document Sharing' (http://terminology.hl7.org/ValueSet/v3-HL7FormatCodes|2.1.0), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_extension_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:02.180-04:00" + }, + { + "id": "604bc8e4-b466-4052-8292-b47c40d6b197", + "created_at": "2026-05-22T12:35:02.286-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:02.286-04:00" + }, + { + "id": "9807689e-e0a1-471b-9051-2ac271b14bdb", + "created_at": "2026-05-22T12:35:02.288-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v800_document_reference_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:02.288-04:00" + }, + { + "id": "91d6ac8c-b785-4c44-bc02-44ffdfc8d6d9", + "created_at": "2026-05-22T12:35:02.291-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference-us_core_v400_document_reference_custodian_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:02.291-04:00" + }, + { + "id": "b0de6c12-97ca-4e79-b20c-607b45260579", + "created_at": "2026-05-22T12:35:02.292-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_document_reference", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:02.292-04:00" + }, + { + "id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "created_at": "2026-05-22T12:35:03.080-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2fc68e22-8390-4388-9a00-b75d046c18a4", + "direction": "outgoing", + "index": 129072, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.087-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026patient=85", + "verb": "get" + }, + { + "id": "2689db5c-8b5a-4ed1-b40a-8007d3849316", + "direction": "outgoing", + "index": 129073, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.114-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search", + "verb": "post" + }, + { + "id": "e241a6df-66d3-4730-8248-bb71872ff3ad", + "direction": "outgoing", + "index": 129074, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "7a8212b1-e40c-483b-8174-8febd8ed38f9", + "direction": "outgoing", + "index": 129075, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.148-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://loinc.org%7C42348-3\u0026patient=85", + "verb": "get" + }, + { + "id": "1affee36-3834-4978-b658-b97f50f387ba", + "direction": "outgoing", + "index": 129076, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026patient=355", + "verb": "get" + }, + { + "id": "b9f183f5-98a6-47c9-85d2-0717e21e48cd", + "direction": "outgoing", + "index": 129077, + "result_id": "6882566c-d3ee-4918-bdbb-1f81c9a84a71", + "status": 200, + "timestamp": "2026-05-22T12:35:03.175-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:03.080-04:00" + }, + { + "id": "8b3134b7-238c-446d-b3eb-894d5d37ee0f", + "created_at": "2026-05-22T12:35:03.299-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f0cb45a8-cb8c-4efe-ab9e-56231d8a630b", + "direction": "outgoing", + "index": 129078, + "result_id": "8b3134b7-238c-446d-b3eb-894d5d37ee0f", + "status": 200, + "timestamp": "2026-05-22T12:35:03.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=4658c3ad-7856-4412-89bb-60651dceafad", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:03.299-04:00" + }, + { + "id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "created_at": "2026-05-22T12:35:04.510-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a60838f4-2671-43d2-9eab-ffd6651c34ad", + "direction": "outgoing", + "index": 129079, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.517-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "0c2d0344-0ee0-4ef7-b82f-ce94067e5c98", + "direction": "outgoing", + "index": 129080, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "76d61086-13a3-4c70-9756-cd93d58a1c93", + "direction": "outgoing", + "index": 129081, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4aa53416-ceb2-43b4-a9c4-bbdedc496ab3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1ad83960-5357-4e3b-b69f-5d2d606d1a39", + "direction": "outgoing", + "index": 129082, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.572-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "ad7af9e3-191d-41ef-9d29-62ff79a99ab2", + "direction": "outgoing", + "index": 129083, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23a566a3-2e0e-4657-abd4-b9ad4b5b6cad\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d802bd8d-47c6-4a14-b038-60823209f94a", + "direction": "outgoing", + "index": 129084, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23a566a3-2e0e-4657-abd4-b9ad4b5b6cad\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dedd9e14-dd70-42cb-837f-15b2d652eaca", + "direction": "outgoing", + "index": 129085, + "result_id": "ff6b6a00-cd4e-48e0-a914-2d7e0c66ad68", + "status": 200, + "timestamp": "2026-05-22T12:35:04.609-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:04.510-04:00" + }, + { + "id": "6ceb5db9-57cc-4093-ae6c-70745830b798", + "created_at": "2026-05-22T12:35:05.252-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "49023f83-ae1c-4d94-be76-ccbc236955c9", + "direction": "outgoing", + "index": 129086, + "result_id": "6ceb5db9-57cc-4093-ae6c-70745830b798", + "status": 200, + "timestamp": "2026-05-22T12:35:05.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current", + "verb": "get" + }, + { + "id": "22ce9966-0f41-493f-9f7e-37f5c564c71a", + "direction": "outgoing", + "index": 129087, + "result_id": "6ceb5db9-57cc-4093-ae6c-70745830b798", + "status": 200, + "timestamp": "2026-05-22T12:35:05.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error", + "verb": "get" + }, + { + "id": "a5f24d16-6989-4d2c-ad60-dc429ada3ad4", + "direction": "outgoing", + "index": 129088, + "result_id": "6ceb5db9-57cc-4093-ae6c-70745830b798", + "status": 200, + "timestamp": "2026-05-22T12:35:05.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf6c8ec7-ea9b-446c-953a-71af6424b237\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d45d31a-d40c-4cf9-aff2-0f6c185dcfac", + "direction": "outgoing", + "index": 129089, + "result_id": "6ceb5db9-57cc-4093-ae6c-70745830b798", + "status": 200, + "timestamp": "2026-05-22T12:35:05.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf6c8ec7-ea9b-446c-953a-71af6424b237\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:05.252-04:00" + }, + { + "id": "d831ea82-2a51-4e65-88ee-2702602307da", + "created_at": "2026-05-22T12:35:06.139-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c7a74d50-a54e-4e8a-9243-3eb659694af9", + "direction": "outgoing", + "index": 129090, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026date=2024-10-08T19:48:54.316108-07:00\u0026patient=85", + "verb": "get" + }, + { + "id": "deb66454-7e49-4397-bd12-ae806d47447b", + "direction": "outgoing", + "index": 129091, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.166-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026date=gt2024-10-07T19:48:54-07:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5823d3d0-ffa0-44aa-8b7a-480acd2abb00", + "direction": "outgoing", + "index": 129092, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026date=ge2024-10-07T19:48:54-07:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a7880c15-68c2-4743-bace-22b5e451d88d", + "direction": "outgoing", + "index": 129093, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.191-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026date=lt2024-10-09T19:48:54-07:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f6d69df5-cd6d-40dc-8366-c2b3473c214a", + "direction": "outgoing", + "index": 129094, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=42348-3\u0026date=le2024-10-09T19:48:54-07:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a04061f0-1eb9-46ce-aca2-f1bb6c62e9db", + "direction": "outgoing", + "index": 129095, + "result_id": "d831ea82-2a51-4e65-88ee-2702602307da", + "status": 200, + "timestamp": "2026-05-22T12:35:06.223-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://loinc.org%7C42348-3\u0026date=2024-10-08T19:48:54.316108-07:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:06.139-04:00" + }, + { + "id": "b50356cf-b050-4f66-814a-6cca576098b7", + "created_at": "2026-05-22T12:35:06.235-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `type`, `period`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_type_period_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:06.235-04:00" + }, + { + "id": "77a8f9df-1ebb-40d0-a043-8d874cba2416", + "created_at": "2026-05-22T12:35:06.483-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "359be330-f6aa-4388-a003-6d9d06583d83", + "direction": "outgoing", + "index": 129096, + "result_id": "77a8f9df-1ebb-40d0-a043-8d874cba2416", + "status": 200, + "timestamp": "2026-05-22T12:35:06.488-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=86533-7", + "verb": "get" + }, + { + "id": "28eea744-6363-418d-a029-9bb28e8261ab", + "direction": "outgoing", + "index": 129097, + "result_id": "77a8f9df-1ebb-40d0-a043-8d874cba2416", + "status": 200, + "timestamp": "2026-05-22T12:35:06.510-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C86533-7", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_patient_type_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:06.483-04:00" + }, + { + "id": "d3bdfac9-7a85-44bc-997e-0aed7fe3c793", + "created_at": "2026-05-22T12:35:06.639-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "308781b5-4560-47f6-a51b-c1aa3894525e", + "direction": "outgoing", + "index": 129098, + "result_id": "d3bdfac9-7a85-44bc-997e-0aed7fe3c793", + "status": 200, + "timestamp": "2026-05-22T12:35:06.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:06.639-04:00" + }, + { + "id": "9d7daf05-0989-4dfe-bb7b-5e989d0153fa", + "created_at": "2026-05-22T12:35:07.117-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f40c2829-ea59-4432-ba3d-7be7027164b1", + "direction": "outgoing", + "index": 129099, + "result_id": "9d7daf05-0989-4dfe-bb7b-5e989d0153fa", + "status": 200, + "timestamp": "2026-05-22T12:35:07.122-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026category=42348-3\u0026patient=85", + "verb": "get" + }, + { + "id": "5147fcc3-060f-47d4-b95e-4570803840c8", + "direction": "outgoing", + "index": 129100, + "result_id": "9d7daf05-0989-4dfe-bb7b-5e989d0153fa", + "status": 200, + "timestamp": "2026-05-22T12:35:07.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026category=42348-3\u0026patient=355", + "verb": "get" + }, + { + "id": "b33acc46-2f4f-45df-8215-f36fa51e2cac", + "direction": "outgoing", + "index": 129101, + "result_id": "9d7daf05-0989-4dfe-bb7b-5e989d0153fa", + "status": 200, + "timestamp": "2026-05-22T12:35:07.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026category=42348-3\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.117-04:00" + }, + { + "id": "97d31fd4-0741-4267-b64a-2996fb29859c", + "created_at": "2026-05-22T12:35:07.226-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.226-04:00" + }, + { + "id": "dda2af56-564b-4cbd-b442-c0ac44b75464", + "created_at": "2026-05-22T12:35:07.230-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.230-04:00" + }, + { + "id": "f2d41f02-65d6-4444-b14c-e5a36b5cc261", + "created_at": "2026-05-22T12:35:07.233-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.233-04:00" + }, + { + "id": "5cb16339-dd85-4b35-8ca5-b8adb009aa72", + "created_at": "2026-05-22T12:35:07.235-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference-us_core_v800_adi_document_reference_custodian_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.235-04:00" + }, + { + "id": "07f4d6dc-d70c-484d-ad32-fd26228cb17b", + "created_at": "2026-05-22T12:35:07.235-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_adi_document_reference", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:07.235-04:00" + }, + { + "id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "created_at": "2026-05-22T12:35:14.590-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d919d626-95f7-4e6a-9b46-1f950f0a17f8", + "direction": "outgoing", + "index": 129102, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.594-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85", + "verb": "get" + }, + { + "id": "2c9a13ac-e8d8-4b5b-bc0d-29a571a1e220", + "direction": "outgoing", + "index": 129103, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "61f9992c-efd6-486d-ae60-ecff745bcee7", + "direction": "outgoing", + "index": 129104, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.618-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6a3a3bef-4469-49fe-983b-348a385cb9b2", + "direction": "outgoing", + "index": 129105, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.631-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c047f2f4-74e2-4fac-bdc2-16bd882ce501", + "direction": "outgoing", + "index": 129106, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9fa69353-33fc-4af6-b143-e04701380ffb", + "direction": "outgoing", + "index": 129107, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b17c8433-c3f6-4aa8-ac3c-4521db4e85ba", + "direction": "outgoing", + "index": 129108, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.663-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/_search", + "verb": "post" + }, + { + "id": "e624c5fa-921d-4d63-bead-1cc16b674b2c", + "direction": "outgoing", + "index": 129109, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "05a4fcbe-1e4b-466a-9b4c-b06bbf36b258", + "direction": "outgoing", + "index": 129110, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.689-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bbcadf45-4de1-445d-8457-31d0ccf5610c", + "direction": "outgoing", + "index": 129111, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.700-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b2b601c0-761c-4cc6-bb39-b8b66b425103", + "direction": "outgoing", + "index": 129112, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1867886-aab8-4344-ac38-e729693fa8ca", + "direction": "outgoing", + "index": 129113, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1d6701da-188c-4d69-818e-b11cb499395c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "10b2bb35-f854-43fb-bbbd-32f24d1a1aba", + "direction": "outgoing", + "index": 129114, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.733-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85", + "verb": "get" + }, + { + "id": "f74d242e-919e-4c64-bae3-2e581efcafbb", + "direction": "outgoing", + "index": 129115, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c23e5930-1284-4759-b6e3-eb324e687002\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00210799-8d9c-434a-9668-0746cf4a06c1", + "direction": "outgoing", + "index": 129116, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.762-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c23e5930-1284-4759-b6e3-eb324e687002\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5ad2e4a9-accf-45df-a92c-7be58204c5b2", + "direction": "outgoing", + "index": 129117, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c23e5930-1284-4759-b6e3-eb324e687002\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "54a4bb0d-74c9-4649-8697-5bc0140c45b4", + "direction": "outgoing", + "index": 129118, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c23e5930-1284-4759-b6e3-eb324e687002\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "85602c5d-6ff3-4b5b-976c-1f34fe8cf90e", + "direction": "outgoing", + "index": 129119, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c23e5930-1284-4759-b6e3-eb324e687002\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ef7c8fec-9f0a-46a1-9b2d-8cfdb9152418", + "direction": "outgoing", + "index": 129120, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.813-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355", + "verb": "get" + }, + { + "id": "613f4e8f-916c-484c-b901-ff4df25120dd", + "direction": "outgoing", + "index": 129121, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "366c700f-00ab-44ae-a982-d6609a32c4ca", + "direction": "outgoing", + "index": 129122, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d45836e-08d9-42f3-a840-dcd3bbfc8d47", + "direction": "outgoing", + "index": 129123, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1af028d4-4e30-4bc3-9310-5d5b5352726e", + "direction": "outgoing", + "index": 129124, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a7dc2471-2b80-4f06-8232-fbf6c66a95f6", + "direction": "outgoing", + "index": 129125, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.874-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a721b95d-ae4b-4f7f-852e-b4dd27bcc766", + "direction": "outgoing", + "index": 129126, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.886-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5820bee2-ff54-4d85-b372-3a97aaf1b22e", + "direction": "outgoing", + "index": 129127, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "842a5177-203d-45e5-bfc2-806f4e8b717e", + "direction": "outgoing", + "index": 129128, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.909-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "41422c6d-640b-45b7-968b-ddc3807c0294", + "direction": "outgoing", + "index": 129129, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ceff4b5d-2821-41b3-b20a-a1bb55a659b6", + "direction": "outgoing", + "index": 129130, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "403be3c6-1b35-4a7e-a838-f7e2df1a3f36", + "direction": "outgoing", + "index": 129131, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.947-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46966d55-f0d4-487f-a9d5-470282a67ee8", + "direction": "outgoing", + "index": 129132, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=847cf5af-f7b8-4115-8ba5-0353f10b081c\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "275bf0e4-39cc-4aaa-aa89-bd096e2643bb", + "direction": "outgoing", + "index": 129133, + "result_id": "a5797fd2-c3bd-4b06-af3a-31b49db3f3c3", + "status": 200, + "timestamp": "2026-05-22T12:35:14.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:14.590-04:00" + }, + { + "id": "713ad194-0048-426a-afd7-38c47eb353eb", + "created_at": "2026-05-22T12:35:15.099-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "51f1aabc-31ad-4c9f-aa21-c4c51c2d224f", + "direction": "outgoing", + "index": 129134, + "result_id": "713ad194-0048-426a-afd7-38c47eb353eb", + "status": 200, + "timestamp": "2026-05-22T12:35:15.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_id=cac22925-f852-4ed3-af57-50afe02288bd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:15.099-04:00" + }, + { + "id": "09c006a0-db96-4c7d-bbbf-98e3b35f81d2", + "created_at": "2026-05-22T12:35:15.383-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ab5ffac5-765d-4750-a2e6-e111d689806c", + "direction": "outgoing", + "index": 129135, + "result_id": "09c006a0-db96-4c7d-bbbf-98e3b35f81d2", + "status": 200, + "timestamp": "2026-05-22T12:35:15.389-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=09775519-5327-3bbf-cb95-66313dde54ee", + "verb": "get" + }, + { + "id": "ae4ee00f-a73c-4272-8c50-e26f6f7a9be9", + "direction": "outgoing", + "index": 129136, + "result_id": "09c006a0-db96-4c7d-bbbf-98e3b35f81d2", + "status": 200, + "timestamp": "2026-05-22T12:35:15.412-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C09775519-5327-3bbf-cb95-66313dde54ee", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_identifier_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:15.383-04:00" + }, + { + "id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "created_at": "2026-05-22T12:35:22.874-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c76c6fd2-4306-4f55-810c-6f98ca5643b9", + "direction": "outgoing", + "index": 129137, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.879-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3fa5a597-9a5e-4d14-a6e2-ed0134af2745", + "direction": "outgoing", + "index": 129138, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d44dbb8c-f052-46ca-9ce3-51f3b0aaec42", + "direction": "outgoing", + "index": 129139, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0a1b5fb7-6876-4284-89ab-09656dab36ab", + "direction": "outgoing", + "index": 129140, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1b157b07-e412-433c-8ff7-74a085d5784a", + "direction": "outgoing", + "index": 129141, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d6136a3d-d1ff-4614-afa6-9011ba269c9b", + "direction": "outgoing", + "index": 129142, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "455cf1c3-7a8e-424d-a604-acca188115a1", + "direction": "outgoing", + "index": 129143, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "513bc816-d668-445b-9846-4167998f8ca5", + "direction": "outgoing", + "index": 129144, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "37b9ae8a-86f4-4fd9-b8c8-41019267e1e8", + "direction": "outgoing", + "index": 129145, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3621cb84-0ec7-47e9-b38c-092ebb6afa66", + "direction": "outgoing", + "index": 129146, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:22.992-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5a0b3711-6cc0-47bd-8fc9-5bddd1969017", + "direction": "outgoing", + "index": 129147, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.004-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b291593b-ced4-44fb-92fc-07ac8a07bd9e", + "direction": "outgoing", + "index": 129148, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57c4b0f9-1bb6-4508-8fe3-5cae3f0d2af2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2414ebda-3c4f-40f4-bfee-47ba22873b34", + "direction": "outgoing", + "index": 129149, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f13e24c9-b94e-4d69-9be7-db991edc36fa", + "direction": "outgoing", + "index": 129150, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.039-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaf0367d-37d9-458a-98a4-31fa88e712f9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "068e3e93-b194-4bb0-b45b-a743b1712e45", + "direction": "outgoing", + "index": 129151, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.049-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaf0367d-37d9-458a-98a4-31fa88e712f9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f3a9a7c-15a8-4cd7-a6a0-41a098e558d0", + "direction": "outgoing", + "index": 129152, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.060-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaf0367d-37d9-458a-98a4-31fa88e712f9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0d03062-b811-4cdd-9a47-8020e61ce01a", + "direction": "outgoing", + "index": 129153, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.071-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaf0367d-37d9-458a-98a4-31fa88e712f9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d9f6161a-a619-4bc3-89a8-659461a3740b", + "direction": "outgoing", + "index": 129154, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.083-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eaf0367d-37d9-458a-98a4-31fa88e712f9\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3a89135-22f0-4d2d-b860-c0d1e67c8ac9", + "direction": "outgoing", + "index": 129155, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.094-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6af06729-8ce5-4dd4-99bd-f774f2395197", + "direction": "outgoing", + "index": 129156, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ae190f89-6ce7-40ba-a8e7-d45a94f7df43", + "direction": "outgoing", + "index": 129157, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ce6f22a4-f1e9-44a1-8538-56dae28ea0dc", + "direction": "outgoing", + "index": 129158, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.125-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a0556790-4313-4152-8935-9e22cd76dd92", + "direction": "outgoing", + "index": 129159, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.137-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b64008db-e3f8-47be-94b3-2498440e5d91", + "direction": "outgoing", + "index": 129160, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e3b7dbd-0341-419c-9825-11f71672bc7b", + "direction": "outgoing", + "index": 129161, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.157-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47f308db-cd77-4004-8d46-4576e0eec116", + "direction": "outgoing", + "index": 129162, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e8a08826-f83e-470a-8b3c-1506b6b7dd9e", + "direction": "outgoing", + "index": 129163, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2f1a9f0b-4774-431e-98aa-81119cfa19e9", + "direction": "outgoing", + "index": 129164, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.189-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db2133a3-58b3-4657-a1c5-ad7cf475f95a", + "direction": "outgoing", + "index": 129165, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d9ce2aa9-6c89-43d4-92a8-8fa67b0915cb", + "direction": "outgoing", + "index": 129166, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1a0f1e33-f611-41ac-a668-830e72fedd23", + "direction": "outgoing", + "index": 129167, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.221-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0cbc212-b4ec-40ee-a4be-bc62c193c1fd", + "direction": "outgoing", + "index": 129168, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f3b38535-a23b-4eba-9d35-5e5368290996", + "direction": "outgoing", + "index": 129169, + "result_id": "5cad24a5-93d5-4546-b9cb-f18e6023785a", + "status": 200, + "timestamp": "2026-05-22T12:35:23.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5b3a9bcb-e732-4042-be80-f2172448aa57\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_date_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:22.874-04:00" + }, + { + "id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "created_at": "2026-05-22T12:35:27.731-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cad3e538-7c7a-443a-addb-3937af65527a", + "direction": "outgoing", + "index": 129170, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c00e73d4-fb13-46fa-a69c-81e534aa7bf7", + "direction": "outgoing", + "index": 129171, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.759-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed16e1d3-5c68-48c8-a091-1b3b84e4f951\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "329f29d1-9ee2-4d19-bf63-368cc71c437a", + "direction": "outgoing", + "index": 129172, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.777-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed16e1d3-5c68-48c8-a091-1b3b84e4f951\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f211bcdd-6bde-442f-8854-41fc83da2b78", + "direction": "outgoing", + "index": 129173, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.791-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed16e1d3-5c68-48c8-a091-1b3b84e4f951\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "960c451d-8626-40f8-87d8-35834fdc8942", + "direction": "outgoing", + "index": 129174, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed16e1d3-5c68-48c8-a091-1b3b84e4f951\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4d081d17-1506-4ae1-ad9b-1fd889e09cdb", + "direction": "outgoing", + "index": 129175, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed16e1d3-5c68-48c8-a091-1b3b84e4f951\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0b64bf2-71d5-48fc-ba46-2a7d8a5c2ec9", + "direction": "outgoing", + "index": 129176, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "986f1726-4225-458c-9ab1-1ab9567d7401", + "direction": "outgoing", + "index": 129177, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0e385eb-ff0c-4be5-a0a0-a46075036319", + "direction": "outgoing", + "index": 129178, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8fdc6be2-95d7-47dd-a1a4-3935b98c8b7a", + "direction": "outgoing", + "index": 129179, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.871-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d84e06ce-fce8-4c4d-a2c9-6b931264b0aa", + "direction": "outgoing", + "index": 129180, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "931cf92d-847d-4569-8837-c026eb55b418", + "direction": "outgoing", + "index": 129181, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6df59e5a-38d8-4502-ba0a-6b57473dc051", + "direction": "outgoing", + "index": 129182, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.907-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ba0ca9c1-14a0-454b-937d-7f50b02c8eb4", + "direction": "outgoing", + "index": 129183, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.919-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e42e47d8-a091-41a0-a3b8-4e9fb424ead3", + "direction": "outgoing", + "index": 129184, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.933-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "36b21802-8982-4155-ba48-03b94170e876", + "direction": "outgoing", + "index": 129185, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.945-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "82389fb9-b674-4224-bb9a-bd8ecbb7e620", + "direction": "outgoing", + "index": 129186, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9f1ebab-cc90-4015-a7c0-059bc32ee781", + "direction": "outgoing", + "index": 129187, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "041a038a-db57-40b4-a1fe-20fcbb97bf77", + "direction": "outgoing", + "index": 129188, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ca186732-530f-4a7b-9566-d5229ee50c92\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "da4c5b34-dace-4cdc-9690-baaf072d1d3a", + "direction": "outgoing", + "index": 129189, + "result_id": "c5d7a12d-f753-4a98-b3f3-1e015c4289e8", + "status": 200, + "timestamp": "2026-05-22T12:35:27.993-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_lastUpdated=2026-05-01T02:48:41.301%2B00:00\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:27.731-04:00" + }, + { + "id": "602af0b3-8345-435a-a096-8f750c2e7893", + "created_at": "2026-05-22T12:35:32.590-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "77505f90-d5d5-4bdc-97bd-5cc66d9dec3c", + "direction": "outgoing", + "index": 129190, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished", + "verb": "get" + }, + { + "id": "7b031f49-3078-4150-8641-1144ad1639fa", + "direction": "outgoing", + "index": 129191, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.603-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed158688-704f-4db3-acb5-6f0f44af8524\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1c14bd75-ecff-4619-9620-17c2c98d2ffa", + "direction": "outgoing", + "index": 129192, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed158688-704f-4db3-acb5-6f0f44af8524\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f6cddd44-7557-45c2-af87-06c353087896", + "direction": "outgoing", + "index": 129193, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed158688-704f-4db3-acb5-6f0f44af8524\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a78de8b8-9b4e-43b0-915f-008363d06e25", + "direction": "outgoing", + "index": 129194, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.637-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed158688-704f-4db3-acb5-6f0f44af8524\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c238faa2-345a-4a02-b627-e6cb11152e4b", + "direction": "outgoing", + "index": 129195, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ed158688-704f-4db3-acb5-6f0f44af8524\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e88faa8-6ae3-4ce0-ac02-f7e5d336d584", + "direction": "outgoing", + "index": 129196, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished", + "verb": "get" + }, + { + "id": "11b2d832-566d-47bd-9bc2-0d18aadcead1", + "direction": "outgoing", + "index": 129197, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.669-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "090fbe17-3b55-483a-a283-555f23572f20", + "direction": "outgoing", + "index": 129198, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.679-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "931c36af-84f8-44ff-ba51-30ef23384b5a", + "direction": "outgoing", + "index": 129199, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.690-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "acc94350-bf76-4e9f-a71f-0f95bc25cddb", + "direction": "outgoing", + "index": 129200, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "09dfad0e-b34a-4d8c-9cd6-61c697a38742", + "direction": "outgoing", + "index": 129201, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.712-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "895cd87c-db98-42ed-a8a4-fc01a9cd8daf", + "direction": "outgoing", + "index": 129202, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "50183d4c-c560-4e84-a568-781f46031f7f", + "direction": "outgoing", + "index": 129203, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "acfccbef-14dc-4e99-922b-01a8c7f7d078", + "direction": "outgoing", + "index": 129204, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b4cc5497-7b66-41ff-a978-af6fcb8703e0", + "direction": "outgoing", + "index": 129205, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.760-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dd5659f8-f083-4c4d-b42a-6f6efe4612ef", + "direction": "outgoing", + "index": 129206, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26056084-0131-4fbc-a78b-d993def9e94f", + "direction": "outgoing", + "index": 129207, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.787-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "712c1195-c376-4a8e-9571-6d5cd7341ac8", + "direction": "outgoing", + "index": 129208, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.799-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7e10e828-2d12-4b96-8316-fb3bb27a5bfc\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5a89ef09-8e64-40b1-9bf8-78e547d02704", + "direction": "outgoing", + "index": 129209, + "result_id": "602af0b3-8345-435a-a096-8f750c2e7893", + "status": 200, + "timestamp": "2026-05-22T12:35:32.811-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=908\u0026status=in-progress", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:32.590-04:00" + }, + { + "id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "created_at": "2026-05-22T12:35:36.054-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4706aafb-2f9f-4914-b469-ea96b84569c7", + "direction": "outgoing", + "index": 129210, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.060-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009", + "verb": "get" + }, + { + "id": "ac4bac09-781b-47ed-8020-f2fdd153816c", + "direction": "outgoing", + "index": 129211, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e35d9d4-7a46-4338-a192-c6215ef5c197\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dbc7f4d7-7cae-40a4-99f7-08de83cc75e3", + "direction": "outgoing", + "index": 129212, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.110-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4e35d9d4-7a46-4338-a192-c6215ef5c197\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fe5ffe8b-f903-4544-8eea-246b9936b2d7", + "direction": "outgoing", + "index": 129213, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.135-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009", + "verb": "get" + }, + { + "id": "7aac393c-96bf-45fd-8f35-a20be98d1e2a", + "direction": "outgoing", + "index": 129214, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.150-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=32895896-a840-4044-b8d1-189c37b9e845\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dd23bee8-73d1-48db-a448-fe30871a11bf", + "direction": "outgoing", + "index": 129215, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=32895896-a840-4044-b8d1-189c37b9e845\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c20a8a02-7e7e-43d5-8655-ce12ce438f91", + "direction": "outgoing", + "index": 129216, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009", + "verb": "get" + }, + { + "id": "fbd793df-d3b6-43df-8bc6-e334f5b34e14", + "direction": "outgoing", + "index": 129217, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d68e025-802c-4377-8c75-ecd23c1471fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f570609d-d3b0-48f8-a978-fa7e6cfd417e", + "direction": "outgoing", + "index": 129218, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6d68e025-802c-4377-8c75-ecd23c1471fa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e93c3f06-81f9-42b6-9a1b-f16af5ccad8e", + "direction": "outgoing", + "index": 129219, + "result_id": "28aa4161-bf4b-45b7-bc64-2fd84a103bae", + "status": 200, + "timestamp": "2026-05-22T12:35:36.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?patient=908\u0026type=261665006", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient_type_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:36.054-04:00" + }, + { + "id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "created_at": "2026-05-22T12:35:39.636-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c14cecae-8791-4866-bf81-fe759cbc09f1", + "direction": "outgoing", + "index": 129220, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.640-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/b594895c-11cb-403f-a3bb-5729a3da4bd6\u0026patient=85", + "verb": "get" + }, + { + "id": "950767a3-2445-49a1-9354-f4f97ffcac16", + "direction": "outgoing", + "index": 129221, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0f6162e3-6f30-4cc4-b47d-be7bbb8e59fa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d288a8a0-5610-4631-be6e-eff44c7f8e39", + "direction": "outgoing", + "index": 129222, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0f6162e3-6f30-4cc4-b47d-be7bbb8e59fa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0b3a48c-4200-4921-9b1e-9e8c6aa25b60", + "direction": "outgoing", + "index": 129223, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0f6162e3-6f30-4cc4-b47d-be7bbb8e59fa\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "68ce8847-dfa0-4ade-8e34-1a15823a13dc", + "direction": "outgoing", + "index": 129224, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/462d8d76-453e-4644-9f58-fc7f4f1daff0\u0026patient=355", + "verb": "get" + }, + { + "id": "79aa56c0-fb9b-4531-b703-edaf7ef1fe86", + "direction": "outgoing", + "index": 129225, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.715-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "55c5fccd-6608-4e4a-ace7-d87937d2a717", + "direction": "outgoing", + "index": 129226, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5b5dedc8-9666-4510-8902-8a79014e5574", + "direction": "outgoing", + "index": 129227, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c4685090-3d55-4ecb-86d9-17fce8a79353", + "direction": "outgoing", + "index": 129228, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.750-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c139a31b-a74f-4a04-a35e-005b878787a0", + "direction": "outgoing", + "index": 129229, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.763-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "774375f7-57dc-4552-b8ab-7b6583401fee", + "direction": "outgoing", + "index": 129230, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.773-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cd7d9520-906f-4836-8a1f-e460137f06bc", + "direction": "outgoing", + "index": 129231, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.783-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f3d1b589-c745-480d-a930-1d35efb87a86", + "direction": "outgoing", + "index": 129232, + "result_id": "4d441ada-ab28-428d-8fda-c7ec68563bd2", + "status": 200, + "timestamp": "2026-05-22T12:35:39.794-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a4817d97-2d51-4a1a-8206-3d389087a080\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient_location_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:39.636-04:00" + }, + { + "id": "03cc9cef-7a3c-42fa-b931-c107e56be15f", + "created_at": "2026-05-22T12:35:40.028-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "db1c287a-7a7f-40d7-95db-0364d9c7d1be", + "direction": "outgoing", + "index": 129233, + "result_id": "03cc9cef-7a3c-42fa-b931-c107e56be15f", + "status": 400, + "timestamp": "2026-05-22T12:35:40.031-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85", + "verb": "get" + }, + { + "id": "a827646c-2119-47d8-ba26-99a641976e65", + "direction": "outgoing", + "index": 129234, + "result_id": "03cc9cef-7a3c-42fa-b931-c107e56be15f", + "status": 400, + "timestamp": "2026-05-22T12:35:40.048-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85\u0026status=planned", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_patient_discharge_disposition_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:40.028-04:00" + }, + { + "id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "created_at": "2026-05-22T12:35:45.923-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f7d4b39a-bf0a-47da-83d9-b8e3cf9a13a8", + "direction": "outgoing", + "index": 129235, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85", + "verb": "get" + }, + { + "id": "165cd74b-b383-4edc-9010-d4444c89a419", + "direction": "outgoing", + "index": 129236, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b7f2208d-5d0a-4da2-b9f9-5f2bf50316ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a792a474-2ec6-4e17-add6-fcf138a29ba4", + "direction": "outgoing", + "index": 129237, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.961-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b7f2208d-5d0a-4da2-b9f9-5f2bf50316ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "65b74dbb-f323-45fa-b8e3-bc5202a7d36c", + "direction": "outgoing", + "index": 129238, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.974-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b7f2208d-5d0a-4da2-b9f9-5f2bf50316ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "946cfd09-9271-40e7-aaea-83bdd32c0fb8", + "direction": "outgoing", + "index": 129239, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b7f2208d-5d0a-4da2-b9f9-5f2bf50316ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d7d2f7ca-73e7-43ad-a26b-625bfdf0f14c", + "direction": "outgoing", + "index": 129240, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:45.999-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b7f2208d-5d0a-4da2-b9f9-5f2bf50316ea\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7d970fdf-c18c-4678-9f06-e143a6624bac", + "direction": "outgoing", + "index": 129241, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.009-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85", + "verb": "get" + }, + { + "id": "eac97894-184d-4e54-bc51-1248e248bc5e", + "direction": "outgoing", + "index": 129242, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=753d7801-284d-4811-94fc-4e7a36aaaa37\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea1daf1a-d96b-43cf-acd3-af02eed25526", + "direction": "outgoing", + "index": 129243, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=753d7801-284d-4811-94fc-4e7a36aaaa37\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9d911d61-e984-4377-b6ac-36281a5112fd", + "direction": "outgoing", + "index": 129244, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=753d7801-284d-4811-94fc-4e7a36aaaa37\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "df1cea3e-4828-424f-9733-6eb152be0b97", + "direction": "outgoing", + "index": 129245, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=753d7801-284d-4811-94fc-4e7a36aaaa37\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b4c753da-2236-4b2c-92ea-bbd96b9cd7ea", + "direction": "outgoing", + "index": 129246, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.064-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=753d7801-284d-4811-94fc-4e7a36aaaa37\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "507ddf71-0826-4eb1-8eda-3697f5bdeadf", + "direction": "outgoing", + "index": 129247, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355", + "verb": "get" + }, + { + "id": "f617c816-1527-4887-b90f-e27787f2412e", + "direction": "outgoing", + "index": 129248, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.084-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "39b6e621-84d2-45ee-a932-9a571987df70", + "direction": "outgoing", + "index": 129249, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bd90ff6b-2937-4849-ae63-3bc8d8b30e9f", + "direction": "outgoing", + "index": 129250, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c41bedfd-ccf1-4eff-86b4-9c3c7b0baee0", + "direction": "outgoing", + "index": 129251, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.119-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f91a96d7-18d7-43f2-b172-a87a10696658", + "direction": "outgoing", + "index": 129252, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5ef562c0-16f3-4ffe-b715-1eff4d8ce101", + "direction": "outgoing", + "index": 129253, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.143-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fcce83e4-969a-4073-8d10-d3a843c76855", + "direction": "outgoing", + "index": 129254, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "67206167-feaa-49ed-a323-5e9bb01c115e", + "direction": "outgoing", + "index": 129255, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c62aab8f-931c-476f-8c9f-601c842577f8", + "direction": "outgoing", + "index": 129256, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8f315767-56d3-4d21-99d1-b711a070a40c", + "direction": "outgoing", + "index": 129257, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff0875db-6101-4bac-a8e7-8b65892d61c5", + "direction": "outgoing", + "index": 129258, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.199-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7d6caa3d-b517-4f1e-a3b8-473f4bbf2b58", + "direction": "outgoing", + "index": 129259, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.212-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6cd45044-eacb-4b9b-bcfa-d6f6d86d52f3\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b2f741b1-7b3e-4f59-ab1d-95c53fd06c1f", + "direction": "outgoing", + "index": 129260, + "result_id": "f83e425f-2cb0-412e-8766-60e84dd45463", + "status": 200, + "timestamp": "2026-05-22T12:35:46.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?class=IMP\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_class_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:45.923-04:00" + }, + { + "id": "7839f11f-7085-4d49-8f4e-0d1d8e058db3", + "created_at": "2026-05-22T12:35:46.344-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0a6bca72-2562-47a9-bd68-8add5b5da4ce", + "direction": "outgoing", + "index": 129261, + "result_id": "7839f11f-7085-4d49-8f4e-0d1d8e058db3", + "status": 200, + "timestamp": "2026-05-22T12:35:46.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:46.344-04:00" + }, + { + "id": "4b61725e-6f01-4964-a527-6703c622cb60", + "created_at": "2026-05-22T12:35:50.989-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0b3516be-86ff-4cdb-850a-585ef6945e92", + "direction": "outgoing", + "index": 129262, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:50.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "c64e9a09-2493-45de-b641-c5118bf52d88", + "direction": "outgoing", + "index": 129263, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.008-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c97d6dd2-f2e9-4f7f-8e85-775ebb71e1b2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fc07de6a-0b62-487a-8176-6cd09f5dc533", + "direction": "outgoing", + "index": 129264, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c97d6dd2-f2e9-4f7f-8e85-775ebb71e1b2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3912b66-e790-4125-a874-d8facd1c50cd", + "direction": "outgoing", + "index": 129265, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.100-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c97d6dd2-f2e9-4f7f-8e85-775ebb71e1b2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "84af378c-6e7a-4e76-9c5d-cd1e600f7a8a", + "direction": "outgoing", + "index": 129266, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.111-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c97d6dd2-f2e9-4f7f-8e85-775ebb71e1b2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f9e956ce-a5d3-41bd-9e5b-4515a7e39f19", + "direction": "outgoing", + "index": 129267, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c97d6dd2-f2e9-4f7f-8e85-775ebb71e1b2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40138576-2d00-4880-a25c-10a12b80124c", + "direction": "outgoing", + "index": 129268, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.134-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "907c822a-6063-409b-b1cd-2fe4505bb130", + "direction": "outgoing", + "index": 129269, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.144-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7df5e725-1cba-4442-90d7-bef420960768", + "direction": "outgoing", + "index": 129270, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.155-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4fbb07a7-7e8b-4bdd-9132-ebe2128c67c0", + "direction": "outgoing", + "index": 129271, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.166-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f33e41f0-7a5c-41b4-9413-c697a0ce7149", + "direction": "outgoing", + "index": 129272, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b689165c-bda4-437f-8d7f-652dead2c721", + "direction": "outgoing", + "index": 129273, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "71f68a17-4d84-4ad5-bcac-d4b088acfac1", + "direction": "outgoing", + "index": 129274, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f554943e-59dc-4bae-812e-c715099d1f5e", + "direction": "outgoing", + "index": 129275, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.217-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b480047d-f136-44be-97aa-80593794875f", + "direction": "outgoing", + "index": 129276, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8bbc452-bfc8-4b44-acdd-af6c49ac8e62", + "direction": "outgoing", + "index": 129277, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.243-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6ba5c028-21bb-4343-a920-9ebcb24488ab", + "direction": "outgoing", + "index": 129278, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a91b1740-2832-40fa-98f7-825a6c3cb454", + "direction": "outgoing", + "index": 129279, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.268-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d4d651f0-3290-40f7-982a-892ac40e015f", + "direction": "outgoing", + "index": 129280, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.280-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9032731c-c640-43dc-ba16-581863140005\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "230f6fb7-4ca8-4005-859f-4cb10b51cda3", + "direction": "outgoing", + "index": 129281, + "result_id": "4b61725e-6f01-4964-a527-6703c622cb60", + "status": 200, + "timestamp": "2026-05-22T12:35:51.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:35:50.989-04:00" + }, + { + "id": "c62ddd83-0e56-437e-9581-6e197d1b9f8d", + "created_at": "2026-05-22T12:36:01.275-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#305351004)", + "type": "warning" + }, + { + "message": "Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410620009)", + "type": "warning" + }, + { + "message": "Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4c3f9552-a765-44d8-85d1-10e631f053a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#394701000)", + "type": "warning" + }, + { + "message": "Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#410429000)", + "type": "warning" + }, + { + "message": "Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185347001)", + "type": "warning" + }, + { + "message": "Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#702927004)", + "type": "warning" + }, + { + "message": "Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#210098006)", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#50849002)", + "type": "warning" + }, + { + "message": "Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185345009)", + "type": "warning" + }, + { + "message": "Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#185349003)", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition: None of the codings provided are in the value set 'USEncounterDischargeDisposition' (http://terminology.hl7.org/ValueSet/v3-USEncounterDischargeDisposition|3.0.0), and a coding is recommended to come from this value set (codes = http://www.nubc.org/patient-discharge#01)", + "type": "info" + }, + { + "message": "Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#162673000)", + "type": "warning" + }, + { + "message": "Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Encounter/6ffb66b9-a174-45a9-90f9-0c6fcc97da7f: Encounter.type[0].coding[0].version: The code system 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' in the ValueSet include is different to the one in the value ('http://snomed.info/sct/731000124108')", + "type": "error" + }, + { + "message": "Encounter/6ffb66b9-a174-45a9-90f9-0c6fcc97da7f: Encounter.type[0].coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Encounter/6ffb66b9-a174-45a9-90f9-0c6fcc97da7f: Encounter.type[0]: None of the codings provided are in the value set 'Encounter Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.23|20250510), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#261665006)", + "type": "warning" + }, + { + "message": "Encounter/6ffb66b9-a174-45a9-90f9-0c6fcc97da7f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "result_message": "Resource does not conform to the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter|8.0.0", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:01.275-04:00" + }, + { + "id": "fcfb975a-f7a4-47bc-848c-eefedfa2b894", + "created_at": "2026-05-22T12:36:01.773-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:01.773-04:00" + }, + { + "id": "4d00160c-b6e3-44e2-a430-48391eec070c", + "created_at": "2026-05-22T12:36:02.288-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "85d95539-0cd0-430d-87b8-9a6b1953f071", + "direction": "outgoing", + "index": 129282, + "result_id": "4d00160c-b6e3-44e2-a430-48391eec070c", + "status": 200, + "timestamp": "2026-05-22T12:36:02.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_encounter_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:02.288-04:00" + }, + { + "id": "369206e5-e3ed-4a21-8742-e83f72c4d859", + "created_at": "2026-05-22T12:36:02.315-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter-us_core_v800_interpreter_required_extension_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:02.315-04:00" + }, + { + "id": "6099bb99-24ef-4b6b-ab12-b58e261fa47f", + "created_at": "2026-05-22T12:36:02.316-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_encounter", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:02.316-04:00" + }, + { + "id": "e3d95736-6825-4901-a125-693c5b5fe667", + "created_at": "2026-05-22T12:36:02.939-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bfd6ef4c-9993-4203-9fac-5e4e618c0902", + "direction": "outgoing", + "index": 129283, + "result_id": "e3d95736-6825-4901-a125-693c5b5fe667", + "status": 200, + "timestamp": "2026-05-22T12:36:02.945-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=85", + "verb": "get" + }, + { + "id": "47f3cd93-4aa9-4b66-8ddb-637c640a52cb", + "direction": "outgoing", + "index": 129284, + "result_id": "e3d95736-6825-4901-a125-693c5b5fe667", + "status": 200, + "timestamp": "2026-05-22T12:36:02.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355", + "verb": "get" + }, + { + "id": "f29a04a3-9167-405d-b044-a004bbc6c67f", + "direction": "outgoing", + "index": 129285, + "result_id": "e3d95736-6825-4901-a125-693c5b5fe667", + "status": 200, + "timestamp": "2026-05-22T12:36:02.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/_search", + "verb": "post" + }, + { + "id": "05d8040b-4ef7-474f-a674-2b8afc0b102d", + "direction": "outgoing", + "index": 129286, + "result_id": "e3d95736-6825-4901-a125-693c5b5fe667", + "status": 200, + "timestamp": "2026-05-22T12:36:02.997-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355", + "verb": "get" + }, + { + "id": "5b4a0dda-cbc6-45fd-9e0c-fb0cfedf92ce", + "direction": "outgoing", + "index": 129287, + "result_id": "e3d95736-6825-4901-a125-693c5b5fe667", + "status": 200, + "timestamp": "2026-05-22T12:36:03.011-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:02.939-04:00" + }, + { + "id": "a4abab95-fd29-4a20-be61-4981260cebec", + "created_at": "2026-05-22T12:36:03.149-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b88a6a7f-40f2-45d0-95e8-8c0dfbf18db4", + "direction": "outgoing", + "index": 129288, + "result_id": "a4abab95-fd29-4a20-be61-4981260cebec", + "status": 200, + "timestamp": "2026-05-22T12:36:03.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_patient_lifecycle_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:03.149-04:00" + }, + { + "id": "27797f5d-6664-4730-b3ca-5b5ea0d21adb", + "created_at": "2026-05-22T12:36:03.379-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "025981be-689e-468d-9537-05bb990a4f5f", + "direction": "outgoing", + "index": 129289, + "result_id": "27797f5d-6664-4730-b3ca-5b5ea0d21adb", + "status": 400, + "timestamp": "2026-05-22T12:36:03.380-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026patient=355", + "verb": "get" + }, + { + "id": "4458164c-fd03-42f6-854d-734a968b7ff1", + "direction": "outgoing", + "index": 129290, + "result_id": "27797f5d-6664-4730-b3ca-5b5ea0d21adb", + "status": 400, + "timestamp": "2026-05-22T12:36:03.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026lifecycle-status=proposed\u0026patient=355", + "verb": "get" + } + ], + "result": "fail", + "result_message": "Unexpected response status: expected 200, but received 400", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_patient_description_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:03.379-04:00" + }, + { + "id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "created_at": "2026-05-22T12:36:04.033-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a95bb836-f076-40b6-b9e4-a369a4dc9e71", + "direction": "outgoing", + "index": 129291, + "result_id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "status": 200, + "timestamp": "2026-05-22T12:36:04.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07", + "verb": "get" + }, + { + "id": "9ec4ecb2-e30f-45bb-bd7b-a25633a33476", + "direction": "outgoing", + "index": 129292, + "result_id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "status": 200, + "timestamp": "2026-05-22T12:36:04.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "66f577a0-51da-4302-b89b-e3aebc35153c", + "direction": "outgoing", + "index": 129293, + "result_id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "status": 200, + "timestamp": "2026-05-22T12:36:04.075-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "1a240272-5bae-46c4-9aa3-29e82520dde8", + "direction": "outgoing", + "index": 129294, + "result_id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "status": 200, + "timestamp": "2026-05-22T12:36:04.088-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00", + "verb": "get" + }, + { + "id": "abb92aa0-38d2-43fe-92a2-29704c170a1b", + "direction": "outgoing", + "index": 129295, + "result_id": "c244c944-3811-4fd7-b903-6ea02c246f7b", + "status": 200, + "timestamp": "2026-05-22T12:36:04.109-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_patient_target_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:04.033-04:00" + }, + { + "id": "e03ceb1d-e834-45ab-9ca7-b1c81a6e454c", + "created_at": "2026-05-22T12:36:04.228-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "80081545-6815-4be2-8dc2-51a784539b0e", + "direction": "outgoing", + "index": 129296, + "result_id": "e03ceb1d-e834-45ab-9ca7-b1c81a6e454c", + "status": 200, + "timestamp": "2026-05-22T12:36:04.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:04.228-04:00" + }, + { + "id": "07eefe2b-63d0-48f2-9b48-ebf42526228f", + "created_at": "2026-05-22T12:36:04.665-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dfbe6b8e-23f0-4504-b4bd-f5f8275a708c", + "direction": "outgoing", + "index": 129297, + "result_id": "07eefe2b-63d0-48f2-9b48-ebf42526228f", + "status": 200, + "timestamp": "2026-05-22T12:36:04.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "e460f195-1410-4983-a4b8-bf621282f279", + "direction": "outgoing", + "index": 129298, + "result_id": "07eefe2b-63d0-48f2-9b48-ebf42526228f", + "status": 200, + "timestamp": "2026-05-22T12:36:04.689-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "f7e5c200-32aa-4814-9867-0fccfc6c1648", + "direction": "outgoing", + "index": 129299, + "result_id": "07eefe2b-63d0-48f2-9b48-ebf42526228f", + "status": 200, + "timestamp": "2026-05-22T12:36:04.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:04.665-04:00" + }, + { + "id": "11fd9990-7f1f-4d8b-aeff-17b0ce9a928c", + "created_at": "2026-05-22T12:36:05.247-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal.description: None of the codings provided are in the value set 'Social Determinants of Health Goals' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1247.71|20241214) specified in an additional binding, and a coding is recommended to come from this value set (codes = http://snomed.info/sct#281004)", + "type": "info" + }, + { + "message": "Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:05.247-04:00" + }, + { + "id": "00400b00-a826-4f03-b064-ffa10eb8dc54", + "created_at": "2026-05-22T12:36:05.259-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:05.259-04:00" + }, + { + "id": "e4f3fc7d-3385-4381-b5d7-826e78370ae8", + "created_at": "2026-05-22T12:36:05.263-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal-us_core_v800_goal_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:05.263-04:00" + }, + { + "id": "39440cf9-0614-4d2e-b157-7e60c8ad02df", + "created_at": "2026-05-22T12:36:05.266-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_goal", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:05.266-04:00" + }, + { + "id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "created_at": "2026-05-22T12:36:08.149-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "358a7bea-2902-481b-ba04-8518b642aa2a", + "direction": "outgoing", + "index": 129300, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.155-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85", + "verb": "get" + }, + { + "id": "e1098bdd-6905-46de-906e-1af53741906e", + "direction": "outgoing", + "index": 129301, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67be82a0-3fc1-49da-91aa-3ef3bca08406\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7853c7a-0b59-455c-acab-96c1ea17262a", + "direction": "outgoing", + "index": 129302, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/_search", + "verb": "post" + }, + { + "id": "97c26acf-07f0-4e7e-bd1a-f3e046f3634c", + "direction": "outgoing", + "index": 129303, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=67be82a0-3fc1-49da-91aa-3ef3bca08406\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2c014e72-2df9-4f65-90e6-8e0408036579", + "direction": "outgoing", + "index": 129304, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85", + "verb": "get" + }, + { + "id": "f76cf701-6a5c-41e9-98cb-dc1a294015ad", + "direction": "outgoing", + "index": 129305, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.329-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38ea1f4f-3bdf-411b-ad0f-10b16bb417a1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "851bcaa9-6dfd-4b72-a41a-0b2389819766", + "direction": "outgoing", + "index": 129306, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355", + "verb": "get" + }, + { + "id": "6af3d325-5bdb-4bf0-9658-60c3aaf71cb5", + "direction": "outgoing", + "index": 129307, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7bd3e0d9-33fe-4a20-bdfa-e5578a63530c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1b6150a3-9d94-427a-9117-271e1e17bb89", + "direction": "outgoing", + "index": 129308, + "result_id": "d8abb5eb-3988-441a-b7f2-b044e080953a", + "status": 200, + "timestamp": "2026-05-22T12:36:08.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:08.149-04:00" + }, + { + "id": "57b651c9-1b03-4eef-8657-f1ebb6d4e03d", + "created_at": "2026-05-22T12:36:09.374-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0097f220-3ec9-4d6b-800c-12304a6ac5df", + "direction": "outgoing", + "index": 129309, + "result_id": "57b651c9-1b03-4eef-8657-f1ebb6d4e03d", + "status": 200, + "timestamp": "2026-05-22T12:36:09.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "312746a8-ca29-4f1d-8f6c-cc787c9f6b9f", + "direction": "outgoing", + "index": 129310, + "result_id": "57b651c9-1b03-4eef-8657-f1ebb6d4e03d", + "status": 200, + "timestamp": "2026-05-22T12:36:09.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=a785126c-2bba-4540-aced-d4b9ab6e9b09\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eacd68a8-2ab7-4212-ab0f-1b83168f6d9a", + "direction": "outgoing", + "index": 129311, + "result_id": "57b651c9-1b03-4eef-8657-f1ebb6d4e03d", + "status": 200, + "timestamp": "2026-05-22T12:36:09.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:09.374-04:00" + }, + { + "id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "created_at": "2026-05-22T12:36:11.534-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2fd2a841-ebd3-472f-a3d0-deeaaafd8e46", + "direction": "outgoing", + "index": 129312, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b349c287-e61c-4ecc-a2a6-fd44a5cd4359", + "direction": "outgoing", + "index": 129313, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "23854106-05e8-477c-a6b8-0ea40bd45ea1", + "direction": "outgoing", + "index": 129314, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.572-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=19f9d134-94a4-469e-bd37-b0d9f274ebb5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "19c84fb7-c0d1-4734-8d3b-fdb87e789f68", + "direction": "outgoing", + "index": 129315, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8e956162-0527-46a9-ac51-18a71ae020b4", + "direction": "outgoing", + "index": 129316, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.600-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f991a73e-54e9-4ff6-aeb0-a140afe702bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8c3a92ca-9e35-45b3-b0c5-34ad400a6ed5", + "direction": "outgoing", + "index": 129317, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2aafd4f9-80e3-40a2-8e54-85ceb8552d06", + "direction": "outgoing", + "index": 129318, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "de8a3b96-b2e6-4f58-9f51-200a329ea6ab", + "direction": "outgoing", + "index": 129319, + "result_id": "bc4e81af-45cf-48b1-924f-293bc637ee0e", + "status": 200, + "timestamp": "2026-05-22T12:36:11.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_patient_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:11.534-04:00" + }, + { + "id": "934bc5d9-ef18-4988-a743-fe623fa2e69f", + "created_at": "2026-05-22T12:36:11.760-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7ce75a63-1d7f-48c2-a1cd-fb67821e2cf8", + "direction": "outgoing", + "index": 129320, + "result_id": "934bc5d9-ef18-4988-a743-fe623fa2e69f", + "status": 200, + "timestamp": "2026-05-22T12:36:11.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:11.760-04:00" + }, + { + "id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "created_at": "2026-05-22T12:36:13.846-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "53ad0790-3a21-417c-8c62-465276e56713", + "direction": "outgoing", + "index": 129321, + "result_id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "status": 200, + "timestamp": "2026-05-22T12:36:13.849-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "ff6c55cd-aa0f-4a1d-b130-0b3c9f8e2041", + "direction": "outgoing", + "index": 129322, + "result_id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "status": 200, + "timestamp": "2026-05-22T12:36:13.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5272a764-4ff1-4335-826b-5ec22f171968\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2c709e5b-acc7-48cc-8239-30ed123fe5c7", + "direction": "outgoing", + "index": 129323, + "result_id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "status": 200, + "timestamp": "2026-05-22T12:36:13.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "dc1bfa92-d56e-4908-beac-d47f22e6b7c9", + "direction": "outgoing", + "index": 129324, + "result_id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "status": 200, + "timestamp": "2026-05-22T12:36:13.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1ffab2e7-8428-4132-899a-0459177d272c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d02b735-8ad9-481e-88d4-ff93237c5380", + "direction": "outgoing", + "index": 129325, + "result_id": "c7c2fe7d-f665-4c49-84e9-f20560e12dc5", + "status": 200, + "timestamp": "2026-05-22T12:36:13.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:13.846-04:00" + }, + { + "id": "a033f27a-10ee-4d83-80bc-3db89e74ed19", + "created_at": "2026-05-22T12:36:15.186-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "warning" + }, + { + "message": "Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization.vaccineCode.coding[0].display: Wrong Display Name 'Influenza, seasonal, injectable, preservative free' for http://hl7.org/fhir/sid/cvx#140. Valid display is one of 2 choices: 'Influenza, split virus, trivalent, PF' or 'Influenza, split virus, trivalent, injectable, preservative free' (for the language(s) 'en')", + "type": "error" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20250411), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/sid/cvx#140)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: us-core-5: 'SHOULD have an additional coding to the NDC value set' (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [ + { + "name": "dar_code_found", + "type": "text", + "value": "true" + } + ], + "requests": [], + "result": "fail", + "result_message": "Resource does not conform to the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-immunization|8.0.0", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:15.186-04:00" + }, + { + "id": "5130aa7c-3eee-44a4-b7a5-abcec850f5ac", + "created_at": "2026-05-22T12:36:15.320-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:15.320-04:00" + }, + { + "id": "f70679bc-f407-403e-82a0-ea8e7b8ffffc", + "created_at": "2026-05-22T12:36:15.604-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "39e89655-f9ce-45a2-b7bc-3db0f5b518a8", + "direction": "outgoing", + "index": 129326, + "result_id": "f70679bc-f407-403e-82a0-ea8e7b8ffffc", + "status": 200, + "timestamp": "2026-05-22T12:36:15.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d", + "verb": "get" + }, + { + "id": "fa5ae031-5dce-4c70-81ed-49e456b25b49", + "direction": "outgoing", + "index": 129327, + "result_id": "f70679bc-f407-403e-82a0-ea8e7b8ffffc", + "status": 200, + "timestamp": "2026-05-22T12:36:15.625-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/2a2716ea-fd11-4df0-8081-5e56080e43bf", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization-us_core_v800_immunization_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:15.604-04:00" + }, + { + "id": "6893b540-fbf8-4118-bf0b-baf420882d4c", + "created_at": "2026-05-22T12:36:15.642-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_immunization", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:15.642-04:00" + }, + { + "id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "created_at": "2026-05-22T12:36:16.393-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "afa57198-49e7-4c5c-948b-bc6a425ecef5", + "direction": "outgoing", + "index": 129328, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85", + "verb": "get" + }, + { + "id": "b1c14d0f-a2cd-4725-8eea-bdb9f1d58e1e", + "direction": "outgoing", + "index": 129329, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.414-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense/_search", + "verb": "post" + }, + { + "id": "0a9692df-fd2f-4e8a-9dd9-b35fcd0cc162", + "direction": "outgoing", + "index": 129330, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.429-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85", + "verb": "get" + }, + { + "id": "63b71784-651a-4a28-bc4a-5e5fda693b46", + "direction": "outgoing", + "index": 129331, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=Patient/85", + "verb": "get" + }, + { + "id": "61b3a971-a09d-43ca-9450-df408ca01c00", + "direction": "outgoing", + "index": 129332, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=355", + "verb": "get" + }, + { + "id": "d041ee33-a7ba-4212-9875-06f53ba679e9", + "direction": "outgoing", + "index": 129333, + "result_id": "43bc15e0-36db-40d8-9aed-2c14e2401669", + "status": 200, + "timestamp": "2026-05-22T12:36:16.463-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:16.393-04:00" + }, + { + "id": "9c763d07-f9e7-4512-839e-7bfb35762273", + "created_at": "2026-05-22T12:36:16.844-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "34d8765a-3e9a-4826-b2b4-d520c5f0b950", + "direction": "outgoing", + "index": 129334, + "result_id": "9c763d07-f9e7-4512-839e-7bfb35762273", + "status": 200, + "timestamp": "2026-05-22T12:36:16.847-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=FFC", + "verb": "get" + }, + { + "id": "3393ef31-76ed-4240-9ee6-cd13bf49423f", + "direction": "outgoing", + "index": 129335, + "result_id": "9c763d07-f9e7-4512-839e-7bfb35762273", + "status": 200, + "timestamp": "2026-05-22T12:36:16.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CFFC", + "verb": "get" + }, + { + "id": "2800498d-4d72-40ff-bcff-90952cec87d9", + "direction": "outgoing", + "index": 129336, + "result_id": "9c763d07-f9e7-4512-839e-7bfb35762273", + "status": 200, + "timestamp": "2026-05-22T12:36:16.872-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown\u0026type=DF,EM,SO,FF,FFC,FFP,FFSS,TF,FS,MS,RF,UD,RFC,RFCS,RFF,RFFS,RFP,RFPS,RFS,TB,TBS,UDE", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_patient_status_type_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:16.844-04:00" + }, + { + "id": "f4978779-ed36-4000-a65e-11db26be051d", + "created_at": "2026-05-22T12:36:17.259-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c69d64f6-1a56-4bca-bbfc-a93fe22b3cad", + "direction": "outgoing", + "index": 129337, + "result_id": "f4978779-ed36-4000-a65e-11db26be051d", + "status": 200, + "timestamp": "2026-05-22T12:36:17.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "8538405e-114f-4bdd-b7e9-a4b8f1bea65b", + "direction": "outgoing", + "index": 129338, + "result_id": "f4978779-ed36-4000-a65e-11db26be051d", + "status": 200, + "timestamp": "2026-05-22T12:36:17.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "e4867dca-c060-43ac-a600-f8e40b001f20", + "direction": "outgoing", + "index": 129339, + "result_id": "f4978779-ed36-4000-a65e-11db26be051d", + "status": 200, + "timestamp": "2026-05-22T12:36:17.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:17.259-04:00" + }, + { + "id": "b5624ad0-09ba-4080-aae7-48489d6e1261", + "created_at": "2026-05-22T12:36:17.410-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bad26f46-566c-4691-80a0-dd87d94d97c9", + "direction": "outgoing", + "index": 129340, + "result_id": "b5624ad0-09ba-4080-aae7-48489d6e1261", + "status": 200, + "timestamp": "2026-05-22T12:36:17.412-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:17.410-04:00" + }, + { + "id": "79d4aff9-3614-4fca-b8bb-bf3c9ae2d349", + "created_at": "2026-05-22T12:36:17.817-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2215517f-34c3-4106-8cd1-09777166ff34", + "direction": "outgoing", + "index": 129341, + "result_id": "79d4aff9-3614-4fca-b8bb-bf3c9ae2d349", + "status": 200, + "timestamp": "2026-05-22T12:36:17.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "61797d83-9b4e-43ca-9c74-f27affb65fab", + "direction": "outgoing", + "index": 129342, + "result_id": "79d4aff9-3614-4fca-b8bb-bf3c9ae2d349", + "status": 200, + "timestamp": "2026-05-22T12:36:17.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "79a2336b-cfa7-4e6f-8b44-6a8f14477108", + "direction": "outgoing", + "index": 129343, + "result_id": "79d4aff9-3614-4fca-b8bb-bf3c9ae2d349", + "status": 200, + "timestamp": "2026-05-22T12:36:17.850-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:17.817-04:00" + }, + { + "id": "a2db3d22-389a-4d34-9ae2-d393a56e18bb", + "created_at": "2026-05-22T12:36:22.368-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.dosageInstruction[0].route.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.dosageInstruction[0].route: None of the codings provided are in the value set 'Route of Administration of Therapeutic Agents' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.22|20241015), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#26643006)", + "type": "warning" + }, + { + "message": "MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:22.368-04:00" + }, + { + "id": "63436ab0-40a4-4090-8758-3401df850ed0", + "created_at": "2026-05-22T12:36:22.383-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:22.383-04:00" + }, + { + "id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "created_at": "2026-05-22T12:36:23.437-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ff6c1119-302e-40f0-96b2-38eeca0916fd", + "direction": "outgoing", + "index": 129344, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.444-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1", + "verb": "get" + }, + { + "id": "cc2fd7bc-0107-4876-8a27-7619f6828f29", + "direction": "outgoing", + "index": 129345, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.464-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd", + "verb": "get" + }, + { + "id": "3e7419e0-ed9d-49ce-8e3c-d4de234f0fc3", + "direction": "outgoing", + "index": 129346, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "9b065c9f-54ba-42b1-af56-4317947c292d", + "direction": "outgoing", + "index": 129347, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8", + "verb": "get" + }, + { + "id": "ea230c33-ba94-48ec-aaed-c645d8d5cd08", + "direction": "outgoing", + "index": 129348, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.507-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "d0136c8a-e995-41b8-a7f7-b7e4d0ec8071", + "direction": "outgoing", + "index": 129349, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.521-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22", + "verb": "get" + }, + { + "id": "17c372fb-5981-4570-9171-3eeecfc620ac", + "direction": "outgoing", + "index": 129350, + "result_id": "a3e66cae-3cc8-4109-a5eb-17da3ab671d4", + "status": 200, + "timestamp": "2026-05-22T12:36:23.536-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense-us_core_v800_medication_dispense_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:23.437-04:00" + }, + { + "id": "6538980e-dd1b-4024-93f8-6f9898fdbd95", + "created_at": "2026-05-22T12:36:23.549-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_dispense", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:23.549-04:00" + }, + { + "id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "created_at": "2026-05-22T12:36:30.992-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e0f9b34a-1867-40ff-afa4-9f0bf72ef574", + "direction": "outgoing", + "index": 129351, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.034-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "2e9077b0-3540-45b4-a51d-9f2136d20883", + "direction": "outgoing", + "index": 129352, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.059-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "16635be8-58fd-4fa7-8de2-ed2531a3f34f", + "direction": "outgoing", + "index": 129353, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "42a3d7d1-7c22-4b93-b01f-e16f1c9775aa", + "direction": "outgoing", + "index": 129354, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.088-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=905712a1-ca24-4a34-8b37-ca7cba3e8a9f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5abc33a3-3adf-4139-af19-9b5ebaf40aef", + "direction": "outgoing", + "index": 129355, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search", + "verb": "post" + }, + { + "id": "ac33f2f5-798c-4515-bb71-11908f8946d1", + "direction": "outgoing", + "index": 129356, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=905712a1-ca24-4a34-8b37-ca7cba3e8a9f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "76d10dfc-8562-4d1f-a4b6-f36ee31918a6", + "direction": "outgoing", + "index": 129357, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "cb96df26-cc7e-4850-b85a-30bd81e2eb3d", + "direction": "outgoing", + "index": 129358, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=696e9b53-b72a-4d37-bb37-ff417b027b82\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "68456ba9-4492-459c-9850-3904e946f8a2", + "direction": "outgoing", + "index": 129359, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.151-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "d1b499f4-8d2c-44d3-bf05-6c71a2e36eff", + "direction": "outgoing", + "index": 129360, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=da991a7f-08ab-482b-bd48-977a16a00617\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cee7cc44-1f59-4316-b40a-49586646f169", + "direction": "outgoing", + "index": 129361, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "8d7a2209-b85e-4ee9-bdfe-5bdc7eef3ea2", + "direction": "outgoing", + "index": 129362, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "6d28e716-d5b3-4b12-b3dc-1b4f1d4173a4", + "direction": "outgoing", + "index": 129363, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "a456d09f-effd-4c0a-aa48-94e27a8be5cf", + "direction": "outgoing", + "index": 129364, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "627ca5b9-3a25-4941-9887-f47cddff40b4", + "direction": "outgoing", + "index": 129365, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.225-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "f6668df9-948e-4a54-bf0d-569f5dba9b4d", + "direction": "outgoing", + "index": 129366, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.239-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "4d8203b6-c6db-4809-ba1e-6f3c124acb25", + "direction": "outgoing", + "index": 129367, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.288-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "abde3ca1-d6bd-4531-b861-3b44ddfe3679", + "direction": "outgoing", + "index": 129368, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "f47af690-0a7d-4f30-8282-ad6be4684e4f", + "direction": "outgoing", + "index": 129369, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bafe4c1b-d88d-406a-bd0c-31ff9f58be9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0dad58aa-d392-473e-bcc8-e42cd0f0a1a9", + "direction": "outgoing", + "index": 129370, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.333-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "ae204bd0-3d98-41af-98ce-0a60d93990e9", + "direction": "outgoing", + "index": 129371, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "da94a90c-ee29-46fb-bd3a-2d39b826bf5b", + "direction": "outgoing", + "index": 129372, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.358-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "84547871-ff96-45dd-8e0f-505e62c0631f", + "direction": "outgoing", + "index": 129373, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "ef9a0b1e-b30b-492e-9082-e943a1413939", + "direction": "outgoing", + "index": 129374, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355", + "verb": "get" + }, + { + "id": "280057a7-3061-46e9-bdd0-3a25f55d3084", + "direction": "outgoing", + "index": 129375, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.392-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=908", + "verb": "get" + }, + { + "id": "4d3766d7-2791-44c1-9ab8-43f6da1846c3", + "direction": "outgoing", + "index": 129376, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=908", + "verb": "get" + }, + { + "id": "8ba83cb2-952a-4842-9db5-ca95b33bdf0d", + "direction": "outgoing", + "index": 129377, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=908", + "verb": "get" + }, + { + "id": "e0d4cdb6-3ca1-464a-9a5f-de2db9f2daec", + "direction": "outgoing", + "index": 129378, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.429-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=908", + "verb": "get" + }, + { + "id": "901bf4e3-5aaf-43b0-88f4-f9f66f2d3f88", + "direction": "outgoing", + "index": 129379, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=908", + "verb": "get" + }, + { + "id": "26d8c302-e1b5-493f-8e1e-3fbd51de2f66", + "direction": "outgoing", + "index": 129380, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.450-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=908", + "verb": "get" + }, + { + "id": "53b59f92-b5cc-4ba3-94ed-d312de976567", + "direction": "outgoing", + "index": 129381, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=908", + "verb": "get" + }, + { + "id": "fdd49a5f-0ed1-4954-8ff0-de2b2d700366", + "direction": "outgoing", + "index": 129382, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.472-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=908", + "verb": "get" + }, + { + "id": "188bd9f8-2f77-4698-a022-2051d746f964", + "direction": "outgoing", + "index": 129383, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + }, + { + "id": "150dd922-d4c9-45d0-8dc3-3507939d14b7", + "direction": "outgoing", + "index": 129384, + "result_id": "4a40d0b6-bd42-47e7-a0da-601409001f1e", + "status": 200, + "timestamp": "2026-05-22T12:36:31.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5684d420-2544-4660-813a-12db4aa0c088\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_patient_intent_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:30.992-04:00" + }, + { + "id": "9ea55103-475c-45ec-86ec-96ac46d5cc31", + "created_at": "2026-05-22T12:36:31.879-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2f335dd2-345d-4ed1-9e29-5c8dca024341", + "direction": "outgoing", + "index": 129385, + "result_id": "9ea55103-475c-45ec-86ec-96ac46d5cc31", + "status": 200, + "timestamp": "2026-05-22T12:36:31.886-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "e834c84a-01ea-4884-a0fb-cd60ee0ffa09", + "direction": "outgoing", + "index": 129386, + "result_id": "9ea55103-475c-45ec-86ec-96ac46d5cc31", + "status": 200, + "timestamp": "2026-05-22T12:36:31.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "d6894a61-b6ed-4764-81c7-8ebb0f3238f4", + "direction": "outgoing", + "index": 129387, + "result_id": "9ea55103-475c-45ec-86ec-96ac46d5cc31", + "status": 200, + "timestamp": "2026-05-22T12:36:31.924-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_patient_intent_encounter_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:31.879-04:00" + }, + { + "id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "created_at": "2026-05-22T12:36:33.225-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e90768eb-9b52-461d-a66d-5dafa7c2d473", + "direction": "outgoing", + "index": 129388, + "result_id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "status": 200, + "timestamp": "2026-05-22T12:36:33.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped", + "verb": "get" + }, + { + "id": "5a79a969-34fa-4210-a3c5-e520d989072f", + "direction": "outgoing", + "index": 129389, + "result_id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "status": 200, + "timestamp": "2026-05-22T12:36:33.253-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2f83a96d-09cd-4268-bef2-cc9202e87051\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "665a89d6-7ab8-4b1f-b9e1-707576bda903", + "direction": "outgoing", + "index": 129390, + "result_id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "status": 200, + "timestamp": "2026-05-22T12:36:33.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped", + "verb": "get" + }, + { + "id": "2d35d531-6c93-44bd-b85e-6afc35c9cbd5", + "direction": "outgoing", + "index": 129391, + "result_id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "status": 200, + "timestamp": "2026-05-22T12:36:33.279-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown", + "verb": "get" + }, + { + "id": "f79ae6b8-a2f0-4c31-9a26-031e6139133c", + "direction": "outgoing", + "index": 129392, + "result_id": "665faff0-9b97-4dd2-a19e-5a1802fb6896", + "status": 200, + "timestamp": "2026-05-22T12:36:33.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=47e9d07e-9825-40e6-b146-c298fd679c2f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_patient_intent_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:33.225-04:00" + }, + { + "id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "created_at": "2026-05-22T12:36:35.605-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "527837e1-8971-449a-abbd-83a9dc641aa6", + "direction": "outgoing", + "index": 129393, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "304e6aac-5654-4167-bccc-a54c69e0b276", + "direction": "outgoing", + "index": 129394, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.631-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "6b65c6d6-a023-499b-a953-6daeb2f6f6c2", + "direction": "outgoing", + "index": 129395, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7bfde43d-8b0a-49a4-b246-15ef638c5d3b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fa6dcf34-341d-4313-b623-048cee061c41", + "direction": "outgoing", + "index": 129396, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "b5466b1a-a9eb-4fb0-9857-499997970e48", + "direction": "outgoing", + "index": 129397, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.669-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=74afd38c-7022-48ca-862c-253e73085c60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "518849a4-aba0-4a97-a0b3-2cee64443054", + "direction": "outgoing", + "index": 129398, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "09450ca4-de41-4c5e-b54c-90ada7b14988", + "direction": "outgoing", + "index": 129399, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.702-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "b0b4f059-b389-4f55-ae6d-b12ba201eb33", + "direction": "outgoing", + "index": 129400, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.712-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "b8759d4c-a0b6-4a7d-a281-1536f8a848b9", + "direction": "outgoing", + "index": 129401, + "result_id": "1d56e700-62e5-4d78-9965-530d49b3fc6e", + "status": 200, + "timestamp": "2026-05-22T12:36:35.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_patient_intent_authoredon_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:35.605-04:00" + }, + { + "id": "a722c5b9-b2bb-4e9a-a84e-d444f9924545", + "created_at": "2026-05-22T12:36:35.837-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "18051443-04fc-4b78-9ad3-c4a1841c3f05", + "direction": "outgoing", + "index": 129402, + "result_id": "a722c5b9-b2bb-4e9a-a84e-d444f9924545", + "status": 200, + "timestamp": "2026-05-22T12:36:35.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:35.837-04:00" + }, + { + "id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "created_at": "2026-05-22T12:36:40.737-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "82107c0d-bdb0-4bd3-8b22-a2c8ea2608ae", + "direction": "outgoing", + "index": 129403, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85", + "verb": "get" + }, + { + "id": "aa8286e7-f531-415c-a933-f1bb7381f733", + "direction": "outgoing", + "index": 129404, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.751-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85", + "verb": "get" + }, + { + "id": "b8b97433-6f6d-43bc-be71-918acebaf2d7", + "direction": "outgoing", + "index": 129405, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.761-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85", + "verb": "get" + }, + { + "id": "3a6c2770-739c-4396-8165-91e134af893e", + "direction": "outgoing", + "index": 129406, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.773-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1c251c49-0bf8-42d6-95c9-7ab96fe85dd3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f2bd510-1537-4371-93e2-541c9f19a509", + "direction": "outgoing", + "index": 129407, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.784-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85", + "verb": "get" + }, + { + "id": "ac9d6e9a-51a0-429a-b0eb-b92828947571", + "direction": "outgoing", + "index": 129408, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.795-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85", + "verb": "get" + }, + { + "id": "4078ec29-f587-4446-8fb0-8aad6b5e6c5c", + "direction": "outgoing", + "index": 129409, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85", + "verb": "get" + }, + { + "id": "543c454d-e713-4fab-bab7-a22e07cf3c2e", + "direction": "outgoing", + "index": 129410, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.815-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85", + "verb": "get" + }, + { + "id": "a061406e-4750-4a36-828b-a6b8e0898edc", + "direction": "outgoing", + "index": 129411, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.826-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85", + "verb": "get" + }, + { + "id": "28cb5450-6453-4040-a876-a866f48fee98", + "direction": "outgoing", + "index": 129412, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.837-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355", + "verb": "get" + }, + { + "id": "21d7fed0-b4c7-48c0-baee-8f43632855ae", + "direction": "outgoing", + "index": 129413, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.850-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355", + "verb": "get" + }, + { + "id": "9bc367db-5439-4186-b148-4536ce025b31", + "direction": "outgoing", + "index": 129414, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355", + "verb": "get" + }, + { + "id": "edccab90-76e3-4ab1-b34e-a1b9e9623c93", + "direction": "outgoing", + "index": 129415, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4099c2b3-8192-448b-af17-41484304f689\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a4234fc4-4a78-453d-a398-381d92b8922c", + "direction": "outgoing", + "index": 129416, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.887-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355", + "verb": "get" + }, + { + "id": "26c97201-6d97-4c06-b1a1-7dcbf605ed70", + "direction": "outgoing", + "index": 129417, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.901-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355", + "verb": "get" + }, + { + "id": "1fae5f3e-3109-40a2-aa96-ad6a335a132b", + "direction": "outgoing", + "index": 129418, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.911-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355", + "verb": "get" + }, + { + "id": "c1f6d7c3-54e0-403a-9e91-bad37c3a27e8", + "direction": "outgoing", + "index": 129419, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355", + "verb": "get" + }, + { + "id": "e4c32bbe-0bad-46f7-a071-f980bf54144e", + "direction": "outgoing", + "index": 129420, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.934-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355", + "verb": "get" + }, + { + "id": "ff8d3592-412b-43e4-9018-5c2e495ef1c6", + "direction": "outgoing", + "index": 129421, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=908", + "verb": "get" + }, + { + "id": "333585c3-ade5-4323-8706-e532e4bbd02f", + "direction": "outgoing", + "index": 129422, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.960-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=908", + "verb": "get" + }, + { + "id": "b8958646-37d2-41b4-a1be-73c9bb8eb8cf", + "direction": "outgoing", + "index": 129423, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=908", + "verb": "get" + }, + { + "id": "412237fd-be42-4e74-8306-ebc61492bf2d", + "direction": "outgoing", + "index": 129424, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:40.986-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=908", + "verb": "get" + }, + { + "id": "3baa7295-270a-4e02-b615-2eb8625863fc", + "direction": "outgoing", + "index": 129425, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:41.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=908", + "verb": "get" + }, + { + "id": "c18013e4-843f-446c-8c4c-7685ae2d3aa6", + "direction": "outgoing", + "index": 129426, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:41.015-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=908", + "verb": "get" + }, + { + "id": "d78b8074-ddad-472c-98c0-378faf4bd512", + "direction": "outgoing", + "index": 129427, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:41.027-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=908", + "verb": "get" + }, + { + "id": "b3b69297-b497-4ac0-8df4-9d249ce7c0c7", + "direction": "outgoing", + "index": 129428, + "result_id": "cf95f5a2-4833-4892-9a39-69a99aaa57c9", + "status": 200, + "timestamp": "2026-05-22T12:36:41.037-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:36:40.737-04:00" + }, + { + "id": "05ab7514-80e9-4999-a257-f0240655a39f", + "created_at": "2026-05-22T12:37:04.145-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)", + "type": "warning" + }, + { + "message": "MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)", + "type": "warning" + }, + { + "message": "MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#105078)", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'", + "type": "warning" + }, + { + "message": "MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0].extension[0].value.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Adherence' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1240.8|20231025), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#275928001)", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)", + "type": "warning" + }, + { + "message": "MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#562251)", + "type": "warning" + }, + { + "message": "MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1043400)", + "type": "warning" + }, + { + "message": "MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)", + "type": "warning" + }, + { + "message": "MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)", + "type": "warning" + }, + { + "message": "MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.dosageInstruction[0].route.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.dosageInstruction[0].route: None of the codings provided are in the value set 'Route of Administration of Therapeutic Agents' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.22|20241015), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#447694001)", + "type": "warning" + }, + { + "message": "MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)", + "type": "warning" + }, + { + "message": "MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)", + "type": "warning" + }, + { + "message": "MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)", + "type": "warning" + }, + { + "message": "MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)", + "type": "warning" + }, + { + "message": "MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)", + "type": "warning" + }, + { + "message": "MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:04.145-04:00" + }, + { + "id": "c2b8a199-e2ec-490e-8673-3f34ef0f1681", + "created_at": "2026-05-22T12:37:07.588-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '05052025' could not be found, so the code cannot be validated. Valid versions: 03022026", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)", + "type": "warning" + }, + { + "message": "Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:07.588-04:00" + }, + { + "id": "ee5a9c8c-c5c9-4441-95dc-285e7b57dfe4", + "created_at": "2026-05-22T12:37:07.621-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:07.621-04:00" + }, + { + "id": "3648ab67-2d39-4662-9db4-93696392b4bc", + "created_at": "2026-05-22T12:37:07.750-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "358ba307-63b9-4030-8463-13d08fdb1c41", + "direction": "outgoing", + "index": 129429, + "result_id": "3648ab67-2d39-4662-9db4-93696392b4bc", + "status": 200, + "timestamp": "2026-05-22T12:37:07.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request-us_core_v800_medication_request_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:07.750-04:00" + }, + { + "id": "024f1536-3ae1-44d4-86bf-bd67fbe2d5b4", + "created_at": "2026-05-22T12:37:07.776-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_medication_request", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:07.776-04:00" + }, + { + "id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "created_at": "2026-05-22T12:37:08.593-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a660c0dd-dfc3-46c3-960d-085563f8cb4a", + "direction": "outgoing", + "index": 129430, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.600-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026patient=85", + "verb": "get" + }, + { + "id": "42c514c8-16f3-4901-a197-66b6aec8488d", + "direction": "outgoing", + "index": 129431, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "c291513b-6e69-4d14-afa4-06bb2aa9682a", + "direction": "outgoing", + "index": 129432, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.648-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "572089ae-4a4e-4a3d-867d-efdb00b556ad", + "direction": "outgoing", + "index": 129433, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C45473-6\u0026patient=85", + "verb": "get" + }, + { + "id": "4795fc3d-8769-400c-b464-b7452aa5aea8", + "direction": "outgoing", + "index": 129434, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026patient=355", + "verb": "get" + }, + { + "id": "a60f0e5f-c3b2-43a8-9407-3fc5d560d016", + "direction": "outgoing", + "index": 129435, + "result_id": "3ce76808-dcd8-49c3-abf3-e6fb0b905235", + "status": 200, + "timestamp": "2026-05-22T12:37:08.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:08.593-04:00" + }, + { + "id": "458c114b-bc46-4b36-bab4-ff932265c1c1", + "created_at": "2026-05-22T12:37:08.923-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "988d8455-bc3c-476b-b30f-cd9092bc0330", + "direction": "outgoing", + "index": 129436, + "result_id": "458c114b-bc46-4b36-bab4-ff932265c1c1", + "status": 200, + "timestamp": "2026-05-22T12:37:08.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=observation-adi-documentation\u0026patient=85", + "verb": "get" + }, + { + "id": "bb9e1f48-1a90-4eb7-b8aa-f638fbb27d1b", + "direction": "outgoing", + "index": 129437, + "result_id": "458c114b-bc46-4b36-bab4-ff932265c1c1", + "status": 200, + "timestamp": "2026-05-22T12:37:08.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Cobservation-adi-documentation\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:08.923-04:00" + }, + { + "id": "71b9760a-c3d8-44a1-ac63-7e8f0858f4d7", + "created_at": "2026-05-22T12:37:09.183-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3a00506f-9000-4163-aa15-92d8bd3cd781", + "direction": "outgoing", + "index": 129438, + "result_id": "71b9760a-c3d8-44a1-ac63-7e8f0858f4d7", + "status": 200, + "timestamp": "2026-05-22T12:37:09.188-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026patient=85", + "verb": "get" + }, + { + "id": "cf1bc469-b2bc-49a5-8340-02d731120878", + "direction": "outgoing", + "index": 129439, + "result_id": "71b9760a-c3d8-44a1-ac63-7e8f0858f4d7", + "status": 200, + "timestamp": "2026-05-22T12:37:09.209-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Cobservation-adi-documentation\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:09.183-04:00" + }, + { + "id": "c4abb036-5dbe-4534-a5e6-e9c1959f7cda", + "created_at": "2026-05-22T12:37:09.692-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9471bd69-0b7c-4a6a-a2e0-5238200249a5", + "direction": "outgoing", + "index": 129440, + "result_id": "c4abb036-5dbe-4534-a5e6-e9c1959f7cda", + "status": 200, + "timestamp": "2026-05-22T12:37:09.693-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "8c9bae4a-8e2d-46db-bc7b-365a81e5d92f", + "direction": "outgoing", + "index": 129441, + "result_id": "c4abb036-5dbe-4534-a5e6-e9c1959f7cda", + "status": 200, + "timestamp": "2026-05-22T12:37:09.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Cobservation-adi-documentation\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "442b6c22-eb7f-49d0-bc94-fa3cfddaaaa9", + "direction": "outgoing", + "index": 129442, + "result_id": "c4abb036-5dbe-4534-a5e6-e9c1959f7cda", + "status": 200, + "timestamp": "2026-05-22T12:37:09.721-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:09.692-04:00" + }, + { + "id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "created_at": "2026-05-22T12:37:10.530-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f14f553b-c0b0-416b-8ac8-2a06740f13eb", + "direction": "outgoing", + "index": 129443, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026date=1941-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4a0d2619-322b-4c91-9f00-6148267bf0f9", + "direction": "outgoing", + "index": 129444, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026date=gt1941-09-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4ab8ed5d-91d8-4539-8bd9-92ab3cf95f30", + "direction": "outgoing", + "index": 129445, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.577-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026date=ge1941-09-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0ca258aa-dc5c-4336-9c51-1cef02020bcd", + "direction": "outgoing", + "index": 129446, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026date=lt1941-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "82cb4549-89ad-4297-b86a-aed5dfb96e5b", + "direction": "outgoing", + "index": 129447, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=observation-adi-documentation\u0026date=le1941-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "81bdc7c4-7950-4954-8618-dcca4bbb5bcb", + "direction": "outgoing", + "index": 129448, + "result_id": "cb444342-c15e-45eb-90a6-b284445a0bf3", + "status": 200, + "timestamp": "2026-05-22T12:37:10.619-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Cobservation-adi-documentation\u0026date=1941-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:10.530-04:00" + }, + { + "id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "created_at": "2026-05-22T12:37:11.430-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "834257e2-6c6e-4bf4-9984-c666ed845421", + "direction": "outgoing", + "index": 129449, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.437-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026date=1941-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "864055b9-0f29-4c71-befa-3faaf430dd93", + "direction": "outgoing", + "index": 129450, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.465-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026date=gt1941-09-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "89777085-b5eb-4cec-a8bd-11422010baee", + "direction": "outgoing", + "index": 129451, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026date=ge1941-09-04T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "43130268-55c3-4daa-b3d5-ecea94ba64af", + "direction": "outgoing", + "index": 129452, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.496-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026date=lt1941-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "35b3f5bf-ceb3-49dc-bdb8-5331bcfc7b6b", + "direction": "outgoing", + "index": 129453, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=45473-6\u0026date=le1941-09-06T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a864c021-9b6c-4527-b3d5-1ce949ef1afa", + "direction": "outgoing", + "index": 129454, + "result_id": "5cb05e37-0da4-4f7d-a165-282548cb439b", + "status": 200, + "timestamp": "2026-05-22T12:37:11.525-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C45473-6\u0026date=1941-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:11.430-04:00" + }, + { + "id": "09906faf-d8cd-40a2-b5e2-dbe8d376c712", + "created_at": "2026-05-22T12:37:11.640-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "98ef0631-78b7-4adf-bfe0-61b1fea3a1f4", + "direction": "outgoing", + "index": 129455, + "result_id": "09906faf-d8cd-40a2-b5e2-dbe8d376c712", + "status": 200, + "timestamp": "2026-05-22T12:37:11.642-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/fe7a6e33-ee6e-4654-8f70-2fa1ec9f9cce", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:11.640-04:00" + }, + { + "id": "4a6899cb-2c52-4186-9306-583027bd5658", + "created_at": "2026-05-22T12:37:12.031-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a32b9853-45d1-4a5c-b3c3-0e8e3549f7a7", + "direction": "outgoing", + "index": 129456, + "result_id": "4a6899cb-2c52-4186-9306-583027bd5658", + "status": 200, + "timestamp": "2026-05-22T12:37:12.032-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=45473-6\u0026patient=85", + "verb": "get" + }, + { + "id": "71557dfe-542a-445c-8108-72e1730bcd1f", + "direction": "outgoing", + "index": 129457, + "result_id": "4a6899cb-2c52-4186-9306-583027bd5658", + "status": 200, + "timestamp": "2026-05-22T12:37:12.048-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=45473-6\u0026patient=355", + "verb": "get" + }, + { + "id": "bbd70fd6-3182-46ed-9ed7-d03752ff7510", + "direction": "outgoing", + "index": 129458, + "result_id": "4a6899cb-2c52-4186-9306-583027bd5658", + "status": 200, + "timestamp": "2026-05-22T12:37:12.061-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=45473-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:12.031-04:00" + }, + { + "id": "8db2c69f-fc5f-47cb-bc6f-dc1baaf84f80", + "created_at": "2026-05-22T12:37:12.485-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/fe7a6e33-ee6e-4654-8f70-2fa1ec9f9cce: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:12.485-04:00" + }, + { + "id": "bb23da13-4d9c-4a5d-81eb-ef1a8e91dd78", + "created_at": "2026-05-22T12:37:12.499-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:12.499-04:00" + }, + { + "id": "89a049f3-d1d9-40a7-8f77-9eed95eb50d6", + "created_at": "2026-05-22T12:37:12.506-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation-us_core_v800_observation_adi_documentation_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:12.506-04:00" + }, + { + "id": "bc71490f-cb53-49c1-8ff9-224c112dc220", + "created_at": "2026-05-22T12:37:12.510-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_adi_documentation", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:12.510-04:00" + }, + { + "id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "created_at": "2026-05-22T12:37:13.364-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "51808dcd-33e3-4186-ac36-4c9b28b01e69", + "direction": "outgoing", + "index": 129459, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "d24d1d50-3d2b-4fa5-8b2b-d8a812236488", + "direction": "outgoing", + "index": 129460, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.394-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "077aaa92-3a5b-4786-bd71-d8fc16d6d400", + "direction": "outgoing", + "index": 129461, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "23ee43b5-f9aa-453b-96f0-5bc61f926b64", + "direction": "outgoing", + "index": 129462, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "5e78098d-d848-4165-a850-5b054127e203", + "direction": "outgoing", + "index": 129463, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.436-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "1e5edc09-bcf9-4626-99f4-478c0c46c23f", + "direction": "outgoing", + "index": 129464, + "result_id": "f5bb8650-a13c-47d2-b70a-03962786a927", + "status": 200, + "timestamp": "2026-05-22T12:37:13.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:13.364-04:00" + }, + { + "id": "2ee0a728-73d4-496b-92fb-7d7c54f7df70", + "created_at": "2026-05-22T12:37:13.868-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d7b0d76c-0842-4ff3-82ed-8f42b6cbd2b4", + "direction": "outgoing", + "index": 129465, + "result_id": "2ee0a728-73d4-496b-92fb-7d7c54f7df70", + "status": 200, + "timestamp": "2026-05-22T12:37:13.871-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "3ce22564-9ed6-4216-b94d-c0ef515b411e", + "direction": "outgoing", + "index": 129466, + "result_id": "2ee0a728-73d4-496b-92fb-7d7c54f7df70", + "status": 200, + "timestamp": "2026-05-22T12:37:13.891-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "dbd8e7a0-654a-4a60-bd41-e130517893b5", + "direction": "outgoing", + "index": 129467, + "result_id": "2ee0a728-73d4-496b-92fb-7d7c54f7df70", + "status": 200, + "timestamp": "2026-05-22T12:37:13.905-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=laboratory\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:13.868-04:00" + }, + { + "id": "de6c2123-19f2-4bdf-98c0-a76f189a19c1", + "created_at": "2026-05-22T12:37:14.486-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9c292b3b-f3a0-4e91-898d-5a6a4cb10ac3", + "direction": "outgoing", + "index": 129468, + "result_id": "de6c2123-19f2-4bdf-98c0-a76f189a19c1", + "status": 200, + "timestamp": "2026-05-22T12:37:14.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "511e9a06-1fd8-4dba-87b9-baf6489400c6", + "direction": "outgoing", + "index": 129469, + "result_id": "de6c2123-19f2-4bdf-98c0-a76f189a19c1", + "status": 200, + "timestamp": "2026-05-22T12:37:14.514-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "436845b6-a462-41bc-9a6e-acdb7e15b996", + "direction": "outgoing", + "index": 129470, + "result_id": "de6c2123-19f2-4bdf-98c0-a76f189a19c1", + "status": 200, + "timestamp": "2026-05-22T12:37:14.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "adb9ef59-3f87-42be-81dd-5e5454f7f946", + "direction": "outgoing", + "index": 129471, + "result_id": "de6c2123-19f2-4bdf-98c0-a76f189a19c1", + "status": 200, + "timestamp": "2026-05-22T12:37:14.552-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:14.486-04:00" + }, + { + "id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "created_at": "2026-05-22T12:37:15.469-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "faa38a9c-34c0-497c-9a4c-dc589c06ade5", + "direction": "outgoing", + "index": 129472, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.475-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a9dfc742-7462-432a-85d6-b3ea19dcc296", + "direction": "outgoing", + "index": 129473, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ec3e36f3-b259-4b10-8ab2-66c4c86c82e0", + "direction": "outgoing", + "index": 129474, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.509-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "809563d7-7ec0-4e4d-a094-035ce369dbba", + "direction": "outgoing", + "index": 129475, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0a9ab28d-9a82-415e-92b1-72e332dc96fe", + "direction": "outgoing", + "index": 129476, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b3fe2407-b880-42b5-9302-68950f1685a9", + "direction": "outgoing", + "index": 129477, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.545-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a08a44f4-f0d0-4dbc-a215-b569fd7ae027", + "direction": "outgoing", + "index": 129478, + "result_id": "c07bfc78-302e-46e8-835b-e5481e1970f2", + "status": 200, + "timestamp": "2026-05-22T12:37:15.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:15.469-04:00" + }, + { + "id": "a91f84ae-7f6c-41cf-83c2-5bee356648d5", + "created_at": "2026-05-22T12:37:15.920-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "231e3bcc-0abd-45ed-9baf-d9ae8defeb4e", + "direction": "outgoing", + "index": 129479, + "result_id": "a91f84ae-7f6c-41cf-83c2-5bee356648d5", + "status": 200, + "timestamp": "2026-05-22T12:37:15.927-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "6e6457e2-800d-4d93-9347-7575a91a5b2f", + "direction": "outgoing", + "index": 129480, + "result_id": "a91f84ae-7f6c-41cf-83c2-5bee356648d5", + "status": 200, + "timestamp": "2026-05-22T12:37:15.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "15a2b169-daa5-42ab-8cc1-11f8f7afd968", + "direction": "outgoing", + "index": 129481, + "result_id": "a91f84ae-7f6c-41cf-83c2-5bee356648d5", + "status": 200, + "timestamp": "2026-05-22T12:37:15.963-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:15.920-04:00" + }, + { + "id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "created_at": "2026-05-22T12:37:16.971-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "56b3a551-f69c-47b9-9ee9-2ac6646b4560", + "direction": "outgoing", + "index": 129482, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:16.978-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "50c39504-7a76-4f91-bc9e-bba8899dd0ea", + "direction": "outgoing", + "index": 129483, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.001-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7f50016b-a5b7-4193-921a-5e565fba0218", + "direction": "outgoing", + "index": 129484, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "05d67087-14b8-4af4-8244-00354ae3d6ba", + "direction": "outgoing", + "index": 129485, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.031-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e6542d30-225d-44d4-8ab9-74764e6d07e6", + "direction": "outgoing", + "index": 129486, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.045-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f1f0cd7e-b197-471e-85a1-3ab4129871b3", + "direction": "outgoing", + "index": 129487, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "390037e0-82f8-4569-9eb2-0fde8b0e9b32", + "direction": "outgoing", + "index": 129488, + "result_id": "51e5670b-4986-4ede-aecc-10e4a243abca", + "status": 200, + "timestamp": "2026-05-22T12:37:17.069-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:16.971-04:00" + }, + { + "id": "6eb2aeb6-3317-4e57-b2c3-2b4c54e47653", + "created_at": "2026-05-22T12:37:17.181-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "352006ba-bf7a-46ac-b340-b7b83145b20a", + "direction": "outgoing", + "index": 129489, + "result_id": "6eb2aeb6-3317-4e57-b2c3-2b4c54e47653", + "status": 200, + "timestamp": "2026-05-22T12:37:17.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:17.181-04:00" + }, + { + "id": "ba6fbd27-25b5-41c9-90ab-aa6d7f304282", + "created_at": "2026-05-22T12:37:17.703-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7fe0455f-1914-4b9c-9b48-8762f6cd8a81", + "direction": "outgoing", + "index": 129490, + "result_id": "ba6fbd27-25b5-41c9-90ab-aa6d7f304282", + "status": 200, + "timestamp": "2026-05-22T12:37:17.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "f0804442-6da5-4e45-a260-279303c71d47", + "direction": "outgoing", + "index": 129491, + "result_id": "ba6fbd27-25b5-41c9-90ab-aa6d7f304282", + "status": 200, + "timestamp": "2026-05-22T12:37:17.731-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "a2e29914-c9ea-46fe-aa51-a72e0a6ca5cd", + "direction": "outgoing", + "index": 129492, + "result_id": "ba6fbd27-25b5-41c9-90ab-aa6d7f304282", + "status": 200, + "timestamp": "2026-05-22T12:37:17.748-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:17.703-04:00" + }, + { + "id": "bd16dc36-ef9d-4c96-9b7d-c7d0ccc36b9a", + "created_at": "2026-05-22T12:37:20.394-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:20.394-04:00" + }, + { + "id": "924489c9-1ac7-4740-87cb-284925754a56", + "created_at": "2026-05-22T12:37:20.442-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:20.442-04:00" + }, + { + "id": "ca8e20ea-73f1-477e-aeec-deb3343d70af", + "created_at": "2026-05-22T12:37:21.272-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6968299e-57ee-4866-a0de-206e55dc64eb", + "direction": "outgoing", + "index": 129493, + "result_id": "ca8e20ea-73f1-477e-aeec-deb3343d70af", + "status": 200, + "timestamp": "2026-05-22T12:37:21.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/34e30948-9926-419e-8879-4835370bf5d7", + "verb": "get" + }, + { + "id": "087fcecf-5927-4635-a44a-c7e1a987c32b", + "direction": "outgoing", + "index": 129494, + "result_id": "ca8e20ea-73f1-477e-aeec-deb3343d70af", + "status": 200, + "timestamp": "2026-05-22T12:37:21.287-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab-us_core_v800_observation_lab_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:21.272-04:00" + }, + { + "id": "a00603aa-02b7-49e0-8752-b1bf758efd3d", + "created_at": "2026-05-22T12:37:21.298-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_lab", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:21.298-04:00" + }, + { + "id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "created_at": "2026-05-22T12:37:22.090-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "629a2c6d-71bf-47f0-820b-a1cfca432663", + "direction": "outgoing", + "index": 129495, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85", + "verb": "get" + }, + { + "id": "c64955ed-d6a1-4f36-8520-97c41d6a4921", + "direction": "outgoing", + "index": 129496, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.126-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "fa04d53c-66fa-462f-b2a4-dc8441902fb9", + "direction": "outgoing", + "index": 129497, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.147-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "e067af6c-d3bd-418a-a967-702801eb3b54", + "direction": "outgoing", + "index": 129498, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85", + "verb": "get" + }, + { + "id": "c439d985-045c-4062-9d5e-6851261cd06d", + "direction": "outgoing", + "index": 129499, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355", + "verb": "get" + }, + { + "id": "6a3aac14-2fd5-4c24-aab0-91aff8d71d51", + "direction": "outgoing", + "index": 129500, + "result_id": "74e214a0-18f2-4774-84f1-e79285c2a5d1", + "status": 200, + "timestamp": "2026-05-22T12:37:22.187-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:22.090-04:00" + }, + { + "id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "created_at": "2026-05-22T12:37:24.854-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9a527090-30f0-44ad-93eb-7754316396c2", + "direction": "outgoing", + "index": 129501, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "a8c34b2c-b5d9-490a-bd4a-46165c7f2fb5", + "direction": "outgoing", + "index": 129502, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.894-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e4d2fa00-4a50-457c-b912-87e5940c18da", + "direction": "outgoing", + "index": 129503, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.916-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f4874915-0503-4625-a3e5-df6f7535e799", + "direction": "outgoing", + "index": 129504, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26825adb-951c-4e08-a91e-459c9b3dbc53", + "direction": "outgoing", + "index": 129505, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8bd89229-776b-40d5-8923-53a57b62c4d7", + "direction": "outgoing", + "index": 129506, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "6659673b-67da-4359-b5ed-c409364e37c8", + "direction": "outgoing", + "index": 129507, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3c82b2c-3ac4-43c1-b138-ae0fdc9638f6", + "direction": "outgoing", + "index": 129508, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:24.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7078d40f-69dc-4f87-8809-53b81836effc", + "direction": "outgoing", + "index": 129509, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:25.004-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8b2ab143-332d-4f6f-82c9-baaf606aacf4", + "direction": "outgoing", + "index": 129510, + "result_id": "a5c7095e-9770-42d2-a6f9-37c303f46f30", + "status": 200, + "timestamp": "2026-05-22T12:37:25.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:24.854-04:00" + }, + { + "id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "created_at": "2026-05-22T12:37:27.601-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "49d5fd25-df17-4967-b1ec-934519678d16", + "direction": "outgoing", + "index": 129511, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.605-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "65806aae-6d5a-4fb9-ae19-278e92fbe081", + "direction": "outgoing", + "index": 129512, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5cbc298e-0a7b-4eb4-8c2b-2ed0fca6f165", + "direction": "outgoing", + "index": 129513, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7a93fae2-ee9f-4b93-a262-d1310f6ae435", + "direction": "outgoing", + "index": 129514, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3ae2ed9b-ae54-471a-bab6-8070820fa87e", + "direction": "outgoing", + "index": 129515, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.660-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "08f600ee-0785-44a4-a8f2-f5f1b456ee03", + "direction": "outgoing", + "index": 129516, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "e50c7a66-1c2a-4707-9dfa-1228be44de26", + "direction": "outgoing", + "index": 129517, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.681-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7fc2e791-7801-4c57-84fd-9fe7b604df18", + "direction": "outgoing", + "index": 129518, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.693-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5deed0e2-a2c4-4eef-b607-9bf242b4afce", + "direction": "outgoing", + "index": 129519, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.703-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2d80b693-0458-4cce-931d-824fb27de819", + "direction": "outgoing", + "index": 129520, + "result_id": "fc2308b9-1b08-469e-8fdd-1b30ce52eeda", + "status": 200, + "timestamp": "2026-05-22T12:37:27.717-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:27.601-04:00" + }, + { + "id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "created_at": "2026-05-22T12:37:31.737-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4e15f2af-2287-4acc-81be-6e2bb87cda56", + "direction": "outgoing", + "index": 129521, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.746-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "537ad37b-c3e1-4fac-83f4-a758ba33fb42", + "direction": "outgoing", + "index": 129522, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "66783ddd-d05a-4316-9acc-fb132055eaae", + "direction": "outgoing", + "index": 129523, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.789-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9a09d1af-ab8a-489b-bcf7-4dcdeb287653", + "direction": "outgoing", + "index": 129524, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0ce43af6-90a7-431c-82e9-59044fcca840", + "direction": "outgoing", + "index": 129525, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.821-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b6d9d3ba-55bb-47d6-8c95-e98d65681113", + "direction": "outgoing", + "index": 129526, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "5cfb879d-0a27-40b9-9648-922717386c33", + "direction": "outgoing", + "index": 129527, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2af88141-7a80-4ad4-a363-b35e02591779", + "direction": "outgoing", + "index": 129528, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.862-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6dbd70a-54f5-498a-a297-f5ce1fa2a414", + "direction": "outgoing", + "index": 129529, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92f17b57-2b5c-4a46-9b99-afc6261dfc74", + "direction": "outgoing", + "index": 129530, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.887-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ae2a33c8-5817-4b5f-aa2f-471a736df399", + "direction": "outgoing", + "index": 129531, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "e97784c1-10d1-48c3-814d-77df9729d019", + "direction": "outgoing", + "index": 129532, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cd01025d-fddc-4c54-ab0f-bc086d1e1fb9", + "direction": "outgoing", + "index": 129533, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7dd08ce-d8f5-4b01-958d-10a1906976fc", + "direction": "outgoing", + "index": 129534, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.939-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46b102fb-0aa0-4217-b167-e7cd05371e36", + "direction": "outgoing", + "index": 129535, + "result_id": "4506185e-0925-4db2-9ce6-e1d995156abc", + "status": 200, + "timestamp": "2026-05-22T12:37:31.961-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:31.737-04:00" + }, + { + "id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "created_at": "2026-05-22T12:37:35.193-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2b857682-096e-4f57-9626-2f6bdd59301c", + "direction": "outgoing", + "index": 129536, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.196-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85", + "verb": "get" + }, + { + "id": "5612a3ab-f06b-4c05-9529-c78b97cf0037", + "direction": "outgoing", + "index": 129537, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5c7beadb-7f2a-499c-b62b-7041af009a5f", + "direction": "outgoing", + "index": 129538, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.234-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "34b216c5-735d-495a-9538-26b3e1b393c2", + "direction": "outgoing", + "index": 129539, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "64ace62d-f476-402a-a316-58458e9febcf", + "direction": "outgoing", + "index": 129540, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0174b8d1-121c-45ad-94b3-0d4c385a3845\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "95c459e8-88cb-4012-ba5f-ff8bbfe0d7bd", + "direction": "outgoing", + "index": 129541, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.272-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0174b8d1-121c-45ad-94b3-0d4c385a3845\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e84bc50-2974-4088-a1c1-9d5d1d27950e", + "direction": "outgoing", + "index": 129542, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0174b8d1-121c-45ad-94b3-0d4c385a3845\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d480bcd5-2498-4d34-a4eb-200cf2fc5ad0", + "direction": "outgoing", + "index": 129543, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.297-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0174b8d1-121c-45ad-94b3-0d4c385a3845\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "afe0a383-df91-46f0-95f1-779a416ee228", + "direction": "outgoing", + "index": 129544, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.309-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1b1c52dd-65cd-42cc-8385-34136b956d8a", + "direction": "outgoing", + "index": 129545, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58f37244-7bb1-4474-970e-3ddfc1eb0992\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec895e9b-f067-4fb0-a08d-78dbeaaaa9cf", + "direction": "outgoing", + "index": 129546, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.333-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58f37244-7bb1-4474-970e-3ddfc1eb0992\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cf19e76a-86e3-4594-a5cb-f4a4f7b5b40b", + "direction": "outgoing", + "index": 129547, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58f37244-7bb1-4474-970e-3ddfc1eb0992\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3c5636fd-7a9e-48b2-a96c-0d6789dd0826", + "direction": "outgoing", + "index": 129548, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58f37244-7bb1-4474-970e-3ddfc1eb0992\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c2c52524-1c23-4cba-87d9-7617fe7049e9", + "direction": "outgoing", + "index": 129549, + "result_id": "91591d47-a5c0-46cb-bd42-0ac661213868", + "status": 200, + "timestamp": "2026-05-22T12:37:35.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:35.193-04:00" + }, + { + "id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "created_at": "2026-05-22T12:37:36.207-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b5f6543a-670b-4339-b7fa-d33279c56317", + "direction": "outgoing", + "index": 129550, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.215-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85", + "verb": "get" + }, + { + "id": "be66af52-ae70-4300-b52d-ab2e23c18cc7", + "direction": "outgoing", + "index": 129551, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ae1e5305-04e3-40b7-a857-04f6fce7dbb0", + "direction": "outgoing", + "index": 129552, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "38231eb4-c79e-42c3-aa3d-9a45b2fbe6de", + "direction": "outgoing", + "index": 129553, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8dc29f76-21f6-4ecb-8d09-878a5fa7d83f", + "direction": "outgoing", + "index": 129554, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b7511001-d841-4895-974a-fcea2213a40b", + "direction": "outgoing", + "index": 129555, + "result_id": "70d71e81-b643-4264-b1ab-9edb0866bbfe", + "status": 200, + "timestamp": "2026-05-22T12:37:36.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:36.207-04:00" + }, + { + "id": "f6d52979-4f41-48a0-9e64-13f3b401bce6", + "created_at": "2026-05-22T12:37:36.413-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f3ee0caa-ce73-4a1e-9475-2c7295f678fc", + "direction": "outgoing", + "index": 129556, + "result_id": "f6d52979-4f41-48a0-9e64-13f3b401bce6", + "status": 200, + "timestamp": "2026-05-22T12:37:36.416-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:36.413-04:00" + }, + { + "id": "b7d002ee-2e23-4e3a-9fc3-8b41db10a482", + "created_at": "2026-05-22T12:37:36.851-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "39ccf1ba-c0fd-462c-a782-f04bd33c5421", + "direction": "outgoing", + "index": 129557, + "result_id": "b7d002ee-2e23-4e3a-9fc3-8b41db10a482", + "status": 200, + "timestamp": "2026-05-22T12:37:36.894-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=85", + "verb": "get" + }, + { + "id": "5a18c9ae-fa9d-4190-a671-de775115fb89", + "direction": "outgoing", + "index": 129558, + "result_id": "b7d002ee-2e23-4e3a-9fc3-8b41db10a482", + "status": 200, + "timestamp": "2026-05-22T12:37:36.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=355", + "verb": "get" + }, + { + "id": "c0f4c880-343b-439c-9c56-fc5808b68ca9", + "direction": "outgoing", + "index": 129559, + "result_id": "b7d002ee-2e23-4e3a-9fc3-8b41db10a482", + "status": 200, + "timestamp": "2026-05-22T12:37:36.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:36.851-04:00" + }, + { + "id": "1752ceed-7623-4338-993f-9b7ac05fe4ff", + "created_at": "2026-05-22T12:37:37.612-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:37.612-04:00" + }, + { + "id": "f779703d-0c84-4472-9785-9968e27d2bc1", + "created_at": "2026-05-22T12:37:37.627-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:37.627-04:00" + }, + { + "id": "a9e6ab66-e472-4c9a-91db-52c887d6da03", + "created_at": "2026-05-22T12:37:37.635-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus-us_core_v800_observation_pregnancystatus_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:37.635-04:00" + }, + { + "id": "df52a43f-5a52-4008-9a91-30871df3dbba", + "created_at": "2026-05-22T12:37:37.639-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancystatus", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:37.639-04:00" + }, + { + "id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "created_at": "2026-05-22T12:37:38.457-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "de3d2510-0f50-4623-b970-ed1c3bbf38c6", + "direction": "outgoing", + "index": 129560, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.463-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85", + "verb": "get" + }, + { + "id": "aabf1c41-3330-4b20-b9b7-b5779baf6cb0", + "direction": "outgoing", + "index": 129561, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "a4d8aefe-9326-42d1-be7b-23032a97228d", + "direction": "outgoing", + "index": 129562, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.507-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "0e8a95fe-2291-40f5-9837-dff71b36f127", + "direction": "outgoing", + "index": 129563, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85", + "verb": "get" + }, + { + "id": "ce7c7938-d94e-4166-b0fa-ffd231ff3edd", + "direction": "outgoing", + "index": 129564, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355", + "verb": "get" + }, + { + "id": "04b33074-b1ac-4f4b-8fee-8925669b08af", + "direction": "outgoing", + "index": 129565, + "result_id": "ef2d3742-d055-4130-9de0-fdad33a3aaaa", + "status": 200, + "timestamp": "2026-05-22T12:37:38.550-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:38.457-04:00" + }, + { + "id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "created_at": "2026-05-22T12:37:40.179-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b3b21f25-b497-4e05-ba98-ba63f6e93d3e", + "direction": "outgoing", + "index": 129566, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.181-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "56b2fdd2-e9d4-48b9-8233-64d2107f5094", + "direction": "outgoing", + "index": 129567, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9b421730-a649-4ba0-ad5d-a367d87f3cd6", + "direction": "outgoing", + "index": 129568, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.214-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "15918819-02d4-4ad1-a246-bff199239174", + "direction": "outgoing", + "index": 129569, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.226-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3fd9d131-bed8-4093-92ba-cff6b620807f", + "direction": "outgoing", + "index": 129570, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.239-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "200ba970-4cda-432c-83e0-2d7e190c9381", + "direction": "outgoing", + "index": 129571, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "b07a0870-a907-40fd-89d3-5ff133eff3b8", + "direction": "outgoing", + "index": 129572, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a294a844-acbe-432b-afc7-2dc40e52a5b4", + "direction": "outgoing", + "index": 129573, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.279-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93a21549-b1aa-477b-b865-73f2dcaf159d", + "direction": "outgoing", + "index": 129574, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "318dfbb9-8d58-49b7-89e4-0680e5df267c", + "direction": "outgoing", + "index": 129575, + "result_id": "a2678758-0be2-4695-a48a-4b89ea610c01", + "status": 200, + "timestamp": "2026-05-22T12:37:40.302-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:40.179-04:00" + }, + { + "id": "5b177c55-5062-457a-a9b2-6014913507a8", + "created_at": "2026-05-22T12:37:41.916-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b8541236-6ce1-4867-b4e3-48726089e168", + "direction": "outgoing", + "index": 129576, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:41.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "323f1767-3068-4b77-a2ee-6bba55f3a202", + "direction": "outgoing", + "index": 129577, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:41.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3c5e8b64-ee38-4b06-92ab-ce30da742ef0", + "direction": "outgoing", + "index": 129578, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:41.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d742b93-4c9b-4d3b-a562-8dec7a209a4c", + "direction": "outgoing", + "index": 129579, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:41.983-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1ecae09f-8c26-4905-9e3b-9d3145f568b6", + "direction": "outgoing", + "index": 129580, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:41.994-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "67674805-5fec-4636-8b28-d2acca82a72d", + "direction": "outgoing", + "index": 129581, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:42.005-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "0395d90c-9727-4bd6-94e1-c4940de5e6d2", + "direction": "outgoing", + "index": 129582, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:42.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a4106241-da6b-4be0-a024-63d9640073a4", + "direction": "outgoing", + "index": 129583, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:42.030-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8325c9fd-f3c0-4750-a9a2-32d022231cc3", + "direction": "outgoing", + "index": 129584, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:42.042-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "20ed52aa-ddbf-4ed1-9830-f893e7293d0d", + "direction": "outgoing", + "index": 129585, + "result_id": "5b177c55-5062-457a-a9b2-6014913507a8", + "status": 200, + "timestamp": "2026-05-22T12:37:42.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:41.916-04:00" + }, + { + "id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "created_at": "2026-05-22T12:37:44.401-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f47c1386-5cb5-43c4-9e35-f4002415a8c7", + "direction": "outgoing", + "index": 129586, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "1a20bdfd-2889-4151-8fb1-dd2b32b0c0e4", + "direction": "outgoing", + "index": 129587, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "37b55b61-ff3a-40a9-b7c9-ca519dd1f951", + "direction": "outgoing", + "index": 129588, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "10825bd1-6af9-48ec-8e28-05a2a0dac564", + "direction": "outgoing", + "index": 129589, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "90e90f40-40f9-43b6-b04c-fb64b30917e0", + "direction": "outgoing", + "index": 129590, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.477-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8a782518-2336-4a44-9d2f-4f6aaba4a1e3", + "direction": "outgoing", + "index": 129591, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.490-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "42befdef-6b41-42a6-8a2e-1a3f72ed6b2a", + "direction": "outgoing", + "index": 129592, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.500-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d556899d-710d-4d40-97ef-9067e056c941", + "direction": "outgoing", + "index": 129593, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.510-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "61f7372b-5e7b-4f05-8f4b-5f0b13f358fc", + "direction": "outgoing", + "index": 129594, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "069d748f-22d1-4a74-aaef-85d76a723cff", + "direction": "outgoing", + "index": 129595, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.534-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e671c7b-9792-4880-b198-b79db09f97c6", + "direction": "outgoing", + "index": 129596, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "60ebbad3-e98c-4acb-a7c0-01efa30c8060", + "direction": "outgoing", + "index": 129597, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7ca402c0-fc2a-4cb9-b9d3-891b28c4ff4a", + "direction": "outgoing", + "index": 129598, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.563-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1a020d49-d5b2-424c-9a1f-22f0b7c270ee", + "direction": "outgoing", + "index": 129599, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.577-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2a2cfe4e-ab2e-413a-9e03-1ecdec0e9414", + "direction": "outgoing", + "index": 129600, + "result_id": "e0352deb-155e-442d-8960-0e47bcd2d120", + "status": 200, + "timestamp": "2026-05-22T12:37:44.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:44.401-04:00" + }, + { + "id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "created_at": "2026-05-22T12:37:47.725-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "313d534c-fe53-42d4-a38b-eb8ea47fb18a", + "direction": "outgoing", + "index": 129601, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.734-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85", + "verb": "get" + }, + { + "id": "fbb1916f-15b0-444c-ab4a-a1ab001138ad", + "direction": "outgoing", + "index": 129602, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.759-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5f95716d-fa8e-4b17-8854-e76f61264c11", + "direction": "outgoing", + "index": 129603, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d002ca30-8abd-436c-a126-84cdf5cc6316", + "direction": "outgoing", + "index": 129604, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5c1b9d7d-5eeb-4a20-900f-3ef73d7e2af3", + "direction": "outgoing", + "index": 129605, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.803-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=874cac80-41d0-4348-8985-a605eb0cc8a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3509147a-3f6a-4213-a98c-aed147e48eb0", + "direction": "outgoing", + "index": 129606, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.815-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=874cac80-41d0-4348-8985-a605eb0cc8a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1258e776-d796-4214-a592-8c563360bb15", + "direction": "outgoing", + "index": 129607, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.826-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=874cac80-41d0-4348-8985-a605eb0cc8a8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d62c167d-c0ac-48d3-9634-176397f19428", + "direction": "outgoing", + "index": 129608, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=874cac80-41d0-4348-8985-a605eb0cc8a8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93e3e315-e134-4779-8455-acc98547bae0", + "direction": "outgoing", + "index": 129609, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.849-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c8b9ca17-b236-4e2c-a9ec-c025f7131114", + "direction": "outgoing", + "index": 129610, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.858-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f5cf62c-a271-4583-ac9c-adbbc60049c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a42ae6d9-e042-4ad7-a450-dacbaf03f036", + "direction": "outgoing", + "index": 129611, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f5cf62c-a271-4583-ac9c-adbbc60049c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bab932a9-5ad9-4971-bcbf-847b9604e0e1", + "direction": "outgoing", + "index": 129612, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.880-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f5cf62c-a271-4583-ac9c-adbbc60049c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e882074-1ce8-4c2d-899d-6f872c193622", + "direction": "outgoing", + "index": 129613, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.895-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9f5cf62c-a271-4583-ac9c-adbbc60049c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cefdfd97-8a9f-403d-992c-ba38271a9582", + "direction": "outgoing", + "index": 129614, + "result_id": "65a3c74c-f4e3-4dad-ab1b-56ff74b10bc3", + "status": 200, + "timestamp": "2026-05-22T12:37:47.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:47.725-04:00" + }, + { + "id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "created_at": "2026-05-22T12:37:48.712-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4a03224f-3d45-45c1-b753-e8480a8bf990", + "direction": "outgoing", + "index": 129615, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.719-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85", + "verb": "get" + }, + { + "id": "b9ef1b87-3be7-443b-875f-d258dc4d1d8f", + "direction": "outgoing", + "index": 129616, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9fbbb56f-151e-45ad-ae75-b6c2adec079e", + "direction": "outgoing", + "index": 129617, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bc83e5f3-b46c-47a1-a056-2b5a6b35641e", + "direction": "outgoing", + "index": 129618, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6c1ef402-a192-4cc3-befc-1350612ca030", + "direction": "outgoing", + "index": 129619, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.791-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1ef99860-5827-461b-abef-22f1d46e8b7f", + "direction": "outgoing", + "index": 129620, + "result_id": "24e536ab-a0f4-4c5a-a3e1-6b1eb7f6f8dd", + "status": 200, + "timestamp": "2026-05-22T12:37:48.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:48.712-04:00" + }, + { + "id": "d1062b5a-463e-4e1c-b4ed-54121c0223b5", + "created_at": "2026-05-22T12:37:48.918-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d4d63cd3-fe43-4f43-bfe1-cd836fea3c30", + "direction": "outgoing", + "index": 129621, + "result_id": "d1062b5a-463e-4e1c-b4ed-54121c0223b5", + "status": 200, + "timestamp": "2026-05-22T12:37:48.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:48.918-04:00" + }, + { + "id": "b5118959-e75b-44ba-8b8b-13682126e674", + "created_at": "2026-05-22T12:37:49.351-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6f9b8fa4-f8b4-4dc2-b6de-06442cf2d2c9", + "direction": "outgoing", + "index": 129622, + "result_id": "b5118959-e75b-44ba-8b8b-13682126e674", + "status": 200, + "timestamp": "2026-05-22T12:37:49.353-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=85", + "verb": "get" + }, + { + "id": "a31e4d43-a237-4973-b9bd-9e63b1e562b1", + "direction": "outgoing", + "index": 129623, + "result_id": "b5118959-e75b-44ba-8b8b-13682126e674", + "status": 200, + "timestamp": "2026-05-22T12:37:49.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=355", + "verb": "get" + }, + { + "id": "0af9ed60-bdb8-4957-b565-08dacaf7c589", + "direction": "outgoing", + "index": 129624, + "result_id": "b5118959-e75b-44ba-8b8b-13682126e674", + "status": 200, + "timestamp": "2026-05-22T12:37:49.378-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:49.351-04:00" + }, + { + "id": "cd1ac283-748c-47e7-990b-352b06881dab", + "created_at": "2026-05-22T12:37:49.918-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:49.918-04:00" + }, + { + "id": "a217f91f-8906-4a00-b7b0-2968b4a2b803", + "created_at": "2026-05-22T12:37:49.934-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:49.934-04:00" + }, + { + "id": "9b0f134b-7d5c-4d25-bc2a-a9d6e8258f78", + "created_at": "2026-05-22T12:37:49.943-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent-us_core_v800_observation_pregnancyintent_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:49.943-04:00" + }, + { + "id": "2130d30e-c3ab-419d-a32f-d9c8db1418a4", + "created_at": "2026-05-22T12:37:49.948-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_pregnancyintent", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:49.948-04:00" + }, + { + "id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "created_at": "2026-05-22T12:37:50.834-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "aa997bf2-97b4-4184-9b9e-98521ef00f71", + "direction": "outgoing", + "index": 129625, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.840-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85", + "verb": "get" + }, + { + "id": "d987f308-9df2-4dd8-a9a9-03f15f03289d", + "direction": "outgoing", + "index": 129626, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "1a9f4b04-390c-439b-b57f-2d82fa0e7511", + "direction": "outgoing", + "index": 129627, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "d6ced0b6-c2eb-4743-8dc2-830618c9cf71", + "direction": "outgoing", + "index": 129628, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.906-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85", + "verb": "get" + }, + { + "id": "93eca3a0-00d0-427d-a2ca-9bc17f71ee19", + "direction": "outgoing", + "index": 129629, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.916-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355", + "verb": "get" + }, + { + "id": "5d710c27-2fb0-4825-a030-43e4435314ea", + "direction": "outgoing", + "index": 129630, + "result_id": "fb5783aa-2b10-471e-b10f-9887497fe3cb", + "status": 200, + "timestamp": "2026-05-22T12:37:50.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:50.834-04:00" + }, + { + "id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "created_at": "2026-05-22T12:37:52.499-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "38827e13-47c3-4e64-851a-7f6589af4b0d", + "direction": "outgoing", + "index": 129631, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "39ef5a66-27b9-4805-9a63-1ea35e4bea77", + "direction": "outgoing", + "index": 129632, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.513-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d2f58e02-8391-4990-be4b-af90a5474f04", + "direction": "outgoing", + "index": 129633, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.522-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2d7302b5-fee1-470f-9c5a-7820f02ccaf1", + "direction": "outgoing", + "index": 129634, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f5fc830-c809-4cac-990b-67728467775b", + "direction": "outgoing", + "index": 129635, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.546-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=86fcefca-c950-4725-811b-8764a5293eee\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "00ffa64f-a6a0-4561-b690-1b74d853b6da", + "direction": "outgoing", + "index": 129636, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "b7dba1be-82ab-42f5-86e7-de1788ab2ff8", + "direction": "outgoing", + "index": 129637, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a681e2c5-6512-4e3d-9b99-ce20c2d42498", + "direction": "outgoing", + "index": 129638, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8cd608d8-120b-4def-8cdc-008c30034e2a", + "direction": "outgoing", + "index": 129639, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.596-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "03c5a360-7f02-42b8-a1a3-2ba462eea63c", + "direction": "outgoing", + "index": 129640, + "result_id": "62be8792-4eaf-4405-8f19-083ceb717aea", + "status": 200, + "timestamp": "2026-05-22T12:37:52.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=50430622-f2f0-4bef-9a8c-47f11c1fa047\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:52.499-04:00" + }, + { + "id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "created_at": "2026-05-22T12:37:54.287-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ecdcf7a8-d371-4fc5-8a52-32dac4b4e8e3", + "direction": "outgoing", + "index": 129641, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "a1cfbdad-c5c6-4b51-9cd0-3e8b590664fc", + "direction": "outgoing", + "index": 129642, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.317-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f3007e0-fc27-4820-9712-8f49859f5bd7", + "direction": "outgoing", + "index": 129643, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.331-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8a7ee139-2687-4bd7-82db-945f146fb76a", + "direction": "outgoing", + "index": 129644, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.349-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5632391c-8b50-4329-9999-8572c5a02ed9", + "direction": "outgoing", + "index": 129645, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "20d43ad0-e94b-4f6a-8796-1dd7c369533f", + "direction": "outgoing", + "index": 129646, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "69c2fc1d-ab52-43d7-afd6-1d974fb41daa", + "direction": "outgoing", + "index": 129647, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "54004c0e-4e2b-48ef-82b3-99834833900f", + "direction": "outgoing", + "index": 129648, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.397-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9b926e8-9cdb-40a4-953a-c8ed6cc29779", + "direction": "outgoing", + "index": 129649, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a671f433-47a2-4dde-8f2d-1384fd16c741", + "direction": "outgoing", + "index": 129650, + "result_id": "0da5c41c-8717-4f8d-a7c5-2db717cad810", + "status": 200, + "timestamp": "2026-05-22T12:37:54.421-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=615afc03-d5b4-4307-bb80-ee706cbccbf2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:54.287-04:00" + }, + { + "id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "created_at": "2026-05-22T12:37:56.678-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3f59e007-5789-4186-919e-4d96d75f750d", + "direction": "outgoing", + "index": 129651, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "fa70579c-d9ae-4428-98be-c181f1c765b3", + "direction": "outgoing", + "index": 129652, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a521e896-e9d6-4a0c-b557-b0af7f0fd261", + "direction": "outgoing", + "index": 129653, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "50e1f0c5-19cf-4c57-bccb-edec2b1de145", + "direction": "outgoing", + "index": 129654, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.742-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69571b6d-7281-4fc5-80e6-ed0faa33b8c5", + "direction": "outgoing", + "index": 129655, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.755-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=01b1c333-b852-4342-a734-c5e1fe7dd32d\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2fdc93c9-627f-4cc7-8a0c-28992f5f0361", + "direction": "outgoing", + "index": 129656, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.766-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "d5a78d43-3ba9-490b-b9d8-0b073eefb5d0", + "direction": "outgoing", + "index": 129657, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "066f655f-92a0-4ea1-aefc-63cbe5a368d6", + "direction": "outgoing", + "index": 129658, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.793-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6a6326a3-ae46-4225-8203-607d6679cbd4", + "direction": "outgoing", + "index": 129659, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3b73afaa-3298-42d8-8a54-a221b7397107", + "direction": "outgoing", + "index": 129660, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.821-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=594bd89f-9ab8-4887-9ae9-d2e4163f0ebe\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ec11b469-ce89-449f-aed8-20df116c3a90", + "direction": "outgoing", + "index": 129661, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.832-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "cc1b5433-8249-41d7-8e4d-7c27b0ed7f8f", + "direction": "outgoing", + "index": 129662, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.846-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "29fec86a-99e5-4ac9-9c47-04e92d83bde6", + "direction": "outgoing", + "index": 129663, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.859-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0f374cf-3c78-4d4e-943b-27d07d44669a", + "direction": "outgoing", + "index": 129664, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.872-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "57343fdd-d3ac-444e-8be8-7d7f5bec6e2d", + "direction": "outgoing", + "index": 129665, + "result_id": "d5c6a95e-cfca-41b8-bd31-e20b7ef86239", + "status": 200, + "timestamp": "2026-05-22T12:37:56.889-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbefca8e-ff8e-42e9-b418-dd97eb4702fc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:56.678-04:00" + }, + { + "id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "created_at": "2026-05-22T12:37:59.847-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c09293c8-3e83-45e3-b9f8-2f3aca85011c", + "direction": "outgoing", + "index": 129666, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "91484ac0-2f7e-4ace-a6bc-fe87a12c770a", + "direction": "outgoing", + "index": 129667, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "beb50f44-174a-48ca-bfcc-f0113d43850d", + "direction": "outgoing", + "index": 129668, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.891-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5bc4c56a-2f5e-4696-8641-f127d8f68f05", + "direction": "outgoing", + "index": 129669, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.904-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "fae43d26-5426-4e02-92bb-22ddd67ff8a1", + "direction": "outgoing", + "index": 129670, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.915-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2b5efaa0-4d44-4ffa-8f1f-14f3cecc1d4a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0f4b9b4-588c-4052-bd7a-4ec9bd965d58", + "direction": "outgoing", + "index": 129671, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.926-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2b5efaa0-4d44-4ffa-8f1f-14f3cecc1d4a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3700950a-46a1-45dc-aeb5-4af4f7ea96e3", + "direction": "outgoing", + "index": 129672, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2b5efaa0-4d44-4ffa-8f1f-14f3cecc1d4a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b3ede389-d65e-49da-b637-4bf215e43a40", + "direction": "outgoing", + "index": 129673, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "cd929372-79bb-4c5a-bfce-6e5713d54f7d", + "direction": "outgoing", + "index": 129674, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.957-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ba2205f-671c-4e20-a994-3885dafd923a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "78962a76-1e60-419e-b27b-f04d834ee1db", + "direction": "outgoing", + "index": 129675, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.970-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ba2205f-671c-4e20-a994-3885dafd923a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "09de9b9e-41bb-421e-84a3-675cb5e70870", + "direction": "outgoing", + "index": 129676, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.982-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7ba2205f-671c-4e20-a994-3885dafd923a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2e81d5f8-91c9-4622-974a-5f56f70d67b3", + "direction": "outgoing", + "index": 129677, + "result_id": "120bdab6-a67b-40f0-983e-71f0bdd452d8", + "status": 200, + "timestamp": "2026-05-22T12:37:59.992-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:37:59.847-04:00" + }, + { + "id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "created_at": "2026-05-22T12:38:00.790-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a94d207a-aa8e-4ac6-a521-c52ad0c8b379", + "direction": "outgoing", + "index": 129678, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.794-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5f17bbf0-b510-4352-962a-9d38f2d827c1", + "direction": "outgoing", + "index": 129679, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a7e8524d-a9a7-4d82-835b-f743865281f6", + "direction": "outgoing", + "index": 129680, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.834-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8dff766f-480e-4f0c-9e9c-5cf248672029", + "direction": "outgoing", + "index": 129681, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ed17398c-43a9-488a-a27b-49481da41eb6", + "direction": "outgoing", + "index": 129682, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0f276f8f-f7fd-4871-a6fa-fb27baf47188", + "direction": "outgoing", + "index": 129683, + "result_id": "d3aaddf2-630a-4b2d-9710-ac070c9f88a7", + "status": 200, + "timestamp": "2026-05-22T12:38:00.872-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:00.790-04:00" + }, + { + "id": "979b8a6d-4d8c-4627-b48a-ee08d881b3d9", + "created_at": "2026-05-22T12:38:01.441-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0c645d88-5b75-418b-898c-46f73a07e45e", + "direction": "outgoing", + "index": 129684, + "result_id": "979b8a6d-4d8c-4627-b48a-ee08d881b3d9", + "status": 200, + "timestamp": "2026-05-22T12:38:01.449-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/1c54dcaf-6414-4365-95f9-685b5e405e46", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:01.441-04:00" + }, + { + "id": "cb551087-9990-455e-95f2-9170983d9506", + "created_at": "2026-05-22T12:38:01.860-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ea52dac6-07ef-486e-a004-4efcba5688bb", + "direction": "outgoing", + "index": 129685, + "result_id": "cb551087-9990-455e-95f2-9170983d9506", + "status": 200, + "timestamp": "2026-05-22T12:38:01.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=85", + "verb": "get" + }, + { + "id": "cbd8176b-ad2a-41c3-bdae-ac9f22c9d09e", + "direction": "outgoing", + "index": 129686, + "result_id": "cb551087-9990-455e-95f2-9170983d9506", + "status": 200, + "timestamp": "2026-05-22T12:38:01.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=355", + "verb": "get" + }, + { + "id": "97d65938-9d5c-4e38-90a7-feae9e92f55d", + "direction": "outgoing", + "index": 129687, + "result_id": "cb551087-9990-455e-95f2-9170983d9506", + "status": 200, + "timestamp": "2026-05-22T12:38:01.890-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:01.860-04:00" + }, + { + "id": "0e417fa4-5276-49b9-85db-bf9e9ebcc336", + "created_at": "2026-05-22T12:38:08.074-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:08.074-04:00" + }, + { + "id": "ba1e9ea6-5af5-4207-a469-96ff589abd84", + "created_at": "2026-05-22T12:38:08.095-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:08.095-04:00" + }, + { + "id": "d84b9b88-e66c-4667-9207-c0d073f246d7", + "created_at": "2026-05-22T12:38:08.098-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation-us_core_v800_observation_occupation_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:08.098-04:00" + }, + { + "id": "95654380-a77a-4afc-9fef-7efee0cf9df9", + "created_at": "2026-05-22T12:38:08.101-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_occupation", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:08.101-04:00" + }, + { + "id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "created_at": "2026-05-22T12:38:08.870-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c8261c78-4d7d-4b56-a6da-cf29b333b0ea", + "direction": "outgoing", + "index": 129688, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "d31030eb-717f-418a-ab7c-e8a95cff3d9f", + "direction": "outgoing", + "index": 129689, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.903-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "da1e2435-c2df-4f40-89cf-16e5dcf897df", + "direction": "outgoing", + "index": 129690, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "919e30c6-11d7-43e9-b4e7-b8dd368ff08a", + "direction": "outgoing", + "index": 129691, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "0c76751f-49ba-4350-bc4f-65609096a561", + "direction": "outgoing", + "index": 129692, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "852e2a45-4406-4080-acae-3d5b8c143273", + "direction": "outgoing", + "index": 129693, + "result_id": "b8e919cd-f242-4bf8-8ddf-4db5adec659c", + "status": 200, + "timestamp": "2026-05-22T12:38:08.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:08.870-04:00" + }, + { + "id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "created_at": "2026-05-22T12:38:11.027-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "abc51784-09ab-49ec-8e45-a112342f5790", + "direction": "outgoing", + "index": 129694, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.033-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "944bf9a2-82be-4640-a9b6-09a0c897b8e8", + "direction": "outgoing", + "index": 129695, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.058-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b77c7cec-84a4-40de-8112-cb881288ff84\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "60b1bd6e-6e54-4996-a38f-a184dd08aa66", + "direction": "outgoing", + "index": 129696, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b77c7cec-84a4-40de-8112-cb881288ff84\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2e877e62-69d7-4ae2-906a-4914ec33d36e", + "direction": "outgoing", + "index": 129697, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.091-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "79cbae25-9619-4fe8-b23c-5747a4e07864", + "direction": "outgoing", + "index": 129698, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=26e89022-eb84-49aa-b74e-92d42167250f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "773c758e-aada-4453-a2c2-9da0f9f0bfe0", + "direction": "outgoing", + "index": 129699, + "result_id": "1196ef2c-ade8-4c2f-bf5b-caed726a7029", + "status": 200, + "timestamp": "2026-05-22T12:38:11.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=26e89022-eb84-49aa-b74e-92d42167250f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:11.027-04:00" + }, + { + "id": "c672a815-788a-4673-ab85-51df20f5f02e", + "created_at": "2026-05-22T12:38:13.318-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a89dbe50-f27c-456a-af00-3f10c9dfa13e", + "direction": "outgoing", + "index": 129700, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.322-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "5e486402-2bb3-431c-81d1-0494582d35a1", + "direction": "outgoing", + "index": 129701, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc9e43d5-2e4d-4934-a723-baa01ed07a0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a206c2ec-7fc4-4c16-9a7a-e58a7a6417fd", + "direction": "outgoing", + "index": 129702, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.365-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc9e43d5-2e4d-4934-a723-baa01ed07a0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2982240c-c569-478d-9e12-970e28d31b9b", + "direction": "outgoing", + "index": 129703, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "8786e417-0a43-48a6-b1d2-3f2c887e1f49", + "direction": "outgoing", + "index": 129704, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=56a43fce-bec4-4a41-b914-90ded73b797f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1d632e3f-c6af-4e8d-abd4-2ec15cd3c11c", + "direction": "outgoing", + "index": 129705, + "result_id": "c672a815-788a-4673-ab85-51df20f5f02e", + "status": 200, + "timestamp": "2026-05-22T12:38:13.410-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=56a43fce-bec4-4a41-b914-90ded73b797f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:13.318-04:00" + }, + { + "id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "created_at": "2026-05-22T12:38:16.601-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "21258d8f-e73d-4227-8d5d-615038314965", + "direction": "outgoing", + "index": 129706, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "a8f26c07-578e-42aa-9cde-00e1aac31474", + "direction": "outgoing", + "index": 129707, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.627-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23c42b52-8f0f-46a9-9a02-654344c0f7f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d3d76cbe-485f-4185-8d05-3b786f83df26", + "direction": "outgoing", + "index": 129708, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.645-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23c42b52-8f0f-46a9-9a02-654344c0f7f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cf03ec66-7b3d-4c6b-9569-414bd1c18274", + "direction": "outgoing", + "index": 129709, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.657-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "002821fb-c941-41f4-be89-abfd80ddac3c", + "direction": "outgoing", + "index": 129710, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.667-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=623c004e-0a1f-4e73-918a-d885ecf884c1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b842b16c-daf0-4deb-b59d-48f41a098c31", + "direction": "outgoing", + "index": 129711, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.680-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=623c004e-0a1f-4e73-918a-d885ecf884c1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "040765ee-850d-4502-881d-e9b67666a479", + "direction": "outgoing", + "index": 129712, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.694-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "a538dd62-b01f-41d7-b778-ba39b96f8de3", + "direction": "outgoing", + "index": 129713, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c032f93a-2ea0-4532-ad62-a5fc202dadba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "792f9676-406e-47e6-917d-26d1a4934615", + "direction": "outgoing", + "index": 129714, + "result_id": "ed67a1e1-9e7b-4fa0-b836-a52d502ed6cc", + "status": 200, + "timestamp": "2026-05-22T12:38:16.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c032f93a-2ea0-4532-ad62-a5fc202dadba\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:16.601-04:00" + }, + { + "id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "created_at": "2026-05-22T12:38:20.248-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d9f02f6-5433-46f9-8b0e-01ee9e4eaea6", + "direction": "outgoing", + "index": 129715, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "48d35506-1c26-45c1-a28e-955713e476e8", + "direction": "outgoing", + "index": 129716, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.278-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "10b6cd4b-35f4-4700-9088-d39373a7c239", + "direction": "outgoing", + "index": 129717, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=84275cbd-23e1-4845-bb7d-491c122730c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "881230ee-296f-4f28-ba67-e7805a9c4fdf", + "direction": "outgoing", + "index": 129718, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.309-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d7e9f7c1-69cb-4580-94e9-0b1aea72c899", + "direction": "outgoing", + "index": 129719, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=15300fa0-cfe9-41e0-b9dc-f1a426f2d6f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5e3933a-d9db-4356-b652-eea782ae6528", + "direction": "outgoing", + "index": 129720, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.334-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4207b9a9-7822-4774-8e9d-1eb396822f43", + "direction": "outgoing", + "index": 129721, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0482c68a-d2c3-458f-9bad-dfc561d98367\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4a471e6d-5b46-4185-a946-a5cfa5feae01", + "direction": "outgoing", + "index": 129722, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.356-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "31210c8a-0048-4a49-ab48-d1a2278c264a", + "direction": "outgoing", + "index": 129723, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9dac5999-9119-4ea0-84d1-eb1d6a6e7036\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d9e0d0b0-ed58-49ca-864c-f7357bed1c01", + "direction": "outgoing", + "index": 129724, + "result_id": "d0a2ff04-0367-4056-b218-ba974f4e2ce3", + "status": 200, + "timestamp": "2026-05-22T12:38:20.382-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:20.248-04:00" + }, + { + "id": "8024e427-46ba-481d-bfb0-489c81993d81", + "created_at": "2026-05-22T12:38:21.196-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a8956437-27b2-4342-b712-d6a165d5c076", + "direction": "outgoing", + "index": 129725, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.201-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "265a6c69-d5e2-4593-9eea-38af25fc24a0", + "direction": "outgoing", + "index": 129726, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.225-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3b7421c9-e89a-407a-ac20-19b8d8b345db", + "direction": "outgoing", + "index": 129727, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2a15ea68-1046-4bd1-8766-9f97949f47c9", + "direction": "outgoing", + "index": 129728, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.255-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "28b88b37-5fb7-4e57-940d-0c493c860304", + "direction": "outgoing", + "index": 129729, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.269-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2a437ad6-4b51-456c-8395-3925f684e889", + "direction": "outgoing", + "index": 129730, + "result_id": "8024e427-46ba-481d-bfb0-489c81993d81", + "status": 200, + "timestamp": "2026-05-22T12:38:21.280-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:21.196-04:00" + }, + { + "id": "0528c2e1-0de7-4834-8c58-220f3ccb4083", + "created_at": "2026-05-22T12:38:21.397-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e3ade016-eabd-4537-9c3d-e2e1895700dc", + "direction": "outgoing", + "index": 129731, + "result_id": "0528c2e1-0de7-4834-8c58-220f3ccb4083", + "status": 200, + "timestamp": "2026-05-22T12:38:21.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:21.397-04:00" + }, + { + "id": "7647bfe2-1ed0-460d-82ae-a2a3f2c1f299", + "created_at": "2026-05-22T12:38:21.832-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "80e9e2ea-edc8-41a2-adb7-18c818aacc37", + "direction": "outgoing", + "index": 129732, + "result_id": "7647bfe2-1ed0-460d-82ae-a2a3f2c1f299", + "status": 200, + "timestamp": "2026-05-22T12:38:21.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85", + "verb": "get" + }, + { + "id": "9d4ed772-3235-4df3-8f3f-2be92bf378c6", + "direction": "outgoing", + "index": 129733, + "result_id": "7647bfe2-1ed0-460d-82ae-a2a3f2c1f299", + "status": 200, + "timestamp": "2026-05-22T12:38:21.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355", + "verb": "get" + }, + { + "id": "a0aad5d3-11aa-469a-8bc5-cea99d895f9a", + "direction": "outgoing", + "index": 129734, + "result_id": "7647bfe2-1ed0-460d-82ae-a2a3f2c1f299", + "status": 200, + "timestamp": "2026-05-22T12:38:21.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:21.832-04:00" + }, + { + "id": "359b0896-5c66-46ba-9fd5-219a489f5af6", + "created_at": "2026-05-22T12:38:22.618-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:22.618-04:00" + }, + { + "id": "3b5dfdd6-3ace-4312-bbb1-d12c412921b6", + "created_at": "2026-05-22T12:38:22.646-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:22.646-04:00" + }, + { + "id": "f9297d34-aeec-49ce-b423-5d9ba5bb69be", + "created_at": "2026-05-22T12:38:22.650-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate-us_core_v800_respiratory_rate_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:22.650-04:00" + }, + { + "id": "b5e12a7e-ce91-4403-b6f9-905252fc488d", + "created_at": "2026-05-22T12:38:22.651-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_respiratory_rate", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:22.651-04:00" + }, + { + "id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "created_at": "2026-05-22T12:38:27.958-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e7cbd1c2-a549-438a-87ae-5a6f02d91551", + "direction": "outgoing", + "index": 129735, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:27.962-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "aa30b93a-8191-448e-a90d-e39f7e5c98c1", + "direction": "outgoing", + "index": 129736, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:27.993-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "db7b42d4-1ed5-41aa-a19a-69ae5acbd7c9", + "direction": "outgoing", + "index": 129737, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.009-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "c3bc2be9-30e0-41a0-8c22-747575e99664", + "direction": "outgoing", + "index": 129738, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.026-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "0e476a10-41e6-41ea-8982-c13b5b01effa", + "direction": "outgoing", + "index": 129739, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85", + "verb": "get" + }, + { + "id": "ab6f69e1-47eb-497a-9f91-b5e18f68f283", + "direction": "outgoing", + "index": 129740, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.049-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85", + "verb": "get" + }, + { + "id": "e043bb29-9556-4fd7-a33f-459a3411d0d0", + "direction": "outgoing", + "index": 129741, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85", + "verb": "get" + }, + { + "id": "8a63d750-c11d-4783-ba66-baae9d71a077", + "direction": "outgoing", + "index": 129742, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85", + "verb": "get" + }, + { + "id": "d6e590e8-308a-4c4b-b6c8-863037afc492", + "direction": "outgoing", + "index": 129743, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.088-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "4faee81a-3e5f-4281-be66-5c5a2985f3ca", + "direction": "outgoing", + "index": 129744, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.100-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a95f9c6c-e376-4463-9fe5-b8458d6efaab", + "direction": "outgoing", + "index": 129745, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f534e175-c015-4971-a8f7-de29e356a515", + "direction": "outgoing", + "index": 129746, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "433aa0a2-1008-4407-9386-7c15d4977bcf", + "direction": "outgoing", + "index": 129747, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.142-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ec0a0471-4115-4281-8351-5c51f9ef8938\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a4d04cce-8129-4917-b906-c7098c20eef4", + "direction": "outgoing", + "index": 129748, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.154-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355", + "verb": "get" + }, + { + "id": "3cdcbb8e-015a-4cf0-88b1-3dd0bd1d79d9", + "direction": "outgoing", + "index": 129749, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.166-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355", + "verb": "get" + }, + { + "id": "d6cfe2c8-a9b3-4f00-a38d-ec9545ad14dc", + "direction": "outgoing", + "index": 129750, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355", + "verb": "get" + }, + { + "id": "d2a3caf9-2f11-4444-9aa2-f4139236f248", + "direction": "outgoing", + "index": 129751, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.188-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355", + "verb": "get" + }, + { + "id": "7d3721e9-0204-4d7f-a15e-3a3a3f13ea3d", + "direction": "outgoing", + "index": 129752, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.200-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355", + "verb": "get" + }, + { + "id": "3e214720-9f4a-413f-88d3-87e31e0d74d4", + "direction": "outgoing", + "index": 129753, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.212-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "084828de-fc10-495e-b60c-5bc210df70bf", + "direction": "outgoing", + "index": 129754, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d24efd86-6cff-4296-9bcb-2e3fca1264e9", + "direction": "outgoing", + "index": 129755, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8e2bf6a8-21e5-496b-a353-472b42a95aa3", + "direction": "outgoing", + "index": 129756, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3dc3ef53-496f-4bbc-94b0-cb0994ec3da0", + "direction": "outgoing", + "index": 129757, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.292-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f453e6da-d948-40c2-8c40-513a93f2a34d", + "direction": "outgoing", + "index": 129758, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.311-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bea7cfd5-3710-4d95-a352-1dc60fb96699", + "direction": "outgoing", + "index": 129759, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5e01b619-a3d0-4f28-a373-d914e29d646b", + "direction": "outgoing", + "index": 129760, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d57082e0-582f-4802-b5b0-68f07a21543d", + "direction": "outgoing", + "index": 129761, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4ba92d4c-63b4-4ec0-8227-cc15331af4b1", + "direction": "outgoing", + "index": 129762, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=eb01c481-671d-4ab7-bdbf-2c7d95218c4f\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6f77a6d3-c758-4e47-a2e5-70ec9330a0a5", + "direction": "outgoing", + "index": 129763, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=908", + "verb": "get" + }, + { + "id": "9d397510-f8af-4be4-bdec-f71da5e3bb21", + "direction": "outgoing", + "index": 129764, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.435-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=908", + "verb": "get" + }, + { + "id": "6eb5b9f3-141f-4c84-a917-77e561e7de31", + "direction": "outgoing", + "index": 129765, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=908", + "verb": "get" + }, + { + "id": "397404c1-30ee-4939-a20c-a5cfc86f679f", + "direction": "outgoing", + "index": 129766, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=908", + "verb": "get" + }, + { + "id": "15caa5e7-eb91-4f84-a828-e1de89c91bfb", + "direction": "outgoing", + "index": 129767, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.475-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=908", + "verb": "get" + }, + { + "id": "2e7a6c88-843b-48ed-be25-a9367b98f24b", + "direction": "outgoing", + "index": 129768, + "result_id": "4da89d54-bb41-4c83-89fa-c828b75c268b", + "status": 200, + "timestamp": "2026-05-22T12:38:28.488-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:27.958-04:00" + }, + { + "id": "97037646-58ef-4ca0-95b8-555d3653f600", + "created_at": "2026-05-22T12:38:30.871-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "51870439-a68c-4b0f-8e72-29d906511023", + "direction": "outgoing", + "index": 129769, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=sdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "1c47c382-bc53-4a42-be49-fb6ed0e22eec", + "direction": "outgoing", + "index": 129770, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.892-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "17fc6cb6-fe06-4314-a9a0-9e8c87898b3a", + "direction": "outgoing", + "index": 129771, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.904-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "3dd3f0ba-f76d-4f96-aa24-6b2475524558", + "direction": "outgoing", + "index": 129772, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.918-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "806fccb2-5424-44a0-a0b5-618bbed80202", + "direction": "outgoing", + "index": 129773, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.930-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "16f42269-d913-4f36-b9d6-0dd1cb3586aa", + "direction": "outgoing", + "index": 129774, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "561531fe-4bcb-49bb-bd0f-9743f178d761", + "direction": "outgoing", + "index": 129775, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.953-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "827048ec-283d-4578-ac2f-270365b4ca1c", + "direction": "outgoing", + "index": 129776, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.964-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "767c0c0e-e3bc-40fc-a8d8-6fde09d8204c", + "direction": "outgoing", + "index": 129777, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.975-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b54871a3-7de8-473c-9639-5ffc1ed9267a", + "direction": "outgoing", + "index": 129778, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:30.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8fc4bc39-187d-483b-b16f-f34468c9afa6", + "direction": "outgoing", + "index": 129779, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:31.002-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e7a3be9d-dbde-494b-983a-7b8ea0d454e0", + "direction": "outgoing", + "index": 129780, + "result_id": "97037646-58ef-4ca0-95b8-555d3653f600", + "status": 200, + "timestamp": "2026-05-22T12:38:31.014-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8eaaa588-b3fb-4fdc-a99a-ac6d5961655f\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:30.871-04:00" + }, + { + "id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "created_at": "2026-05-22T12:38:33.287-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "df69ec1e-97e4-4eb2-b76a-19f37955224c", + "direction": "outgoing", + "index": 129781, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "9313ab44-b938-4497-b00a-10329dc7e5b9", + "direction": "outgoing", + "index": 129782, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.305-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "b8b6d970-8783-45db-a516-34f19912273a", + "direction": "outgoing", + "index": 129783, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "1196db73-c46d-4e83-b2c9-0d9ead7b9cb9", + "direction": "outgoing", + "index": 129784, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "29b0c5ee-a342-4c85-bd7c-7af5708c1cbb", + "direction": "outgoing", + "index": 129785, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.340-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "858b4aba-75f9-4c31-b2d5-53b3f87b0cd9", + "direction": "outgoing", + "index": 129786, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a1f4bd39-4b4b-4767-a142-07fcb859421c", + "direction": "outgoing", + "index": 129787, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8b1f625d-9325-4bc7-bb74-731dc326e832", + "direction": "outgoing", + "index": 129788, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3c4f3f8-755c-497e-bed5-8353bcb3923f", + "direction": "outgoing", + "index": 129789, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.383-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0836366c-1f73-4ce6-8a86-d0255f53016a", + "direction": "outgoing", + "index": 129790, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.394-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f2db8030-414e-49ff-a5c6-4f4c000f2772", + "direction": "outgoing", + "index": 129791, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.405-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fafdeb76-0131-4566-a0ce-433fcdc9d2fd", + "direction": "outgoing", + "index": 129792, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.416-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d271f2c2-4e76-48fe-ad8d-065b67753574\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dbf3e19a-36a8-4d25-8d19-ffe0ca0135e3", + "direction": "outgoing", + "index": 129793, + "result_id": "bad7584d-ebd5-4d5c-9e1b-949054caf7bb", + "status": 200, + "timestamp": "2026-05-22T12:38:33.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:33.287-04:00" + }, + { + "id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "created_at": "2026-05-22T12:38:34.275-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4d1a620b-b25c-4bd2-9b3b-6d91cda72022", + "direction": "outgoing", + "index": 129794, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.289-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0e9edf71-b9b6-46a3-9337-22f365f30e38", + "direction": "outgoing", + "index": 129795, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4bfdbb7c-318c-4603-8a74-7ebc06faf34e", + "direction": "outgoing", + "index": 129796, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.319-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "85a9fe63-025e-49dd-b6d5-2b0ef4d8dbee", + "direction": "outgoing", + "index": 129797, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9a807f1a-36d3-4336-b422-905ebfa6c597", + "direction": "outgoing", + "index": 129798, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b8b6dce2-fcaf-4347-b520-d08702d3a1a0", + "direction": "outgoing", + "index": 129799, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ede6e7bb-4238-4b18-a57c-c8b96846e22c", + "direction": "outgoing", + "index": 129800, + "result_id": "886d54e9-1e92-4e28-92b1-636b7eb39fd7", + "status": 200, + "timestamp": "2026-05-22T12:38:34.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:34.275-04:00" + }, + { + "id": "0421d8b7-7a74-4263-abba-aed3d9efa02c", + "created_at": "2026-05-22T12:38:34.731-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3f3a0280-a270-4ce5-a1ad-a8456a96e949", + "direction": "outgoing", + "index": 129801, + "result_id": "0421d8b7-7a74-4263-abba-aed3d9efa02c", + "status": 200, + "timestamp": "2026-05-22T12:38:34.733-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "f33a6ba1-3939-4716-a4ee-9149dbf2ba5d", + "direction": "outgoing", + "index": 129802, + "result_id": "0421d8b7-7a74-4263-abba-aed3d9efa02c", + "status": 200, + "timestamp": "2026-05-22T12:38:34.751-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "fbb9982e-2c2b-4eb3-904c-a77c415ec915", + "direction": "outgoing", + "index": 129803, + "result_id": "0421d8b7-7a74-4263-abba-aed3d9efa02c", + "status": 200, + "timestamp": "2026-05-22T12:38:34.765-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:34.731-04:00" + }, + { + "id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "created_at": "2026-05-22T12:38:35.628-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0cee5b99-02d0-4b5f-ba54-51c4c2a13369", + "direction": "outgoing", + "index": 129804, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bafd9ac9-8f6a-4175-8280-0f2190805ba8", + "direction": "outgoing", + "index": 129805, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.645-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6fa090c9-f043-4519-94d0-5aed2f0feb00", + "direction": "outgoing", + "index": 129806, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "12cf829a-cfe4-4b92-97d0-9b87c3ad5ee7", + "direction": "outgoing", + "index": 129807, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "867b2349-d12c-4d7b-a83f-9334e368d28f", + "direction": "outgoing", + "index": 129808, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.681-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7c200709-bf5f-4111-bfe7-831cce41e77a", + "direction": "outgoing", + "index": 129809, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "3c4f2589-6f9d-469e-92c7-ff244b16c453", + "direction": "outgoing", + "index": 129810, + "result_id": "9079d23d-203f-494a-a706-69a8e396e3f7", + "status": 200, + "timestamp": "2026-05-22T12:38:35.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:35.628-04:00" + }, + { + "id": "0fe1dc12-9dfe-4b9b-ac79-7607a5f84e59", + "created_at": "2026-05-22T12:38:35.822-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "37e7b239-914f-47ed-a4ec-7c75ac79707f", + "direction": "outgoing", + "index": 129811, + "result_id": "0fe1dc12-9dfe-4b9b-ac79-7607a5f84e59", + "status": 200, + "timestamp": "2026-05-22T12:38:35.825-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:35.822-04:00" + }, + { + "id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "created_at": "2026-05-22T12:38:43.081-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "45456863-81a0-4897-b9ec-f730c0fe78ea", + "direction": "outgoing", + "index": 129812, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "abea0c30-57c0-4628-95e5-b7a0d3e6ebc0", + "direction": "outgoing", + "index": 129813, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.104-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=85", + "verb": "get" + }, + { + "id": "9035c77c-b830-4022-912c-64f888c7f020", + "direction": "outgoing", + "index": 129814, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=85", + "verb": "get" + }, + { + "id": "91a74a67-df62-4d60-9343-e2429008197b", + "direction": "outgoing", + "index": 129815, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=85", + "verb": "get" + }, + { + "id": "6185ed16-6c02-4b95-9d39-7efcb44560c4", + "direction": "outgoing", + "index": 129816, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.146-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85", + "verb": "get" + }, + { + "id": "9ba4ab5b-84b2-46ea-b3b1-8e1fcb19a0ed", + "direction": "outgoing", + "index": 129817, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.157-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "b3342ba8-87be-47e6-a91d-c084165a91f9", + "direction": "outgoing", + "index": 129818, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.167-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c48d9a8d-f2c6-4a26-af85-3589b245b179\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a2f6aa4a-1726-4760-a7ef-aaafd5dd33cb", + "direction": "outgoing", + "index": 129819, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c48d9a8d-f2c6-4a26-af85-3589b245b179\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5c750db5-17af-4d22-b0bc-8ba277089062", + "direction": "outgoing", + "index": 129820, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.193-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c48d9a8d-f2c6-4a26-af85-3589b245b179\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0ee65d1c-12bc-4ce2-86ab-1aa4564afbe6", + "direction": "outgoing", + "index": 129821, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.205-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c48d9a8d-f2c6-4a26-af85-3589b245b179\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "43154435-f3e2-42e6-a658-e74c4dc0b9a5", + "direction": "outgoing", + "index": 129822, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.216-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=355", + "verb": "get" + }, + { + "id": "12f365b0-f4f6-486b-adf6-462b7d49df2a", + "direction": "outgoing", + "index": 129823, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=355", + "verb": "get" + }, + { + "id": "94b55e74-1b24-44d6-a230-d410e8b2a710", + "direction": "outgoing", + "index": 129824, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=355", + "verb": "get" + }, + { + "id": "a671959e-e628-4e61-a8ff-94fbf91f6a24", + "direction": "outgoing", + "index": 129825, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=355", + "verb": "get" + }, + { + "id": "afee8bed-ae5d-498c-8cd6-f9ea8da6526a", + "direction": "outgoing", + "index": 129826, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355", + "verb": "get" + }, + { + "id": "e22a96a5-6e7d-47ee-b63c-d9f927a594c1", + "direction": "outgoing", + "index": 129827, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "6f3844dd-f19f-408b-806c-3dcce54c78ef", + "direction": "outgoing", + "index": 129828, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "311c6803-b483-417b-b1e2-bab0e4272079", + "direction": "outgoing", + "index": 129829, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.300-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "230256f8-eafe-49a5-b7d3-b216bce823f7", + "direction": "outgoing", + "index": 129830, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.312-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "93d4b472-1efe-41a0-8d69-ff13eade01c2", + "direction": "outgoing", + "index": 129831, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "280e7ac5-29f6-4443-9e48-d97a1dcb3dfd", + "direction": "outgoing", + "index": 129832, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4ffc9cb5-bfea-435e-a0b2-d99f8868a592", + "direction": "outgoing", + "index": 129833, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bb37feba-2fd6-49b2-8fec-28485e65472f", + "direction": "outgoing", + "index": 129834, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.363-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6527d413-bbd9-4667-8b5f-a56202652f14", + "direction": "outgoing", + "index": 129835, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.374-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f94d15b-6711-4a90-94f7-9faeac232ec9", + "direction": "outgoing", + "index": 129836, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d5edf8cb-b288-4418-87b0-2ff1c887debf\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "486d91ce-3e98-49d6-8b01-a48e902566f6", + "direction": "outgoing", + "index": 129837, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=908", + "verb": "get" + }, + { + "id": "c8884ee3-eaa3-436b-8c8b-a33d0871b4f2", + "direction": "outgoing", + "index": 129838, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=908", + "verb": "get" + }, + { + "id": "882e2e19-f47d-4742-af8f-f400ff02d8a2", + "direction": "outgoing", + "index": 129839, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.420-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=908", + "verb": "get" + }, + { + "id": "430db7e6-9445-44e0-89ab-9a20d46efea3", + "direction": "outgoing", + "index": 129840, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.430-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=908", + "verb": "get" + }, + { + "id": "97ccbebe-8581-4e4c-ab91-efef6fea2b79", + "direction": "outgoing", + "index": 129841, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=908", + "verb": "get" + }, + { + "id": "268b31f5-795f-492d-867e-e31605511208", + "direction": "outgoing", + "index": 129842, + "result_id": "e5ea2468-f9dc-4d4b-a839-8bf0d18f2a8f", + "status": 200, + "timestamp": "2026-05-22T12:38:43.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:43.081-04:00" + }, + { + "id": "b85d72a8-6932-4f4b-bb50-42afb12b2ce0", + "created_at": "2026-05-22T12:38:57.122-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#11332-4)", + "type": "info" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#93038-8)", + "type": "info" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#401201003)", + "type": "info" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#449868002)", + "type": "warning" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#741062008)", + "type": "info" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#63586-2)", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.performer[0]: A Reference without an actual reference or identifier should have a display", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:57.122-04:00" + }, + { + "id": "54df4fec-4c57-4699-8d59-9b28df87e367", + "created_at": "2026-05-22T12:38:57.617-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:57.617-04:00" + }, + { + "id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "created_at": "2026-05-22T12:38:58.770-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bf2ea7b3-0171-46cf-8bb1-5eb64051f82e", + "direction": "outgoing", + "index": 129843, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.779-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "dbccb685-f108-4442-ad16-661fb426ed89", + "direction": "outgoing", + "index": 129844, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "615161f0-7bd5-4da1-afc8-ae4d400ca37a", + "direction": "outgoing", + "index": 129845, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.827-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a3d89c4e-5b82-4a60-926a-fc42193cda0f", + "direction": "outgoing", + "index": 129846, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.842-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "66f03d1b-191e-448b-b767-4ab693dd3032", + "direction": "outgoing", + "index": 129847, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "9773af6e-de56-4512-8306-5cdaca49352a", + "direction": "outgoing", + "index": 129848, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.871-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a8dea1dd-4eeb-4034-9de6-07747a6a5b3c", + "direction": "outgoing", + "index": 129849, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "b812e90e-6f35-4fbd-be54-c35899b91f1c", + "direction": "outgoing", + "index": 129850, + "result_id": "6d878d51-1b79-43f1-bc8f-bc6d18c67c54", + "status": 200, + "timestamp": "2026-05-22T12:38:58.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation-us_core_v800_simple_observation_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:58.770-04:00" + }, + { + "id": "94296132-af9b-44f3-bea6-f2f32aa12c39", + "created_at": "2026-05-22T12:38:58.913-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_simple_observation", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:58.913-04:00" + }, + { + "id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "created_at": "2026-05-22T12:38:59.678-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0301a8e4-a538-4ec1-9894-86fb16caf98c", + "direction": "outgoing", + "index": 129851, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=85", + "verb": "get" + }, + { + "id": "0908d46a-4297-485b-9356-6b396cf22fd8", + "direction": "outgoing", + "index": 129852, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "6513ac72-3c58-4e09-9ded-898cc5b693f2", + "direction": "outgoing", + "index": 129853, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "0d059dc2-fdc4-43f9-892a-6f3d9a751e5b", + "direction": "outgoing", + "index": 129854, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C75773-2\u0026patient=85", + "verb": "get" + }, + { + "id": "f999e563-fc4e-437b-b387-baf8e21a1fd1", + "direction": "outgoing", + "index": 129855, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=355", + "verb": "get" + }, + { + "id": "2ef70260-0e1a-4772-be33-f4bfdb3f6e34", + "direction": "outgoing", + "index": 129856, + "result_id": "ad31d545-c300-42ec-9234-fa8ee1db7322", + "status": 200, + "timestamp": "2026-05-22T12:38:59.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:38:59.678-04:00" + }, + { + "id": "aa62a178-e9a5-4d4b-b295-ab9dab296864", + "created_at": "2026-05-22T12:39:00.012-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "8111ba9c-e3a8-41e7-a58d-12ff7384d9e0", + "direction": "outgoing", + "index": 129857, + "result_id": "aa62a178-e9a5-4d4b-b295-ab9dab296864", + "status": 200, + "timestamp": "2026-05-22T12:39:00.017-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=treatment-intervention-preference\u0026patient=85", + "verb": "get" + }, + { + "id": "9ab0e9b2-869c-45c0-b7ed-4e03906b893d", + "direction": "outgoing", + "index": 129858, + "result_id": "aa62a178-e9a5-4d4b-b295-ab9dab296864", + "status": 200, + "timestamp": "2026-05-22T12:39:00.034-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:00.012-04:00" + }, + { + "id": "44e6ec5d-c656-46c0-8fbf-5118005a0eef", + "created_at": "2026-05-22T12:39:00.279-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e1e690fa-d7b8-4808-8a06-6baa6929b359", + "direction": "outgoing", + "index": 129859, + "result_id": "44e6ec5d-c656-46c0-8fbf-5118005a0eef", + "status": 200, + "timestamp": "2026-05-22T12:39:00.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85", + "verb": "get" + }, + { + "id": "f49f3cbe-9579-429d-94d9-24726c8b9730", + "direction": "outgoing", + "index": 129860, + "result_id": "44e6ec5d-c656-46c0-8fbf-5118005a0eef", + "status": 200, + "timestamp": "2026-05-22T12:39:00.320-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:00.279-04:00" + }, + { + "id": "4a7c8dff-6c79-47ac-abc1-ecdd24a860f7", + "created_at": "2026-05-22T12:39:00.705-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e174fc49-a3d8-47aa-8f30-92736161b308", + "direction": "outgoing", + "index": 129861, + "result_id": "4a7c8dff-6c79-47ac-abc1-ecdd24a860f7", + "status": 200, + "timestamp": "2026-05-22T12:39:00.710-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "620a6b9a-4aa5-4af2-8320-f610afc41df5", + "direction": "outgoing", + "index": 129862, + "result_id": "4a7c8dff-6c79-47ac-abc1-ecdd24a860f7", + "status": 200, + "timestamp": "2026-05-22T12:39:00.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "f1a5e0f1-cd32-4b72-958f-cc9567714ac1", + "direction": "outgoing", + "index": 129863, + "result_id": "4a7c8dff-6c79-47ac-abc1-ecdd24a860f7", + "status": 200, + "timestamp": "2026-05-22T12:39:00.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:00.705-04:00" + }, + { + "id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "created_at": "2026-05-22T12:39:01.554-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5fba0fb9-61c6-417c-bb44-1695cdd04489", + "direction": "outgoing", + "index": 129864, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "01549c32-cd94-4e36-8923-a3ea66bc8d32", + "direction": "outgoing", + "index": 129865, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.576-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7a801732-dc41-42e4-bec3-345188a9e699", + "direction": "outgoing", + "index": 129866, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d2a8a230-50dd-4c5e-9e6e-811bb0abed17", + "direction": "outgoing", + "index": 129867, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.604-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c17d5f00-6cc8-4378-82e9-b3cdf74dddc2", + "direction": "outgoing", + "index": 129868, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=treatment-intervention-preference\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d32f7a52-674f-44b4-b8ce-3664bf3b42d9", + "direction": "outgoing", + "index": 129869, + "result_id": "6db8b395-e8b9-4dcc-bc28-84106948c9c0", + "status": 200, + "timestamp": "2026-05-22T12:39:01.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ctreatment-intervention-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:01.554-04:00" + }, + { + "id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "created_at": "2026-05-22T12:39:02.412-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d2774643-1157-4e41-a53b-9f665f43cecd", + "direction": "outgoing", + "index": 129870, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.416-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "68084c39-0ac6-4142-b0e9-e1774e57d847", + "direction": "outgoing", + "index": 129871, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.434-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "8a30d027-4792-41df-8676-166321b67495", + "direction": "outgoing", + "index": 129872, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "942c740a-3fe5-4bed-b8f7-34bcf05f37bb", + "direction": "outgoing", + "index": 129873, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f93dca4b-137d-4867-a7e8-e5a58bc26ea9", + "direction": "outgoing", + "index": 129874, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.477-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=75773-2\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "93183520-bca0-4c89-adc3-61f3c2142ef0", + "direction": "outgoing", + "index": 129875, + "result_id": "89e3fd9c-841d-4e5c-8a86-e331b1e7cc6f", + "status": 200, + "timestamp": "2026-05-22T12:39:02.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C75773-2\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:02.412-04:00" + }, + { + "id": "ddddae60-2870-4f62-b8c2-a4fd10d2d71b", + "created_at": "2026-05-22T12:39:02.603-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5bf552fa-f3a1-4a96-b617-c88569d30c7e", + "direction": "outgoing", + "index": 129876, + "result_id": "ddddae60-2870-4f62-b8c2-a4fd10d2d71b", + "status": 200, + "timestamp": "2026-05-22T12:39:02.606-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:02.603-04:00" + }, + { + "id": "3a732021-e465-4e66-8d42-b17ee99a7126", + "created_at": "2026-05-22T12:39:03.031-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9a768d13-902e-4d86-8694-efab36dee660", + "direction": "outgoing", + "index": 129877, + "result_id": "3a732021-e465-4e66-8d42-b17ee99a7126", + "status": 200, + "timestamp": "2026-05-22T12:39:03.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=85", + "verb": "get" + }, + { + "id": "6e262cdb-1fa9-4056-a8d3-6c7b8272c1d4", + "direction": "outgoing", + "index": 129878, + "result_id": "3a732021-e465-4e66-8d42-b17ee99a7126", + "status": 200, + "timestamp": "2026-05-22T12:39:03.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=355", + "verb": "get" + }, + { + "id": "85f690fe-d49a-4331-a706-094d20758930", + "direction": "outgoing", + "index": 129879, + "result_id": "3a732021-e465-4e66-8d42-b17ee99a7126", + "status": 200, + "timestamp": "2026-05-22T12:39:03.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=75773-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:03.031-04:00" + }, + { + "id": "95031157-9e3f-4bea-9f33-78c3020ab9a1", + "created_at": "2026-05-22T12:39:03.388-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference|7.0.0'", + "type": "info" + }, + { + "message": "Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5687cc9b-0c0f-48c5-ae05-e4502b90bec5: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference|7.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference|7.0.0'", + "type": "info" + }, + { + "message": "Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b4b9d25b-27b9-454d-b6f0-b308a38a2939: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference|7.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:03.388-04:00" + }, + { + "id": "e253e81b-5d56-4a25-b07e-218480105d9d", + "created_at": "2026-05-22T12:39:03.411-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:03.411-04:00" + }, + { + "id": "f9ad6322-2ba0-4e70-8edd-a75ed9d1ee6b", + "created_at": "2026-05-22T12:39:03.421-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference-us_core_v800_treatment_intervention_preference_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:03.421-04:00" + }, + { + "id": "e18d738f-dc9f-4039-bdc8-ca6fb8db95e1", + "created_at": "2026-05-22T12:39:03.422-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_treatment_intervention_preference", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:03.422-04:00" + }, + { + "id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "created_at": "2026-05-22T12:39:04.247-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "895bce79-cd41-403a-ab3c-fb63d726282b", + "direction": "outgoing", + "index": 129880, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=85", + "verb": "get" + }, + { + "id": "1e44e11d-4f36-4e5a-90c3-61b0548038fa", + "direction": "outgoing", + "index": 129881, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.276-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "7af3cb5a-7ad4-44c5-8006-471944fee427", + "direction": "outgoing", + "index": 129882, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.290-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "eaa1fe99-410a-4af0-b9de-726b6641b3f7", + "direction": "outgoing", + "index": 129883, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C95541-9\u0026patient=85", + "verb": "get" + }, + { + "id": "f0fb8bfd-0660-4f6f-84cd-75f6c512736b", + "direction": "outgoing", + "index": 129884, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.315-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=355", + "verb": "get" + }, + { + "id": "63eb36a0-d050-4faf-a85a-94fb02b3d3c6", + "direction": "outgoing", + "index": 129885, + "result_id": "5d8f7e0b-29bf-4ec7-a214-0d6a76c5dc91", + "status": 200, + "timestamp": "2026-05-22T12:39:04.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:04.247-04:00" + }, + { + "id": "8aa44b35-84d3-4e0e-b94b-4f6e6bbb00ec", + "created_at": "2026-05-22T12:39:04.553-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c40695db-7ca3-4fec-96f6-8a317c00225d", + "direction": "outgoing", + "index": 129886, + "result_id": "8aa44b35-84d3-4e0e-b94b-4f6e6bbb00ec", + "status": 200, + "timestamp": "2026-05-22T12:39:04.555-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=care-experience-preference\u0026patient=85", + "verb": "get" + }, + { + "id": "08db889f-f5fb-4926-a837-7848ac76c24b", + "direction": "outgoing", + "index": 129887, + "result_id": "8aa44b35-84d3-4e0e-b94b-4f6e6bbb00ec", + "status": 200, + "timestamp": "2026-05-22T12:39:04.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:04.553-04:00" + }, + { + "id": "068b5340-f71e-41f1-a057-c17795c23ad0", + "created_at": "2026-05-22T12:39:04.807-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6f030066-d940-4c19-944d-80e7609584f4", + "direction": "outgoing", + "index": 129888, + "result_id": "068b5340-f71e-41f1-a057-c17795c23ad0", + "status": 200, + "timestamp": "2026-05-22T12:39:04.811-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85", + "verb": "get" + }, + { + "id": "2f56c19a-6749-4c64-8931-465026c1af14", + "direction": "outgoing", + "index": 129889, + "result_id": "068b5340-f71e-41f1-a057-c17795c23ad0", + "status": 200, + "timestamp": "2026-05-22T12:39:04.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:04.807-04:00" + }, + { + "id": "c3b4e1de-84fd-48d9-9a4a-42652b07f024", + "created_at": "2026-05-22T12:39:05.216-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6f8cf1d6-97ba-4e1f-bb24-5f862c1f6602", + "direction": "outgoing", + "index": 129890, + "result_id": "c3b4e1de-84fd-48d9-9a4a-42652b07f024", + "status": 200, + "timestamp": "2026-05-22T12:39:05.222-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "384d48a6-5436-4b77-8bde-69257d0c5216", + "direction": "outgoing", + "index": 129891, + "result_id": "c3b4e1de-84fd-48d9-9a4a-42652b07f024", + "status": 200, + "timestamp": "2026-05-22T12:39:05.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "a53323f7-5dce-4cba-a00f-6637228d960d", + "direction": "outgoing", + "index": 129892, + "result_id": "c3b4e1de-84fd-48d9-9a4a-42652b07f024", + "status": 200, + "timestamp": "2026-05-22T12:39:05.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:05.216-04:00" + }, + { + "id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "created_at": "2026-05-22T12:39:06.060-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "766deb90-1586-4785-99b8-f15552aaa0cd", + "direction": "outgoing", + "index": 129893, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f43fe0be-c7f0-4a3d-8b00-042f2c6d3d34", + "direction": "outgoing", + "index": 129894, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "454d3bb5-2504-4923-af00-8e91bfa0a1dd", + "direction": "outgoing", + "index": 129895, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.099-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f5dc280d-77e9-46ca-a768-97a216fcead8", + "direction": "outgoing", + "index": 129896, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.113-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0b3856dd-5c33-4899-b972-295cad204dfb", + "direction": "outgoing", + "index": 129897, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=care-experience-preference\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e0e8af07-d9cc-4f01-b56e-a21d2e3064c7", + "direction": "outgoing", + "index": 129898, + "result_id": "bacd8874-7057-4bdd-b6b2-255c1d6f29e4", + "status": 200, + "timestamp": "2026-05-22T12:39:06.138-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category%7Ccare-experience-preference\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:06.060-04:00" + }, + { + "id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "created_at": "2026-05-22T12:39:06.896-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cc853711-62ad-447c-a732-63a71f0a64d9", + "direction": "outgoing", + "index": 129899, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.900-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "dd67e71e-b5a6-4704-ac73-566bc2592003", + "direction": "outgoing", + "index": 129900, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.919-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1a33c644-9c7b-442d-9615-8d4d97553ca1", + "direction": "outgoing", + "index": 129901, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.938-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=ge2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1a7adc12-5664-4c17-a343-40e458c468c0", + "direction": "outgoing", + "index": 129902, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=lt2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "98ef72ce-8429-44fe-965a-1351c9b2ca67", + "direction": "outgoing", + "index": 129903, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=95541-9\u0026date=le2023-08-31T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e83641ae-f3f3-4424-81e8-0e37bf61427e", + "direction": "outgoing", + "index": 129904, + "result_id": "15ae223f-0425-47f3-b0c5-7eb558dd7ebc", + "status": 200, + "timestamp": "2026-05-22T12:39:06.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C95541-9\u0026date=gt2023-08-29T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:06.896-04:00" + }, + { + "id": "a2e94abc-f561-42f5-9eea-28d8783e47b8", + "created_at": "2026-05-22T12:39:07.097-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dd9f5ae5-da17-4fdd-b14a-f47d3b2a5560", + "direction": "outgoing", + "index": 129905, + "result_id": "a2e94abc-f561-42f5-9eea-28d8783e47b8", + "status": 200, + "timestamp": "2026-05-22T12:39:07.100-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.097-04:00" + }, + { + "id": "8a28eadb-b9f3-425c-93c0-e7c4ea1ab543", + "created_at": "2026-05-22T12:39:07.548-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e06be755-c033-430a-bde2-a77f407e3e16", + "direction": "outgoing", + "index": 129906, + "result_id": "8a28eadb-b9f3-425c-93c0-e7c4ea1ab543", + "status": 200, + "timestamp": "2026-05-22T12:39:07.550-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=85", + "verb": "get" + }, + { + "id": "24184f30-f4c3-4ed4-a0a9-4451497f3fda", + "direction": "outgoing", + "index": 129907, + "result_id": "8a28eadb-b9f3-425c-93c0-e7c4ea1ab543", + "status": 200, + "timestamp": "2026-05-22T12:39:07.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=355", + "verb": "get" + }, + { + "id": "eff68755-e253-46a2-a9fd-6123db31a3e0", + "direction": "outgoing", + "index": 129908, + "result_id": "8a28eadb-b9f3-425c-93c0-e7c4ea1ab543", + "status": 200, + "timestamp": "2026-05-22T12:39:07.592-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=95541-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.548-04:00" + }, + { + "id": "c7cf322b-c4f9-48aa-8419-b4d6f6a44913", + "created_at": "2026-05-22T12:39:07.880-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference|7.0.0'", + "type": "info" + }, + { + "message": "Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f63b93a1-3c04-4da6-a94f-ab7f18942c13: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference|7.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dcad6bff-1963-44e4-a6b8-56733b086eec: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.880-04:00" + }, + { + "id": "fc50b5d6-875f-494f-b7e3-2f831b5f4360", + "created_at": "2026-05-22T12:39:07.888-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.888-04:00" + }, + { + "id": "837d8580-3b2e-4660-b446-a756096cbde7", + "created_at": "2026-05-22T12:39:07.890-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference-us_core_v800_care_experience_preference_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.890-04:00" + }, + { + "id": "eaf0f5c1-7c48-4595-b400-0ab5dad4edc4", + "created_at": "2026-05-22T12:39:07.891-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_care_experience_preference", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:07.891-04:00" + }, + { + "id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "created_at": "2026-05-22T12:39:08.657-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d3c54986-fb31-48ac-a8bf-c059c2369300", + "direction": "outgoing", + "index": 129909, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.664-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "5485229b-790b-497c-b791-c9e614e07f1e", + "direction": "outgoing", + "index": 129910, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "4bd97b8c-f7ec-4b70-81a9-b38f93968c81", + "direction": "outgoing", + "index": 129911, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "14e5bbb6-6b70-41f2-8337-7eba49cb3afa", + "direction": "outgoing", + "index": 129912, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "ef8de5b0-7606-43e7-bd75-40cf7f1dda06", + "direction": "outgoing", + "index": 129913, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "62cd18c1-d331-4eee-9a53-e5a7c43194f8", + "direction": "outgoing", + "index": 129914, + "result_id": "60d50c25-d0d7-4554-89ad-a48f30e60832", + "status": 200, + "timestamp": "2026-05-22T12:39:08.750-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:08.657-04:00" + }, + { + "id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "created_at": "2026-05-22T12:39:09.695-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e118a14b-7ba1-4eaa-bc9b-2ea406efa9d0", + "direction": "outgoing", + "index": 129915, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "7b7e4b9c-b615-4b56-8180-2fd89ca3a0fa", + "direction": "outgoing", + "index": 129916, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b77c7cec-84a4-40de-8112-cb881288ff84\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "52bc934b-0830-4748-b7b0-85401bd49535", + "direction": "outgoing", + "index": 129917, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.742-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b77c7cec-84a4-40de-8112-cb881288ff84\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e6136b2f-0cb6-45b2-8a50-a3b5fe7a10dd", + "direction": "outgoing", + "index": 129918, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.756-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e455c30a-a4ad-417c-9fb3-8cc098ae777f", + "direction": "outgoing", + "index": 129919, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=26e89022-eb84-49aa-b74e-92d42167250f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "05a18985-3e9e-4bc6-8811-081823e44daa", + "direction": "outgoing", + "index": 129920, + "result_id": "9172a0f5-02fd-4022-9c62-084c7338c95a", + "status": 200, + "timestamp": "2026-05-22T12:39:09.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=26e89022-eb84-49aa-b74e-92d42167250f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:09.695-04:00" + }, + { + "id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "created_at": "2026-05-22T12:39:10.704-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "72fbe126-7e28-4701-992c-9882dce4e80e", + "direction": "outgoing", + "index": 129921, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.709-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "7ea10e3d-5627-47e2-b86d-46a3a6a2b668", + "direction": "outgoing", + "index": 129922, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc9e43d5-2e4d-4934-a723-baa01ed07a0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ffd60efb-1577-4cfe-b25f-d03b62c818ce", + "direction": "outgoing", + "index": 129923, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc9e43d5-2e4d-4934-a723-baa01ed07a0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c40d58cf-6709-41f1-b3dd-722e227bcc73", + "direction": "outgoing", + "index": 129924, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.779-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "efbaf844-bda6-499a-ab55-7ed517045c30", + "direction": "outgoing", + "index": 129925, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=56a43fce-bec4-4a41-b914-90ded73b797f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1fa3c957-2047-41f9-a4d1-bc0d3fb77ff9", + "direction": "outgoing", + "index": 129926, + "result_id": "6989a0ba-3709-4ad0-a995-54eb39055f50", + "status": 200, + "timestamp": "2026-05-22T12:39:10.855-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=56a43fce-bec4-4a41-b914-90ded73b797f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:10.704-04:00" + }, + { + "id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "created_at": "2026-05-22T12:39:12.322-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1ef29b2b-6c45-4bf8-a520-08b5ceacc4ab", + "direction": "outgoing", + "index": 129927, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "a2c5aa81-5820-4fa8-83c0-249e4a9b66e1", + "direction": "outgoing", + "index": 129928, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.351-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23c42b52-8f0f-46a9-9a02-654344c0f7f3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5e8a98a1-8847-46d9-b452-43b411c9e5eb", + "direction": "outgoing", + "index": 129929, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=23c42b52-8f0f-46a9-9a02-654344c0f7f3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a7a87591-c667-429d-bd46-d385fdf30e04", + "direction": "outgoing", + "index": 129930, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "43e91a13-c1db-4372-9a5c-d756399624cf", + "direction": "outgoing", + "index": 129931, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=623c004e-0a1f-4e73-918a-d885ecf884c1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d2e5ed3-56f5-4156-8b49-76813bb14d3a", + "direction": "outgoing", + "index": 129932, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.408-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=623c004e-0a1f-4e73-918a-d885ecf884c1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c91f484f-8c6c-4f45-9540-eaba3d28e199", + "direction": "outgoing", + "index": 129933, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "47634c66-0cfe-495f-bf6c-cf675cbf58b4", + "direction": "outgoing", + "index": 129934, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.429-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c032f93a-2ea0-4532-ad62-a5fc202dadba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "dcf9f895-f3c3-4eca-b233-f8478275ea87", + "direction": "outgoing", + "index": 129935, + "result_id": "6bf8abe8-01f1-41ab-b65b-547a5e5fca42", + "status": 200, + "timestamp": "2026-05-22T12:39:12.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c032f93a-2ea0-4532-ad62-a5fc202dadba\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:12.322-04:00" + }, + { + "id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "created_at": "2026-05-22T12:39:15.069-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0b12b77e-fd3b-4fd6-8c69-558aba6b3aa3", + "direction": "outgoing", + "index": 129936, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.075-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9cfe07ac-7c5c-408f-8777-2bcbdf241e3b", + "direction": "outgoing", + "index": 129937, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.100-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6bcab82c-6b13-490d-b80d-3140a5eede1c", + "direction": "outgoing", + "index": 129938, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.115-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4c1a6138-2fb5-4da7-ad3b-2685f036823a", + "direction": "outgoing", + "index": 129939, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.127-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9795a443-66f4-4bf6-8f2b-6afdd62545ab", + "direction": "outgoing", + "index": 129940, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.139-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=832bc7aa-0b3c-422b-9e6a-6793b90d00a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0bdaa49d-d303-4aee-97d8-7a8170615360", + "direction": "outgoing", + "index": 129941, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.152-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=832bc7aa-0b3c-422b-9e6a-6793b90d00a8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5d0db63e-04fe-424b-ab4e-d2fc6927432f", + "direction": "outgoing", + "index": 129942, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.163-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3453aa27-2d99-4f00-83e7-929aab537115", + "direction": "outgoing", + "index": 129943, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e3d8adfa-b993-4f23-ac6e-c506f4e3be4e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "67542437-a6d8-4174-a3d9-a5459f28ed8a", + "direction": "outgoing", + "index": 129944, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e3d8adfa-b993-4f23-ac6e-c506f4e3be4e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0914af49-492a-4f58-a25f-01bbf88cdbcd", + "direction": "outgoing", + "index": 129945, + "result_id": "6c639fe1-3f4b-4088-99dc-bb3d273ef8de", + "status": 200, + "timestamp": "2026-05-22T12:39:15.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:15.069-04:00" + }, + { + "id": "79e08b4b-2961-44ac-896f-f061e1602268", + "created_at": "2026-05-22T12:39:16.001-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f5ae2970-114e-4379-8348-9c70a0f09c54", + "direction": "outgoing", + "index": 129946, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.010-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a1e83fa1-004e-44c5-81f0-83e539504f93", + "direction": "outgoing", + "index": 129947, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2467883d-bdae-46b9-ad1a-b2176a1c1617", + "direction": "outgoing", + "index": 129948, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.052-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "220cfe5c-e185-41ef-86af-1489a0f4b053", + "direction": "outgoing", + "index": 129949, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "bc7ab826-3885-41e2-8a64-64ba2470f7f9", + "direction": "outgoing", + "index": 129950, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "76889e46-44e7-41fe-9da2-741b8c0730e0", + "direction": "outgoing", + "index": 129951, + "result_id": "79e08b4b-2961-44ac-896f-f061e1602268", + "status": 200, + "timestamp": "2026-05-22T12:39:16.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:16.001-04:00" + }, + { + "id": "169c4cfb-1e7b-4d1c-9f6b-d8c6f74bf7bf", + "created_at": "2026-05-22T12:39:16.195-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e04fe0c0-70bf-40b0-a2a3-d01274122aef", + "direction": "outgoing", + "index": 129952, + "result_id": "169c4cfb-1e7b-4d1c-9f6b-d8c6f74bf7bf", + "status": 200, + "timestamp": "2026-05-22T12:39:16.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:16.195-04:00" + }, + { + "id": "419e0695-551d-4f9e-97bd-70c7cb042750", + "created_at": "2026-05-22T12:39:16.654-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b06c11a3-91f2-41b2-ab27-e81e0ee09caa", + "direction": "outgoing", + "index": 129953, + "result_id": "419e0695-551d-4f9e-97bd-70c7cb042750", + "status": 200, + "timestamp": "2026-05-22T12:39:16.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85", + "verb": "get" + }, + { + "id": "023c93f5-fa27-4b22-be6e-6294202e788e", + "direction": "outgoing", + "index": 129954, + "result_id": "419e0695-551d-4f9e-97bd-70c7cb042750", + "status": 200, + "timestamp": "2026-05-22T12:39:16.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355", + "verb": "get" + }, + { + "id": "0993e109-5475-4b53-84ed-68a77ee6a1f0", + "direction": "outgoing", + "index": 129955, + "result_id": "419e0695-551d-4f9e-97bd-70c7cb042750", + "status": 200, + "timestamp": "2026-05-22T12:39:16.692-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:16.654-04:00" + }, + { + "id": "589ea2e1-b6b3-40e7-b24f-7ef2f5ac47d1", + "created_at": "2026-05-22T12:39:17.166-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:17.166-04:00" + }, + { + "id": "529af8ff-0f97-423a-ac10-6878486cd23a", + "created_at": "2026-05-22T12:39:17.177-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:17.177-04:00" + }, + { + "id": "07cb8a4b-36d1-4302-a5b7-abc172fdeb9c", + "created_at": "2026-05-22T12:39:17.180-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate-us_core_v800_heart_rate_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:17.180-04:00" + }, + { + "id": "959e1b64-9077-4d2a-9096-6774cbcc56c1", + "created_at": "2026-05-22T12:39:17.181-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_heart_rate", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:17.181-04:00" + }, + { + "id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "created_at": "2026-05-22T12:39:17.905-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7222f5d3-4678-4dde-9c28-eee93b3112aa", + "direction": "outgoing", + "index": 129956, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.907-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "0b961447-2256-4460-aff8-a7b468832b84", + "direction": "outgoing", + "index": 129957, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "886b64e3-ccf0-41b3-a521-5428cb50524e", + "direction": "outgoing", + "index": 129958, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "f21d3589-3324-4235-8fe3-f8ae341fa589", + "direction": "outgoing", + "index": 129959, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "4b0a7901-ddbc-48a2-bea9-623da3aa94ea", + "direction": "outgoing", + "index": 129960, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.980-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "791fac8b-3fae-4c47-acc8-3fa69c6578c4", + "direction": "outgoing", + "index": 129961, + "result_id": "df697b3d-5a7f-4600-bbff-74fffa0f1580", + "status": 200, + "timestamp": "2026-05-22T12:39:17.993-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:17.905-04:00" + }, + { + "id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "created_at": "2026-05-22T12:39:20.090-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fd36c706-0329-4f91-994e-5a4258a6774f", + "direction": "outgoing", + "index": 129962, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "1899b999-c783-4f46-9b0e-91e4ab713740", + "direction": "outgoing", + "index": 129963, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.119-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ece96c00-90a7-4940-9c4f-567e4671e70f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5221c823-1062-477a-86db-9f253500bdf4", + "direction": "outgoing", + "index": 129964, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.138-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ece96c00-90a7-4940-9c4f-567e4671e70f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b11f0c58-5410-4f22-adb1-6e603a78f926", + "direction": "outgoing", + "index": 129965, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "c6301b7c-d3da-4e3e-919f-5afbd502f9cd", + "direction": "outgoing", + "index": 129966, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.166-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58a9b857-e7f2-440d-bdcb-20abace16380\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "417b9447-bc00-4521-be79-5ab40af3f227", + "direction": "outgoing", + "index": 129967, + "result_id": "de5d3a6f-2a66-4e77-ad77-20a418503a33", + "status": 200, + "timestamp": "2026-05-22T12:39:20.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58a9b857-e7f2-440d-bdcb-20abace16380\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:20.090-04:00" + }, + { + "id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "created_at": "2026-05-22T12:39:22.177-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "27abd409-1f84-4c2d-b410-1bfd8d7f1854", + "direction": "outgoing", + "index": 129968, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.183-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e51e2ac8-4928-4eb1-9597-766901c12302", + "direction": "outgoing", + "index": 129969, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57258ac6-c3cc-410b-a57d-fec65d86d260\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa9860a9-c078-4452-b0f5-a794078de70e", + "direction": "outgoing", + "index": 129970, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57258ac6-c3cc-410b-a57d-fec65d86d260\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "663d7bb6-0f49-4324-abbe-abcd41cedeba", + "direction": "outgoing", + "index": 129971, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.243-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "c8f45de2-a4c6-417c-97e5-87050dd48580", + "direction": "outgoing", + "index": 129972, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.257-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf605e39-7caf-4045-86d8-71727fc8d89f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0852f7b5-c2e9-49ac-b4b4-1119c083171b", + "direction": "outgoing", + "index": 129973, + "result_id": "09d947f2-edbc-4791-a420-7784d9d03b4a", + "status": 200, + "timestamp": "2026-05-22T12:39:22.270-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf605e39-7caf-4045-86d8-71727fc8d89f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:22.177-04:00" + }, + { + "id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "created_at": "2026-05-22T12:39:25.239-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1bfcd412-c440-47f7-bb4f-30eb62129127", + "direction": "outgoing", + "index": 129974, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "d6d05d75-5b07-4a6c-b135-ec355b38cb33", + "direction": "outgoing", + "index": 129975, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c4c4e99e-ed0a-4154-9c9d-c762379692c1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d2b8e3d3-9910-48c7-8915-787bfa51b982", + "direction": "outgoing", + "index": 129976, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.290-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c4c4e99e-ed0a-4154-9c9d-c762379692c1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47267bc3-1526-4722-a650-02cc842a65af", + "direction": "outgoing", + "index": 129977, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "b393052a-6ca2-47a5-a623-f2d98e74e051", + "direction": "outgoing", + "index": 129978, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=549529d1-c6f2-41f4-9f59-fef139121530\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b966cf5f-87a2-416a-83d5-2d8d419739a1", + "direction": "outgoing", + "index": 129979, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=549529d1-c6f2-41f4-9f59-fef139121530\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8cd08d92-4ebf-4d05-8f49-2e73955d1512", + "direction": "outgoing", + "index": 129980, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "12e7990a-2b28-43c6-9c93-c28df82e7910", + "direction": "outgoing", + "index": 129981, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.349-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=29aa251b-884f-4a5f-af48-57e8af839490\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4099a186-1565-465f-88c1-142507d87e37", + "direction": "outgoing", + "index": 129982, + "result_id": "6415c13e-1bd1-4ee3-8b2c-86f7715a142c", + "status": 200, + "timestamp": "2026-05-22T12:39:25.360-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=29aa251b-884f-4a5f-af48-57e8af839490\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:25.239-04:00" + }, + { + "id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "created_at": "2026-05-22T12:39:27.898-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "98995f47-66f0-4f21-9966-7fe6e8ce3e94", + "direction": "outgoing", + "index": 129983, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.905-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "89d8566e-5d43-47d8-9279-59870e60ff7f", + "direction": "outgoing", + "index": 129984, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "022f6b9e-8e2d-4b75-ba88-3710fbcffddd", + "direction": "outgoing", + "index": 129985, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "874cefd0-92aa-42ac-b934-895b564476a2", + "direction": "outgoing", + "index": 129986, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.955-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "843a5257-ad8c-4741-a47b-f135bc4e9f38", + "direction": "outgoing", + "index": 129987, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.966-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9c8ffaf3-0c14-42ee-b8b8-db4064ff674b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d869e1cb-c45e-4740-84fb-ef07715992c4", + "direction": "outgoing", + "index": 129988, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.977-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9c8ffaf3-0c14-42ee-b8b8-db4064ff674b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cb8ae058-484b-439e-8b40-4ee69b0e07d3", + "direction": "outgoing", + "index": 129989, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:27.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "dec95a08-aca3-4a9c-8269-da2988ad344e", + "direction": "outgoing", + "index": 129990, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:28.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=91d5cfed-91c3-4fcc-9a0f-4bb9a192501e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "74db03ce-8315-4ed2-ab1e-cd91009d0a46", + "direction": "outgoing", + "index": 129991, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:28.011-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=91d5cfed-91c3-4fcc-9a0f-4bb9a192501e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "70a45b96-3dc6-47d8-a672-f7fe79e8ac4d", + "direction": "outgoing", + "index": 129992, + "result_id": "3c139044-3b60-4a53-8ba2-1f189b06765f", + "status": 200, + "timestamp": "2026-05-22T12:39:28.022-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:27.898-04:00" + }, + { + "id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "created_at": "2026-05-22T12:39:28.803-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0a2c9539-6317-445f-bf39-11199e94bc6d", + "direction": "outgoing", + "index": 129993, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.807-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6b51f771-d725-4613-9054-8fd0871b63a1", + "direction": "outgoing", + "index": 129994, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.827-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cf116e11-357c-426f-8193-a9ec0e29e674", + "direction": "outgoing", + "index": 129995, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "311d175b-df59-4100-a2be-5e92dcfa3787", + "direction": "outgoing", + "index": 129996, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.856-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "442e6c3c-37c5-4094-9650-7ecb5cb5289d", + "direction": "outgoing", + "index": 129997, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.871-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2038eac9-f3b3-4e7d-b286-9452d58da58a", + "direction": "outgoing", + "index": 129998, + "result_id": "3b71b054-c91f-4b78-9cdd-81815be6d616", + "status": 200, + "timestamp": "2026-05-22T12:39:28.884-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:28.803-04:00" + }, + { + "id": "8e47be5f-8459-4251-9cb6-600a8e671774", + "created_at": "2026-05-22T12:39:28.999-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ac49bbe2-2e22-43bd-8268-a47d8e9d7c3c", + "direction": "outgoing", + "index": 129999, + "result_id": "8e47be5f-8459-4251-9cb6-600a8e671774", + "status": 200, + "timestamp": "2026-05-22T12:39:29.000-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:28.999-04:00" + }, + { + "id": "2c1cb395-a171-4faf-a55e-e9ab34a74da9", + "created_at": "2026-05-22T12:39:29.454-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "81378410-a402-47b2-ba03-99d9d14bf137", + "direction": "outgoing", + "index": 130000, + "result_id": "2c1cb395-a171-4faf-a55e-e9ab34a74da9", + "status": 200, + "timestamp": "2026-05-22T12:39:29.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85", + "verb": "get" + }, + { + "id": "362de0bd-f617-42ee-8db4-93bbd7cd651e", + "direction": "outgoing", + "index": 130001, + "result_id": "2c1cb395-a171-4faf-a55e-e9ab34a74da9", + "status": 200, + "timestamp": "2026-05-22T12:39:29.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355", + "verb": "get" + }, + { + "id": "35fd3da9-d2eb-48c0-9093-7ac5ec447359", + "direction": "outgoing", + "index": 130002, + "result_id": "2c1cb395-a171-4faf-a55e-e9ab34a74da9", + "status": 200, + "timestamp": "2026-05-22T12:39:29.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:29.454-04:00" + }, + { + "id": "3814e284-5c2b-40a0-92b5-722125d20f2e", + "created_at": "2026-05-22T12:39:30.529-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:30.529-04:00" + }, + { + "id": "1c30c5b4-80a6-4193-a953-450513433704", + "created_at": "2026-05-22T12:39:30.554-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:30.554-04:00" + }, + { + "id": "5766ca3f-8c5b-476c-99e4-7eb19508b63e", + "created_at": "2026-05-22T12:39:30.676-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "37476fd7-e1d1-41c8-a1e2-15d9abc3d860", + "direction": "outgoing", + "index": 130003, + "result_id": "5766ca3f-8c5b-476c-99e4-7eb19508b63e", + "status": 200, + "timestamp": "2026-05-22T12:39:30.681-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/6dd5f702-241a-4114-8bd0-c8667f9c8b04", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature-us_core_v800_body_temperature_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:30.676-04:00" + }, + { + "id": "56f65824-1beb-47af-a197-1c3a35cbb304", + "created_at": "2026-05-22T12:39:30.706-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_temperature", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:30.706-04:00" + }, + { + "id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "created_at": "2026-05-22T12:39:31.576-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c42b2ce5-ad8e-4b99-9d05-afc3415a24ce", + "direction": "outgoing", + "index": 130004, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.579-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "bbdde4eb-6982-4be4-866a-c37623eabf10", + "direction": "outgoing", + "index": 130005, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "fb6cce55-3488-4669-a7ec-0c4df1d26f79", + "direction": "outgoing", + "index": 130006, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "9113133f-2b26-4f33-b09b-fa8c1e3f2a1f", + "direction": "outgoing", + "index": 130007, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.632-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "c0e1b7b9-a638-4a31-97f0-131a03cebedc", + "direction": "outgoing", + "index": 130008, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.641-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "3b6db599-5b8a-4d08-8d47-4952d2ce590c", + "direction": "outgoing", + "index": 130009, + "result_id": "2f39e5dd-8279-43eb-8383-9411f97cc278", + "status": 200, + "timestamp": "2026-05-22T12:39:31.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:31.576-04:00" + }, + { + "id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "created_at": "2026-05-22T12:39:32.650-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "774b0d63-fe9a-4a09-9654-ae571ddeff19", + "direction": "outgoing", + "index": 130010, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "4ce0cefa-d6a4-45d9-8188-42f56aad7227", + "direction": "outgoing", + "index": 130011, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ece96c00-90a7-4940-9c4f-567e4671e70f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "47a715d5-d96b-433b-8f6a-8521282634b2", + "direction": "outgoing", + "index": 130012, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.697-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ece96c00-90a7-4940-9c4f-567e4671e70f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "abb71f38-1f93-4f73-96ec-2b7ef3c0f99d", + "direction": "outgoing", + "index": 130013, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.711-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "b01a3651-6a14-4287-8206-f0ebae986aac", + "direction": "outgoing", + "index": 130014, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.725-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58a9b857-e7f2-440d-bdcb-20abace16380\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a92f720f-e60f-4a0a-af78-355cd0e0523c", + "direction": "outgoing", + "index": 130015, + "result_id": "2671f3e1-e607-4dc0-a99a-8f0f4f8feaa0", + "status": 200, + "timestamp": "2026-05-22T12:39:32.737-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=58a9b857-e7f2-440d-bdcb-20abace16380\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:32.650-04:00" + }, + { + "id": "81b648fd-581a-48f4-b06b-22949af7097a", + "created_at": "2026-05-22T12:39:33.685-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "b3fabdf0-eb6a-4dbe-967f-92f806014ba3", + "direction": "outgoing", + "index": 130016, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "46a994bb-6d6b-47b2-b15e-cd35c27f899d", + "direction": "outgoing", + "index": 130017, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.717-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57258ac6-c3cc-410b-a57d-fec65d86d260\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "10f359e3-3187-43d7-84f9-e2326dc01f1f", + "direction": "outgoing", + "index": 130018, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57258ac6-c3cc-410b-a57d-fec65d86d260\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "693e81f5-3e12-4279-9b9d-554f2c8e59f7", + "direction": "outgoing", + "index": 130019, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.744-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "5847efbd-6fae-425a-a715-a0c50a8fb4d3", + "direction": "outgoing", + "index": 130020, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.756-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf605e39-7caf-4045-86d8-71727fc8d89f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "622bcedc-577e-4238-817d-8737ed950d72", + "direction": "outgoing", + "index": 130021, + "result_id": "81b648fd-581a-48f4-b06b-22949af7097a", + "status": 200, + "timestamp": "2026-05-22T12:39:33.768-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=bf605e39-7caf-4045-86d8-71727fc8d89f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:33.685-04:00" + }, + { + "id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "created_at": "2026-05-22T12:39:35.249-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9cec1d29-fc0f-4275-859b-392a6105aa9b", + "direction": "outgoing", + "index": 130022, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "76a7893b-76cd-4947-adf3-435b08447421", + "direction": "outgoing", + "index": 130023, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.282-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c4c4e99e-ed0a-4154-9c9d-c762379692c1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "727ace20-1814-40a1-bc56-3030e2651b60", + "direction": "outgoing", + "index": 130024, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.298-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c4c4e99e-ed0a-4154-9c9d-c762379692c1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d590f194-2841-4891-84e4-8fcf1f17b879", + "direction": "outgoing", + "index": 130025, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "1cc4b0b1-4344-460a-b13c-9957ed6c7a27", + "direction": "outgoing", + "index": 130026, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=549529d1-c6f2-41f4-9f59-fef139121530\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "62a70d0a-7498-472f-910a-afb868a514f1", + "direction": "outgoing", + "index": 130027, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.336-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=549529d1-c6f2-41f4-9f59-fef139121530\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e89573ef-1e3b-4a13-82a7-07fee74b94d1", + "direction": "outgoing", + "index": 130028, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "b6f869f6-ac2f-432a-a32a-33b1c6621b63", + "direction": "outgoing", + "index": 130029, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.357-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=29aa251b-884f-4a5f-af48-57e8af839490\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9dd8be4d-459b-46ca-84dc-cfcb181c338b", + "direction": "outgoing", + "index": 130030, + "result_id": "aad3e2ed-4981-4cfa-92d4-fa082b902bd7", + "status": 200, + "timestamp": "2026-05-22T12:39:35.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=29aa251b-884f-4a5f-af48-57e8af839490\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:35.249-04:00" + }, + { + "id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "created_at": "2026-05-22T12:39:37.971-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2400f640-9883-4d55-a68e-b69d90a99e8a", + "direction": "outgoing", + "index": 130031, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:37.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "85e93fc5-66ae-4e86-8d1a-7360719c671f", + "direction": "outgoing", + "index": 130032, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.010-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "440c68ac-4e06-4fda-9d71-c055ef0ce7b1", + "direction": "outgoing", + "index": 130033, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.024-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=485b7999-445e-4632-bb2a-1ee986c36ccd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86e67921-394c-4a9f-8bd4-09698975c67e", + "direction": "outgoing", + "index": 130034, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.038-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=485b7999-445e-4632-bb2a-1ee986c36ccd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2eb0792f-9cc0-4994-a1b5-1196668b1a16", + "direction": "outgoing", + "index": 130035, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.051-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "fff04f19-1bea-4d11-b330-3c9f87f4b0f1", + "direction": "outgoing", + "index": 130036, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8d267c22-4b09-48d1-b374-85566b42bf66\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a8cb6f43-154f-4bda-8fa2-7cacf9ba0d78", + "direction": "outgoing", + "index": 130037, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.075-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8d267c22-4b09-48d1-b374-85566b42bf66\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2808957b-c09d-42f1-882d-8fde5ba093d2", + "direction": "outgoing", + "index": 130038, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e208e9b1-e7d2-47ac-99a3-2b0c2b7a2489", + "direction": "outgoing", + "index": 130039, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.098-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a7d10397-6b3d-49bf-be1f-34694163375f", + "direction": "outgoing", + "index": 130040, + "result_id": "fce4c376-574e-4990-a4b6-a86e70f66917", + "status": 200, + "timestamp": "2026-05-22T12:39:38.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:37.971-04:00" + }, + { + "id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "created_at": "2026-05-22T12:39:38.891-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d6cdb754-5e09-49ef-8a2a-174668285b60", + "direction": "outgoing", + "index": 130041, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8752a1be-715b-4ac5-83b9-35f7480b90dc", + "direction": "outgoing", + "index": 130042, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0e78c9f2-d120-4ad9-b69d-5db2ec88efb9", + "direction": "outgoing", + "index": 130043, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "18c5324c-f55a-4beb-8f90-5db0f6766da8", + "direction": "outgoing", + "index": 130044, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.957-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9251a0ae-ff55-464d-8fca-a02ddf372d41", + "direction": "outgoing", + "index": 130045, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.969-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7a85bfa3-bba7-4c74-b652-211291de933a", + "direction": "outgoing", + "index": 130046, + "result_id": "3ac198e3-5062-4371-a54a-79677481eeaa", + "status": 200, + "timestamp": "2026-05-22T12:39:38.981-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:38.891-04:00" + }, + { + "id": "ae169c07-0835-4870-a177-5c0c6438fbe9", + "created_at": "2026-05-22T12:39:39.096-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "99d1aa94-42fc-4d8c-ba37-71a32ff32cce", + "direction": "outgoing", + "index": 130047, + "result_id": "ae169c07-0835-4870-a177-5c0c6438fbe9", + "status": 200, + "timestamp": "2026-05-22T12:39:39.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:39.096-04:00" + }, + { + "id": "32e4ca90-f62c-469d-9fcc-499367bdd383", + "created_at": "2026-05-22T12:39:39.534-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a4b217f2-1874-4813-bd12-12f85fd2ee89", + "direction": "outgoing", + "index": 130048, + "result_id": "32e4ca90-f62c-469d-9fcc-499367bdd383", + "status": 200, + "timestamp": "2026-05-22T12:39:39.537-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85", + "verb": "get" + }, + { + "id": "07815ba4-7098-4e05-897b-9f6237bac3c3", + "direction": "outgoing", + "index": 130049, + "result_id": "32e4ca90-f62c-469d-9fcc-499367bdd383", + "status": 200, + "timestamp": "2026-05-22T12:39:39.557-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355", + "verb": "get" + }, + { + "id": "6ac03c0f-4929-44fa-8a02-cb21babb0448", + "direction": "outgoing", + "index": 130050, + "result_id": "32e4ca90-f62c-469d-9fcc-499367bdd383", + "status": 200, + "timestamp": "2026-05-22T12:39:39.571-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:39.534-04:00" + }, + { + "id": "99f8518c-d9c9-4b6c-b653-0ac85973d122", + "created_at": "2026-05-22T12:39:40.025-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:40.025-04:00" + }, + { + "id": "2f7e1f53-6806-48bd-9c1c-b8e35f709841", + "created_at": "2026-05-22T12:39:40.042-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:40.042-04:00" + }, + { + "id": "0be9c1a1-3ad8-4031-902a-66732e6dcda5", + "created_at": "2026-05-22T12:39:40.049-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height-us_core_v800_pediatric_weight_for_height_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:40.049-04:00" + }, + { + "id": "e10a0f10-3cb2-44d2-a5cc-c704ef1d12dd", + "created_at": "2026-05-22T12:39:40.054-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_weight_for_height", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:40.054-04:00" + }, + { + "id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "created_at": "2026-05-22T12:39:41.306-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9094b552-001c-44d0-a48a-67a966039ac9", + "direction": "outgoing", + "index": 130051, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "56f5a68d-81f9-4834-aa95-e3819e4b8c84", + "direction": "outgoing", + "index": 130052, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "f406b1af-f390-4939-8a86-8f2ac10ad303", + "direction": "outgoing", + "index": 130053, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.355-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "54ad8762-45b8-49ab-aa02-334ce47c9203", + "direction": "outgoing", + "index": 130054, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "f6116d25-6ef6-4ed7-b995-4d6f13a9b3f1", + "direction": "outgoing", + "index": 130055, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "2edca57a-fb40-4bad-80fd-0d12c9721204", + "direction": "outgoing", + "index": 130056, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.395-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355", + "verb": "get" + }, + { + "id": "1aa79141-f7c0-419a-98d2-79ec73462a5f", + "direction": "outgoing", + "index": 130057, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "b6862c08-6f47-4ce1-951e-a1749ecf601a", + "direction": "outgoing", + "index": 130058, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.416-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=908", + "verb": "get" + }, + { + "id": "25c3a343-a8fd-428e-bf06-9e891db93ed9", + "direction": "outgoing", + "index": 130059, + "result_id": "714af8ec-ab4f-4501-9e6a-97a26abab95e", + "status": 200, + "timestamp": "2026-05-22T12:39:41.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:41.306-04:00" + }, + { + "id": "ebd21cc9-16ac-4f77-a69e-edf8d8b2fbb4", + "created_at": "2026-05-22T12:39:41.756-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a52ef2f6-e053-4d8a-a80d-961ffca641dc", + "direction": "outgoing", + "index": 130060, + "result_id": "ebd21cc9-16ac-4f77-a69e-edf8d8b2fbb4", + "status": 200, + "timestamp": "2026-05-22T12:39:41.760-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "0656571f-4648-47d0-a918-2b34bce4fd06", + "direction": "outgoing", + "index": 130061, + "result_id": "ebd21cc9-16ac-4f77-a69e-edf8d8b2fbb4", + "status": 200, + "timestamp": "2026-05-22T12:39:41.780-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:41.756-04:00" + }, + { + "id": "68780e85-13e3-4c02-9b36-7a51885b5140", + "created_at": "2026-05-22T12:39:42.039-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fcd2c34a-f688-48f6-9432-48be77900fa0", + "direction": "outgoing", + "index": 130062, + "result_id": "68780e85-13e3-4c02-9b36-7a51885b5140", + "status": 200, + "timestamp": "2026-05-22T12:39:42.043-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "cc5981e0-3f6f-42b7-80d8-f600d67abdbc", + "direction": "outgoing", + "index": 130063, + "result_id": "68780e85-13e3-4c02-9b36-7a51885b5140", + "status": 200, + "timestamp": "2026-05-22T12:39:42.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:42.039-04:00" + }, + { + "id": "f7d7e08b-cc8a-426d-9e1c-254bb338c989", + "created_at": "2026-05-22T12:39:42.442-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d81261ea-bf46-41bb-8ba3-c90a787969eb", + "direction": "outgoing", + "index": 130064, + "result_id": "f7d7e08b-cc8a-426d-9e1c-254bb338c989", + "status": 200, + "timestamp": "2026-05-22T12:39:42.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "8162decd-a4a5-438f-8312-c1c814081cf9", + "direction": "outgoing", + "index": 130065, + "result_id": "f7d7e08b-cc8a-426d-9e1c-254bb338c989", + "status": 200, + "timestamp": "2026-05-22T12:39:42.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "c7a0379b-6421-4700-85bd-c1f390323a77", + "direction": "outgoing", + "index": 130066, + "result_id": "f7d7e08b-cc8a-426d-9e1c-254bb338c989", + "status": 200, + "timestamp": "2026-05-22T12:39:42.477-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:42.442-04:00" + }, + { + "id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "created_at": "2026-05-22T12:39:43.331-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "85f71d89-4b32-472c-9b17-27762847f945", + "direction": "outgoing", + "index": 130067, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2058dc1f-862c-4b6a-95b9-5183907dc3ec", + "direction": "outgoing", + "index": 130068, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.357-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bc5a5012-2ff5-413a-a572-00871ba32eb4", + "direction": "outgoing", + "index": 130069, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.374-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "9959b6e1-dffc-4751-9d02-88596f8b1934", + "direction": "outgoing", + "index": 130070, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.387-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "97b96c69-5dde-45b8-aed3-c0ba8b37d702", + "direction": "outgoing", + "index": 130071, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.403-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7dd66ef0-aa63-49d2-a932-c869786576b7", + "direction": "outgoing", + "index": 130072, + "result_id": "4c0c1a32-cc52-4303-92cc-3951627f14e1", + "status": 200, + "timestamp": "2026-05-22T12:39:43.413-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:43.331-04:00" + }, + { + "id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "created_at": "2026-05-22T12:39:44.253-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "908a253f-eb93-4320-8e15-70542d21745c", + "direction": "outgoing", + "index": 130073, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.259-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ee419cfe-839a-4455-89ab-af70e6d504e7", + "direction": "outgoing", + "index": 130074, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "964d2ab7-917e-4e3e-99d2-e08a762bb98b", + "direction": "outgoing", + "index": 130075, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.303-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "32021948-273c-4eb1-9756-c45a33cd99d1", + "direction": "outgoing", + "index": 130076, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.316-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c302a6e6-d02d-44df-9b2c-7c6c963e71a4", + "direction": "outgoing", + "index": 130077, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f90d616b-3495-4c6d-a1f8-f86a3b68ce09", + "direction": "outgoing", + "index": 130078, + "result_id": "d8a9fd0e-30b6-40e1-81a2-e0595857085e", + "status": 200, + "timestamp": "2026-05-22T12:39:44.339-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:44.253-04:00" + }, + { + "id": "75e0a8a3-baa4-4420-ac2c-4c9e3b8fbd20", + "created_at": "2026-05-22T12:39:44.454-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "018cb00b-2112-43dd-be2c-dbc6aa657875", + "direction": "outgoing", + "index": 130079, + "result_id": "75e0a8a3-baa4-4420-ac2c-4c9e3b8fbd20", + "status": 200, + "timestamp": "2026-05-22T12:39:44.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:44.454-04:00" + }, + { + "id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "created_at": "2026-05-22T12:39:45.319-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e8df2897-4810-474c-becd-a83f2648ebda", + "direction": "outgoing", + "index": 130080, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.364-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85", + "verb": "get" + }, + { + "id": "dccca9a5-16f5-42a1-93cd-f2892605d98a", + "direction": "outgoing", + "index": 130081, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.446-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85", + "verb": "get" + }, + { + "id": "8f3d6b6b-9247-4f6f-a02a-610bfea67d4d", + "direction": "outgoing", + "index": 130082, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355", + "verb": "get" + }, + { + "id": "be01253a-bdf4-4261-9eef-3a6a6a5a49fa", + "direction": "outgoing", + "index": 130083, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.468-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355", + "verb": "get" + }, + { + "id": "f82421b7-ce51-49e5-a301-733cc9689ba2", + "direction": "outgoing", + "index": 130084, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=908", + "verb": "get" + }, + { + "id": "09d9dec8-db5a-40f0-afcb-762dfc7c77ac", + "direction": "outgoing", + "index": 130085, + "result_id": "e1cffc67-e1f0-46c7-b88a-09331a8efc87", + "status": 200, + "timestamp": "2026-05-22T12:39:45.493-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:45.319-04:00" + }, + { + "id": "3cbc1582-f716-4da2-a906-88aff3112153", + "created_at": "2026-05-22T12:39:47.255-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:47.255-04:00" + }, + { + "id": "e5626379-cc84-4f5b-a494-edbca0e476b1", + "created_at": "2026-05-22T12:39:47.295-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:47.295-04:00" + }, + { + "id": "56281c93-00f3-4176-8aec-e98394620f0f", + "created_at": "2026-05-22T12:39:47.298-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry-us_core_v800_pulse_oximetry_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:47.298-04:00" + }, + { + "id": "b7b7f69c-5059-45ec-a133-29af086f7e28", + "created_at": "2026-05-22T12:39:47.300-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pulse_oximetry", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:47.300-04:00" + }, + { + "id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "created_at": "2026-05-22T12:39:52.282-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4f137f13-f14e-4337-8787-0395d309526c", + "direction": "outgoing", + "index": 130086, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.288-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=85", + "verb": "get" + }, + { + "id": "66137495-8e6f-434f-9796-ea3b2538599f", + "direction": "outgoing", + "index": 130087, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=85", + "verb": "get" + }, + { + "id": "e5b5ff77-2d1a-4ea0-a0d1-97f80a88d83e", + "direction": "outgoing", + "index": 130088, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "71d84fb0-a02f-49ae-bca3-6c76783a0b24", + "direction": "outgoing", + "index": 130089, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "449fa625-ed79-4a5e-bf65-e052cba7ac19", + "direction": "outgoing", + "index": 130090, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026patient=85", + "verb": "get" + }, + { + "id": "f4b0581f-011c-42d6-833e-8771cef11dfe", + "direction": "outgoing", + "index": 130091, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.371-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "12c57254-84bd-46e5-85cd-f4c7c66be03a", + "direction": "outgoing", + "index": 130092, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6ead1302-ca3e-4d4c-9998-fa932f4ec3fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "77f89418-b4ef-4f22-b46e-d07b464af845", + "direction": "outgoing", + "index": 130093, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6ead1302-ca3e-4d4c-9998-fa932f4ec3fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "14a723c8-f27b-44df-8ddf-24274682918d", + "direction": "outgoing", + "index": 130094, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=6ead1302-ca3e-4d4c-9998-fa932f4ec3fd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e7bdcfb5-0e23-4ba7-83e9-3c6be132e44b", + "direction": "outgoing", + "index": 130095, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.415-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=85", + "verb": "get" + }, + { + "id": "4a99b932-b206-4a0e-b034-488d7dd1da03", + "direction": "outgoing", + "index": 130096, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.427-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=355", + "verb": "get" + }, + { + "id": "2d1765d8-24f0-471b-969a-7f31cd5b8f88", + "direction": "outgoing", + "index": 130097, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=355", + "verb": "get" + }, + { + "id": "e3996a7a-4df3-45d6-b9de-9afa7d5b1fc5", + "direction": "outgoing", + "index": 130098, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.451-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "93016d3c-abdd-4461-92f3-faf07be41697", + "direction": "outgoing", + "index": 130099, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e21c002-ace5-4fcd-aa21-4680f54c55d9", + "direction": "outgoing", + "index": 130100, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5bd90c7e-3ef3-46b1-9ed4-59887e587b84", + "direction": "outgoing", + "index": 130101, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "413b1fcd-4fa4-41b3-b215-eb6757f21ecf", + "direction": "outgoing", + "index": 130102, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "18894cb8-9744-4bb0-8583-a44f07406d7a", + "direction": "outgoing", + "index": 130103, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "71ade7a6-6896-49e3-b0f6-4ba7a8513a79", + "direction": "outgoing", + "index": 130104, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e7560c73-118c-4732-b743-160e6e7aa7ec", + "direction": "outgoing", + "index": 130105, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.528-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "46ead3ef-c356-4805-a574-3697c992cb6d", + "direction": "outgoing", + "index": 130106, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.539-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "540fb735-1098-46cd-a452-0274a2ec75a8", + "direction": "outgoing", + "index": 130107, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.551-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5e4019a6-0e86-453f-a1d6-f6200582caf2\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d7232298-b0d7-4717-a595-a5604394b380", + "direction": "outgoing", + "index": 130108, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.567-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=355", + "verb": "get" + }, + { + "id": "e56b2f31-6f3e-47af-a927-41806e9de9a4", + "direction": "outgoing", + "index": 130109, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.578-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=11367-0\u0026patient=908", + "verb": "get" + }, + { + "id": "ccfd6040-b433-44da-a673-4aa726d4df68", + "direction": "outgoing", + "index": 130110, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.588-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026patient=908", + "verb": "get" + }, + { + "id": "36f9953e-4f83-4dda-bc3b-36a31cf0e971", + "direction": "outgoing", + "index": 130111, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.598-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=908", + "verb": "get" + }, + { + "id": "10c6aeb9-c174-45ee-bed5-fd9dea762842", + "direction": "outgoing", + "index": 130112, + "result_id": "9dea1248-eefa-420a-b48e-ecfb9f36fc50", + "status": 200, + "timestamp": "2026-05-22T12:39:52.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=782516008\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:52.282-04:00" + }, + { + "id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "created_at": "2026-05-22T12:39:58.244-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f9e91b9d-3380-4168-aa65-e03dc855b00a", + "direction": "outgoing", + "index": 130113, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "19d0bc60-5b30-40cc-bd6f-be320e43b2cd", + "direction": "outgoing", + "index": 130114, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f70c6b1-c346-4283-b408-f2cb6344a6a6", + "direction": "outgoing", + "index": 130115, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1395a005-69f7-498d-bb9a-82751e721228", + "direction": "outgoing", + "index": 130116, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.295-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c2f54e2e-579f-491d-bef2-740d5eeddcef", + "direction": "outgoing", + "index": 130117, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "764c1ca7-e9be-4ad7-9ff2-d34271233247", + "direction": "outgoing", + "index": 130118, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "b206feb6-9303-4a1a-8fcb-cc94c09867e8", + "direction": "outgoing", + "index": 130119, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9bc0b904-e550-47a8-b79e-7bd123651365", + "direction": "outgoing", + "index": 130120, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.338-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3838dd85-37d5-43c1-9958-1fb8e27279ce", + "direction": "outgoing", + "index": 130121, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.349-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "353c2fb2-7890-401c-a6a7-bcb2c78d8e03", + "direction": "outgoing", + "index": 130122, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.359-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5a8512b-0ef1-4926-8e59-97afc21c84fd", + "direction": "outgoing", + "index": 130123, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "6f1e7d21-d351-4399-9dc8-aea4fb3452b1", + "direction": "outgoing", + "index": 130124, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.377-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d74983ad-b387-4be3-812b-ee9edeb1956b", + "direction": "outgoing", + "index": 130125, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.388-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6b00f25b-a170-4d32-8aaa-561767c9e3f9", + "direction": "outgoing", + "index": 130126, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.398-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "96eb7034-3d12-4a0e-bbb6-25e4b47efe5d", + "direction": "outgoing", + "index": 130127, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.407-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d70157cb-c350-417e-ae57-0fb24362226f", + "direction": "outgoing", + "index": 130128, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5c605c68-f60a-4910-8762-ba7ce806a869", + "direction": "outgoing", + "index": 130129, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1dcdec6b-4d2c-482b-93ee-a90873822536", + "direction": "outgoing", + "index": 130130, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "17483298-b56e-4892-b853-09f5e30d90cb", + "direction": "outgoing", + "index": 130131, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9abaed52-4d32-471b-b87d-266f00093c21", + "direction": "outgoing", + "index": 130132, + "result_id": "5e0a5ea6-d104-4ae4-a78e-ae6b812e7300", + "status": 200, + "timestamp": "2026-05-22T12:39:58.462-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=39d1cb86-82ea-4e37-9998-bcc2dee8c79c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:39:58.244-04:00" + }, + { + "id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "created_at": "2026-05-22T12:40:03.419-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "58f07c7c-be26-4873-b6b4-89fa9dc35f7a", + "direction": "outgoing", + "index": 130133, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.425-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "9c7dc249-8b11-41a7-a74d-774ee30caceb", + "direction": "outgoing", + "index": 130134, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f905a9ec-121d-4d39-9544-b9a172c25d12", + "direction": "outgoing", + "index": 130135, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.461-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ac31f04f-3b97-4726-b616-d77dfe478666", + "direction": "outgoing", + "index": 130136, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.472-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b9a588ca-1731-40e7-bb07-661fe0e92f03", + "direction": "outgoing", + "index": 130137, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.484-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c5028eb5-a9dc-4bad-94dc-355dfd2dd77c", + "direction": "outgoing", + "index": 130138, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.495-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "4c00cb97-29a2-4215-82ae-7b3b719b93f3", + "direction": "outgoing", + "index": 130139, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.506-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "eaa32974-7869-4295-b887-e7aa22e98fad", + "direction": "outgoing", + "index": 130140, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.519-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "888eefac-0958-4add-85c6-645e0305afa2", + "direction": "outgoing", + "index": 130141, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.530-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aeb94986-9919-48d0-8277-8f6377b63c61", + "direction": "outgoing", + "index": 130142, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "08221983-f26b-4065-8a03-4142cdc1592d", + "direction": "outgoing", + "index": 130143, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "88e3bb90-3cc1-43c4-854c-a83be603e68b", + "direction": "outgoing", + "index": 130144, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.564-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5bca0306-c221-4615-b084-54ec74ba226d", + "direction": "outgoing", + "index": 130145, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.575-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f15ee41b-bbaf-4c92-868d-401ecb68ccce", + "direction": "outgoing", + "index": 130146, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.585-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7e5cddf7-34ec-4bff-adcf-77e40a3e3d5f", + "direction": "outgoing", + "index": 130147, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.597-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1534fbbf-dab1-493d-9e5e-1fe53c1a280d", + "direction": "outgoing", + "index": 130148, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.608-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d0590601-3d03-4da5-9f5e-577e305316ef", + "direction": "outgoing", + "index": 130149, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f9dc821-c391-4a6b-9109-29d256fd685e", + "direction": "outgoing", + "index": 130150, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.630-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9d40f40a-7343-495c-9b2e-753be854210b", + "direction": "outgoing", + "index": 130151, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.639-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9fc6a797-89fb-4bab-99c5-54bd58101e24", + "direction": "outgoing", + "index": 130152, + "result_id": "74c6cb6a-b203-4e0d-977c-fac4efd6ff06", + "status": 200, + "timestamp": "2026-05-22T12:40:03.649-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1998562b-a521-4d22-ab3f-4b065fd81c26\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:03.419-04:00" + }, + { + "id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "created_at": "2026-05-22T12:40:09.726-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "5cdf7d34-2a7d-45ca-b0c8-11fa9f05da18", + "direction": "outgoing", + "index": 130153, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.731-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "0a8e3cee-6d21-4aad-b60c-93a15d484ba6", + "direction": "outgoing", + "index": 130154, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.754-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c62555bf-b25d-4b09-bf0a-9415d99dfc13", + "direction": "outgoing", + "index": 130155, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e5b47676-9a8b-4892-bca3-16c33b4d7319", + "direction": "outgoing", + "index": 130156, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.788-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d00a14b1-8f04-49c4-a4fa-4eb0e3b0a026", + "direction": "outgoing", + "index": 130157, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3aa1f21f-a4ef-4d8b-8196-1ac3e163cce6", + "direction": "outgoing", + "index": 130158, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.813-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "fdb84075-c482-435c-be7c-1ccbe6febe5d", + "direction": "outgoing", + "index": 130159, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b0baaaee-b226-4bcb-9774-028db97cd701", + "direction": "outgoing", + "index": 130160, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "31db7753-fa3b-4b0c-92ec-079931a64073", + "direction": "outgoing", + "index": 130161, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.843-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ece18d3e-1fd4-452b-96dd-70f79d77bc7c", + "direction": "outgoing", + "index": 130162, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.854-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6a41c32a-6403-4c87-af20-ca0aca6b3a43", + "direction": "outgoing", + "index": 130163, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "922f29ec-f036-4867-b538-7e4965046438", + "direction": "outgoing", + "index": 130164, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a35fff72-427c-4701-8d83-b41afd096fe9", + "direction": "outgoing", + "index": 130165, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.885-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "62409682-f9c0-4390-ab8d-8bc3333ab797", + "direction": "outgoing", + "index": 130166, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.898-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92735f0a-5cf6-41c1-b23f-761062064cce", + "direction": "outgoing", + "index": 130167, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.909-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0ff62eec-5039-47b7-88a0-87f8cd875249", + "direction": "outgoing", + "index": 130168, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c62749bd-95e7-460a-8d4e-f06519289eee", + "direction": "outgoing", + "index": 130169, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.931-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c945ad6e-6918-4f0b-a312-913efc2608cb", + "direction": "outgoing", + "index": 130170, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.941-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c209f524-cebb-4b54-8839-411edb0b78c7", + "direction": "outgoing", + "index": 130171, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.951-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69407a89-7fef-461b-ac64-0c45f3200591", + "direction": "outgoing", + "index": 130172, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.961-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4090714f-b143-4a03-9b8c-527750d69ccf\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3084d885-9f21-4c09-b794-1beb36108fd5", + "direction": "outgoing", + "index": 130173, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.974-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error", + "verb": "get" + }, + { + "id": "4e73688d-8403-4b26-a5a3-8d207054ead1", + "direction": "outgoing", + "index": 130174, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.984-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=36262d4d-6946-451d-b840-761f65b33f96\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2b21143b-1b39-4111-955e-dbd81957282a", + "direction": "outgoing", + "index": 130175, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:09.996-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=36262d4d-6946-451d-b840-761f65b33f96\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0777b68b-fe05-4e7d-acff-02491424d923", + "direction": "outgoing", + "index": 130176, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:10.007-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=36262d4d-6946-451d-b840-761f65b33f96\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cff19bb4-e079-4cdf-a7f6-566b5118a8ca", + "direction": "outgoing", + "index": 130177, + "result_id": "603a56d0-75ab-4074-8814-b12c20a24d61", + "status": 200, + "timestamp": "2026-05-22T12:40:10.019-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=36262d4d-6946-451d-b840-761f65b33f96\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:09.726-04:00" + }, + { + "id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "created_at": "2026-05-22T12:40:13.336-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9d1b315d-bdc2-46b0-8e3c-4cdbe2221986", + "direction": "outgoing", + "index": 130178, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.342-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "17079aff-2d19-453d-941b-6d44e6e61424", + "direction": "outgoing", + "index": 130179, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.367-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "640f09fb-095d-4225-a2ee-42c9ad1646e4", + "direction": "outgoing", + "index": 130180, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.384-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=25a9bff7-df03-44b8-8f61-67f15e056b38\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bee9e3d2-1c37-4778-ba49-3b21abd531d5", + "direction": "outgoing", + "index": 130181, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=25a9bff7-df03-44b8-8f61-67f15e056b38\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f7b57b2-7d72-47be-bb07-e05be299c821", + "direction": "outgoing", + "index": 130182, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.412-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=25a9bff7-df03-44b8-8f61-67f15e056b38\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "83f06d54-3373-4b9e-b319-e85aca448372", + "direction": "outgoing", + "index": 130183, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.426-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=25a9bff7-df03-44b8-8f61-67f15e056b38\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3f27d2c-c569-459e-9874-6e4da3c44a6a", + "direction": "outgoing", + "index": 130184, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.439-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "44b7a2e5-952a-483b-983e-d3a4588e3175", + "direction": "outgoing", + "index": 130185, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=83a395fe-fee6-4da2-a18c-20dae143d261\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9b11f6b-6920-4559-b310-acc87a2106e2", + "direction": "outgoing", + "index": 130186, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.458-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=83a395fe-fee6-4da2-a18c-20dae143d261\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "478d91d1-1a60-4c9a-af89-c1334dd8832c", + "direction": "outgoing", + "index": 130187, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.471-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=83a395fe-fee6-4da2-a18c-20dae143d261\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "417f0ec8-2c46-45db-8587-98ca324f0396", + "direction": "outgoing", + "index": 130188, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.483-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=83a395fe-fee6-4da2-a18c-20dae143d261\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "91be6af8-b2fe-483c-9bcf-f4bdf15ea87d", + "direction": "outgoing", + "index": 130189, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.493-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1419aa74-9789-4290-8a06-59ede1cae103", + "direction": "outgoing", + "index": 130190, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1845f65a-1c46-4fdb-a05e-1225f70e7a48", + "direction": "outgoing", + "index": 130191, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bec47a3f-5144-4b48-a43c-b945f7d24cf4", + "direction": "outgoing", + "index": 130192, + "result_id": "0b571cd3-56e0-4811-8d5c-211dcd60f00f", + "status": 200, + "timestamp": "2026-05-22T12:40:13.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:13.336-04:00" + }, + { + "id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "created_at": "2026-05-22T12:40:14.353-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e03a9a9d-f919-4ce9-baaf-d64e746d4ec0", + "direction": "outgoing", + "index": 130193, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.361-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "23ff372a-dd31-4af0-b7bc-47f49e1f6f2d", + "direction": "outgoing", + "index": 130194, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=gt1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "66fd6e3d-c614-41cb-a093-34847fe3ae82", + "direction": "outgoing", + "index": 130195, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.408-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=ge1940-03-28T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "58697a86-51a2-4e5e-a0fc-7045b9b3db18", + "direction": "outgoing", + "index": 130196, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.420-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=lt1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d024bcfa-0a21-434f-bf7a-6766be10cf94", + "direction": "outgoing", + "index": 130197, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.432-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=401201003\u0026date=le1940-03-30T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "bd1366b3-a854-4fb6-8942-7b6e02d6ad69", + "direction": "outgoing", + "index": 130198, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.445-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://snomed.info/sct%7C401201003\u0026date=1940-03-29T00:11:45-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0c744743-c573-4391-93a9-dbac6f4038e7", + "direction": "outgoing", + "index": 130199, + "result_id": "30c49f95-defa-43af-8328-ac3d58eaa550", + "status": 200, + "timestamp": "2026-05-22T12:40:14.453-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:14.353-04:00" + }, + { + "id": "5a8b2e25-968a-4b24-a3c1-56c93b6d903e", + "created_at": "2026-05-22T12:40:14.562-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "02303fb9-520c-4299-a9cf-1fa8eeeaf96d", + "direction": "outgoing", + "index": 130200, + "result_id": "5a8b2e25-968a-4b24-a3c1-56c93b6d903e", + "status": 200, + "timestamp": "2026-05-22T12:40:14.564-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0ce3e522-1798-4581-8c7d-c913de0149b6", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:14.562-04:00" + }, + { + "id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "created_at": "2026-05-22T12:40:19.857-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "775a9eac-d481-4f76-a3f3-57192bec2fa2", + "direction": "outgoing", + "index": 130201, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:19.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=85", + "verb": "get" + }, + { + "id": "f74df8ba-dae6-4408-83c8-8c757627186f", + "direction": "outgoing", + "index": 130202, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:19.885-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=85", + "verb": "get" + }, + { + "id": "244c2c60-8fdb-4c97-824b-fc1234b7ecc5", + "direction": "outgoing", + "index": 130203, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:19.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85", + "verb": "get" + }, + { + "id": "4608469c-6166-4a7b-affb-ca48d2bfa98e", + "direction": "outgoing", + "index": 130204, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:19.965-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=727e6bd9-2aa6-4552-899d-7949d52ea340\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4bb29354-4097-47c0-a1a6-8693f0c8fef4", + "direction": "outgoing", + "index": 130205, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.072-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=727e6bd9-2aa6-4552-899d-7949d52ea340\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1eabe0c6-fd71-4372-a955-8446c0d29376", + "direction": "outgoing", + "index": 130206, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.082-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=727e6bd9-2aa6-4552-899d-7949d52ea340\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "913db860-dc21-4afa-a40e-30a241f41901", + "direction": "outgoing", + "index": 130207, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.093-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=85", + "verb": "get" + }, + { + "id": "a62db632-6a76-497e-b77f-67d28175972c", + "direction": "outgoing", + "index": 130208, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.103-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=355", + "verb": "get" + }, + { + "id": "8ae94d52-a9d1-4ce8-8e5f-eb9779a6afb6", + "direction": "outgoing", + "index": 130209, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=355", + "verb": "get" + }, + { + "id": "8ae7f4c1-c052-4847-be39-27199dabf193", + "direction": "outgoing", + "index": 130210, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.128-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355", + "verb": "get" + }, + { + "id": "b8aad8bc-c54d-4058-95ee-133f4144d92f", + "direction": "outgoing", + "index": 130211, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c2ae8a0f-423d-421c-a027-43053198d982", + "direction": "outgoing", + "index": 130212, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0f99135c-af42-4a60-87ca-1186822950d0", + "direction": "outgoing", + "index": 130213, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7de55142-3de2-4b56-9359-26a7804589d0", + "direction": "outgoing", + "index": 130214, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.178-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b21545cb-3d1b-4867-9326-6dc3315793a0", + "direction": "outgoing", + "index": 130215, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a23f144d-c79d-48ba-abb7-216286b2b972", + "direction": "outgoing", + "index": 130216, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.202-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c91d95ba-e0de-4540-8664-cf494fccdb54", + "direction": "outgoing", + "index": 130217, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.214-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5e6085b2-baf1-4e98-8e58-862273674e97", + "direction": "outgoing", + "index": 130218, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.227-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "69ddd2fe-c6fb-4f0e-9a54-86290aa59b1b", + "direction": "outgoing", + "index": 130219, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.238-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fc54a33a-e51c-4dba-b64b-32c549acdadb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fd851922-45af-4097-a8c3-26cd03efa7d6", + "direction": "outgoing", + "index": 130220, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=355", + "verb": "get" + }, + { + "id": "aff735c7-7b6a-4d90-b789-a122a53746a4", + "direction": "outgoing", + "index": 130221, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11367-0\u0026patient=908", + "verb": "get" + }, + { + "id": "13eefa2f-7897-466c-b3e8-d8ec4b9718f2", + "direction": "outgoing", + "index": 130222, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.271-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=401201003\u0026patient=908", + "verb": "get" + }, + { + "id": "59a6a217-c2bb-4285-919b-5cea1c6218ce", + "direction": "outgoing", + "index": 130223, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=908", + "verb": "get" + }, + { + "id": "ca8e5cb0-6a4a-4694-97ed-f3497f34168e", + "direction": "outgoing", + "index": 130224, + "result_id": "090300f1-83bd-47e9-ab6e-94a68ffee416", + "status": 200, + "timestamp": "2026-05-22T12:40:20.291-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=782516008\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:19.857-04:00" + }, + { + "id": "0f10c012-2c14-46db-a0d1-272d6d9a6731", + "created_at": "2026-05-22T12:40:23.671-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'Smoking Status Type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.6|20240222), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#401201003)", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa07ccd7-e674-43ec-85f0-47f56c1405af: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#449868002)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#266919005)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking status comprehensive' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.3|20240217), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:23.671-04:00" + }, + { + "id": "adb7f9b4-1112-40a3-aceb-0024b666d178", + "created_at": "2026-05-22T12:40:24.117-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:24.117-04:00" + }, + { + "id": "c093932e-0dda-42d9-a670-d8875539211b", + "created_at": "2026-05-22T12:40:24.120-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus-us_core_v800_smokingstatus_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:24.120-04:00" + }, + { + "id": "989a85e2-b3f5-4d7e-acb5-3506ded6b40d", + "created_at": "2026-05-22T12:40:24.121-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_smokingstatus", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:24.121-04:00" + }, + { + "id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "created_at": "2026-05-22T12:40:24.797-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "be3dd4cd-188a-4bb9-9409-73003453e5f4", + "direction": "outgoing", + "index": 130225, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.801-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "5e9ec114-92eb-43d7-836d-fdbde0545344", + "direction": "outgoing", + "index": 130226, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "502a5aba-e137-413a-a692-853bb5fc0b47", + "direction": "outgoing", + "index": 130227, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "40ab26ae-5e26-4016-889d-4f0c53bced6a", + "direction": "outgoing", + "index": 130228, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.850-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "8b2ffece-6823-4e6d-8af9-563b050c191a", + "direction": "outgoing", + "index": 130229, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355", + "verb": "get" + }, + { + "id": "8f6932d2-bfa6-4a1c-bce6-086f6dfaaa80", + "direction": "outgoing", + "index": 130230, + "result_id": "ffd3d8d4-05d9-40ce-829d-75db2fa5214b", + "status": 200, + "timestamp": "2026-05-22T12:40:24.874-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:24.797-04:00" + }, + { + "id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "created_at": "2026-05-22T12:40:26.200-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b5e2f7d0-1042-4c12-b169-353cf51e0fb0", + "direction": "outgoing", + "index": 130231, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "2b4104ae-5a2f-47ea-8679-cf195350a040", + "direction": "outgoing", + "index": 130232, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6ef0fc56-aa50-4d17-b056-1828d53cade6", + "direction": "outgoing", + "index": 130233, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.239-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5fc987ca-bf8e-49c6-9020-e062c6d8400d", + "direction": "outgoing", + "index": 130234, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.253-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f8f5584a-c950-4d87-9b9b-2d7187c349cd", + "direction": "outgoing", + "index": 130235, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.277-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=987561a5-3ab4-46a8-83e2-59d32b24b8f2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "229df2d9-9056-42d0-b5bf-7c76ced80e2b", + "direction": "outgoing", + "index": 130236, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.294-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "30b6a46c-1210-4335-80eb-e22affbc6956", + "direction": "outgoing", + "index": 130237, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.442-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "708fbdcd-b331-4386-8e92-7244cc5d5a42", + "direction": "outgoing", + "index": 130238, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.457-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a988500e-03e6-48b1-a2ec-9a88c80a1322", + "direction": "outgoing", + "index": 130239, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a57de53f-3dbc-4a84-8120-a8559885d37d", + "direction": "outgoing", + "index": 130240, + "result_id": "4af75df8-559a-4c9a-9ea3-a8a7178a0e2b", + "status": 200, + "timestamp": "2026-05-22T12:40:26.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d2b7a4b6-2e88-4463-9d74-cd98cc392b0f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:26.200-04:00" + }, + { + "id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "created_at": "2026-05-22T12:40:27.820-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e8a53c27-d364-4aa9-a44f-b934d4589b05", + "direction": "outgoing", + "index": 130241, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85", + "verb": "get" + }, + { + "id": "082aa1b1-4856-4861-9e78-34596056d1f7", + "direction": "outgoing", + "index": 130242, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.838-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d8c2f066-fae7-4863-bda4-044381717b9d", + "direction": "outgoing", + "index": 130243, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.851-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ae6afa08-60b0-4822-b686-151ce470857d", + "direction": "outgoing", + "index": 130244, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.865-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3eab6b6e-5150-40dc-87cc-3f2bbc9e5c1d", + "direction": "outgoing", + "index": 130245, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.880-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=59d35822-c9ce-4c78-b860-3b08027b7346\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1e0b74c4-a2c6-456c-b472-b5e87f03a8f7", + "direction": "outgoing", + "index": 130246, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85", + "verb": "get" + }, + { + "id": "55654066-8d43-44c0-bbad-2db27cabe49b", + "direction": "outgoing", + "index": 130247, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.909-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "384a7c90-e437-47c6-b07d-5a3db2f4adea", + "direction": "outgoing", + "index": 130248, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.922-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3ea17281-9dbc-4b1a-9749-afff16f4e219", + "direction": "outgoing", + "index": 130249, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.932-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a85e563e-c4ea-4bab-b8cd-ef523e3c2c7c", + "direction": "outgoing", + "index": 130250, + "result_id": "3f9ffac2-4b3e-483e-9d0a-590b94a0c15b", + "status": 200, + "timestamp": "2026-05-22T12:40:27.943-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=8ae716a5-3290-4408-8a19-cc67b6efe7f6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:27.820-04:00" + }, + { + "id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "created_at": "2026-05-22T12:40:30.565-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "9fddedfe-6798-4f9f-b3b1-bd195c82f764", + "direction": "outgoing", + "index": 130251, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "f9f3efae-b806-4172-a86b-cd160337f048", + "direction": "outgoing", + "index": 130252, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "72c7e3de-8e43-43c1-ae7f-f98551d89710", + "direction": "outgoing", + "index": 130253, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.617-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b8bb7fed-53a1-477f-9a5b-dcd04025f9ff", + "direction": "outgoing", + "index": 130254, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "49bb6064-ae00-4ffd-8511-884f308caebd", + "direction": "outgoing", + "index": 130255, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.646-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d04a68ce-bda8-4509-adaf-e3df155394cd\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a7ab5b5b-de19-4fd9-a030-9e0b6e65df87", + "direction": "outgoing", + "index": 130256, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.658-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "c5174fdb-cc30-44fb-ab6c-ba2094a3c63b", + "direction": "outgoing", + "index": 130257, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.670-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6f7e8b83-069f-4b9d-abf4-1fe6ae5c71ae", + "direction": "outgoing", + "index": 130258, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.683-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c7c679e1-f320-4aa9-a85d-128c0ea88029", + "direction": "outgoing", + "index": 130259, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.696-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "40de18b6-411e-4887-b867-fb8297805f36", + "direction": "outgoing", + "index": 130260, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.707-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e99b4126-83d4-48c4-885a-9a202f39aa38\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9f9fd9ce-2265-4dca-bc87-ac0ffa06d7d8", + "direction": "outgoing", + "index": 130261, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.719-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "47f2ba56-66cb-4969-a2df-391c5398ac8d", + "direction": "outgoing", + "index": 130262, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9a452d78-2b97-4159-a979-f0e4ef6df3e5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "bd0eb743-a644-4b41-aa4e-a987b127df07", + "direction": "outgoing", + "index": 130263, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9a452d78-2b97-4159-a979-f0e4ef6df3e5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e3ebdd58-a502-4462-aeb3-297036068983", + "direction": "outgoing", + "index": 130264, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9a452d78-2b97-4159-a979-f0e4ef6df3e5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a0e7e238-b98d-4899-b5a8-4028eda7708f", + "direction": "outgoing", + "index": 130265, + "result_id": "a608eebe-471e-4704-83ea-8ecde1e9fab1", + "status": 200, + "timestamp": "2026-05-22T12:40:30.760-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9a452d78-2b97-4159-a979-f0e4ef6df3e5\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:30.565-04:00" + }, + { + "id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "created_at": "2026-05-22T12:40:33.608-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f31c2c38-f348-49a9-99eb-a8aac6540c66", + "direction": "outgoing", + "index": 130266, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d07e5b29-7750-49f2-99b9-a8eaf9b5416c", + "direction": "outgoing", + "index": 130267, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.635-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "675e06a5-73b6-4107-a8d6-23b92c78460b", + "direction": "outgoing", + "index": 130268, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.651-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "1d12b206-946d-46ed-9555-8cdab04aecdf", + "direction": "outgoing", + "index": 130269, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.665-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "29c2773c-b149-494b-9e8a-88e7531f7527", + "direction": "outgoing", + "index": 130270, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1dd37dc7-1a2e-434a-98fb-6ca9836a86c6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f51ed8cc-1240-41a6-9175-01179f1102e7", + "direction": "outgoing", + "index": 130271, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.690-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1dd37dc7-1a2e-434a-98fb-6ca9836a86c6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cfaa4e09-dc6c-47e3-aa7d-256d6bb571c8", + "direction": "outgoing", + "index": 130272, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.704-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1dd37dc7-1a2e-434a-98fb-6ca9836a86c6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ee38f7d5-9580-4e58-b254-d68e9b82f911", + "direction": "outgoing", + "index": 130273, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f49d7ba3-b3df-4596-8e1e-84678d5a885d", + "direction": "outgoing", + "index": 130274, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.722-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=afeb8a95-2d6c-405e-9fe0-1519dbd4f208\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "25d9a619-3eb2-4280-b678-2d881923d5be", + "direction": "outgoing", + "index": 130275, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.733-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=afeb8a95-2d6c-405e-9fe0-1519dbd4f208\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5f99c929-4809-47be-a100-2404b635a4aa", + "direction": "outgoing", + "index": 130276, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.745-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=afeb8a95-2d6c-405e-9fe0-1519dbd4f208\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5069651b-3639-4de0-81d1-7c0995d3d2f4", + "direction": "outgoing", + "index": 130277, + "result_id": "320c1c74-6fa9-4648-8a87-877f0893e9de", + "status": 200, + "timestamp": "2026-05-22T12:40:33.755-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:33.608-04:00" + }, + { + "id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "created_at": "2026-05-22T12:40:34.520-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "7222f8ea-cc37-4dd2-a621-a94403381536", + "direction": "outgoing", + "index": 130278, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.535-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "eb4ef0d5-7684-40b5-a488-878c78d6aec5", + "direction": "outgoing", + "index": 130279, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.558-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "38934003-bd80-409d-a401-aa28249a7fb7", + "direction": "outgoing", + "index": 130280, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.573-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2dea04c3-13da-4fba-9463-50d37848a792", + "direction": "outgoing", + "index": 130281, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.585-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a11851b8-803a-4af5-8cb9-eaf67b82921d", + "direction": "outgoing", + "index": 130282, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.604-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85", + "verb": "get" + }, + { + "id": "eb1a4095-7814-4194-9244-a0fe58d47016", + "direction": "outgoing", + "index": 130283, + "result_id": "a9413df9-53c4-47cc-a6d1-954ea8382fde", + "status": 200, + "timestamp": "2026-05-22T12:40:34.615-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:34.520-04:00" + }, + { + "id": "11e53151-0fa1-4f78-95ca-ec8265fa3fed", + "created_at": "2026-05-22T12:40:34.740-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "23a622bb-31b2-4e13-8490-333e0dc31d82", + "direction": "outgoing", + "index": 130284, + "result_id": "11e53151-0fa1-4f78-95ca-ec8265fa3fed", + "status": 200, + "timestamp": "2026-05-22T12:40:34.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:34.740-04:00" + }, + { + "id": "93c39fc5-1412-439a-a664-1a0e986dc553", + "created_at": "2026-05-22T12:40:35.179-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c17df149-6f07-46d8-a9d1-8952928e6f54", + "direction": "outgoing", + "index": 130285, + "result_id": "93c39fc5-1412-439a-a664-1a0e986dc553", + "status": 200, + "timestamp": "2026-05-22T12:40:35.183-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=85", + "verb": "get" + }, + { + "id": "42b0953f-11ac-44fc-9bd0-111dff64b76b", + "direction": "outgoing", + "index": 130286, + "result_id": "93c39fc5-1412-439a-a664-1a0e986dc553", + "status": 200, + "timestamp": "2026-05-22T12:40:35.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=355", + "verb": "get" + }, + { + "id": "6f80fdb7-da1f-4483-baed-bc9e46c44e12", + "direction": "outgoing", + "index": 130287, + "result_id": "93c39fc5-1412-439a-a664-1a0e986dc553", + "status": 200, + "timestamp": "2026-05-22T12:40:35.218-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:35.179-04:00" + }, + { + "id": "a7a7864e-f53e-402a-bbba-04cf9633769f", + "created_at": "2026-05-22T12:40:35.261-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:35.261-04:00" + }, + { + "id": "b74b6e8c-fba2-45f4-b08c-796f67832d8f", + "created_at": "2026-05-22T12:40:35.266-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:35.266-04:00" + }, + { + "id": "4a2f87f1-cefb-4305-8dfb-86d210775465", + "created_at": "2026-05-22T12:40:35.268-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation-us_core_v800_observation_sexual_orientation_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:35.268-04:00" + }, + { + "id": "83059d26-d4cc-4455-9e4b-c1568c1ad844", + "created_at": "2026-05-22T12:40:35.269-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_sexual_orientation", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:35.269-04:00" + }, + { + "id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "created_at": "2026-05-22T12:40:36.039-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "00963907-b8d2-45bd-8cd9-0e51bfc836b5", + "direction": "outgoing", + "index": 130288, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.041-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "5f5151e1-ceb5-49b1-9f5b-5749382fb44a", + "direction": "outgoing", + "index": 130289, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "c944b221-0f1c-4d82-98c9-1d8bacb69e43", + "direction": "outgoing", + "index": 130290, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.076-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "737bb138-e508-4f18-9805-e2797b23c1b3", + "direction": "outgoing", + "index": 130291, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "035ba08a-6947-4cc4-8fa7-71349fa910f9", + "direction": "outgoing", + "index": 130292, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355", + "verb": "get" + }, + { + "id": "96878bbd-1adb-4335-b33f-32ea8a88aa75", + "direction": "outgoing", + "index": 130293, + "result_id": "2f653145-2591-48c3-9d5a-db4b6d24f445", + "status": 200, + "timestamp": "2026-05-22T12:40:36.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:36.039-04:00" + }, + { + "id": "45b9fb66-4011-4bf3-9cf4-56e06388653e", + "created_at": "2026-05-22T12:40:36.571-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0a387215-1c00-4255-afab-324741ecc733", + "direction": "outgoing", + "index": 130294, + "result_id": "45b9fb66-4011-4bf3-9cf4-56e06388653e", + "status": 200, + "timestamp": "2026-05-22T12:40:36.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "30c2187f-b215-46d7-9bfd-502db9cc9ce9", + "direction": "outgoing", + "index": 130295, + "result_id": "45b9fb66-4011-4bf3-9cf4-56e06388653e", + "status": 200, + "timestamp": "2026-05-22T12:40:36.590-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:36.571-04:00" + }, + { + "id": "60e5c976-1fb2-47b1-9ad4-b8c5a00ed7fd", + "created_at": "2026-05-22T12:40:36.879-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fcceb2fe-f1bd-47aa-a3a3-9ec154726b76", + "direction": "outgoing", + "index": 130296, + "result_id": "60e5c976-1fb2-47b1-9ad4-b8c5a00ed7fd", + "status": 200, + "timestamp": "2026-05-22T12:40:36.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "9e8549b9-b30e-4eeb-a30c-805c033a3cf7", + "direction": "outgoing", + "index": 130297, + "result_id": "60e5c976-1fb2-47b1-9ad4-b8c5a00ed7fd", + "status": 200, + "timestamp": "2026-05-22T12:40:36.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:36.879-04:00" + }, + { + "id": "6229eed1-c13f-473f-9149-f4c35f09f084", + "created_at": "2026-05-22T12:40:37.311-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c555e724-70f2-4feb-895e-7473ab0cacf8", + "direction": "outgoing", + "index": 130298, + "result_id": "6229eed1-c13f-473f-9149-f4c35f09f084", + "status": 200, + "timestamp": "2026-05-22T12:40:37.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "8bb1bbfd-18f1-489f-b12a-cec15131f1c0", + "direction": "outgoing", + "index": 130299, + "result_id": "6229eed1-c13f-473f-9149-f4c35f09f084", + "status": 200, + "timestamp": "2026-05-22T12:40:37.332-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "c9f98bad-3391-4202-8bd2-abb6019f0b78", + "direction": "outgoing", + "index": 130300, + "result_id": "6229eed1-c13f-473f-9149-f4c35f09f084", + "status": 200, + "timestamp": "2026-05-22T12:40:37.346-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:37.311-04:00" + }, + { + "id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "created_at": "2026-05-22T12:40:38.200-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fc971497-eecb-4e6d-8b69-d6632ac6d71e", + "direction": "outgoing", + "index": 130301, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.206-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "756ccbb3-46bd-43ce-a2e4-075fceb4752e", + "direction": "outgoing", + "index": 130302, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.227-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b50c922b-100f-4e62-a521-2cab9f1d311b", + "direction": "outgoing", + "index": 130303, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "a6099846-671b-4ea7-b865-b65dc3738468", + "direction": "outgoing", + "index": 130304, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7e5a7733-ea0e-4551-83d3-a27318aa6e81", + "direction": "outgoing", + "index": 130305, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.262-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "853028ea-fd4e-4f41-acc5-68604be1f0e3", + "direction": "outgoing", + "index": 130306, + "result_id": "82428485-d205-4abf-9ad9-3d10f0fc4a90", + "status": 200, + "timestamp": "2026-05-22T12:40:38.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:38.200-04:00" + }, + { + "id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "created_at": "2026-05-22T12:40:39.054-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "715a1a8e-4e7a-4102-9eba-f4dbfe5d1892", + "direction": "outgoing", + "index": 130307, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.057-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "746d9c75-650e-444a-8474-cc166a58dd47", + "direction": "outgoing", + "index": 130308, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.226-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f0f2ecee-7a0a-470c-b51d-e87ad5e0ff02", + "direction": "outgoing", + "index": 130309, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b8ccb9d0-fbe0-4926-8f53-6b92a42c7cd1", + "direction": "outgoing", + "index": 130310, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "069dd93a-5d56-4134-8bb9-c94464aebfe5", + "direction": "outgoing", + "index": 130311, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.262-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85", + "verb": "get" + }, + { + "id": "45749e8b-4a71-411b-9d8d-791256a835b0", + "direction": "outgoing", + "index": 130312, + "result_id": "d36403e9-dd58-457e-9757-3a072bcfc522", + "status": 200, + "timestamp": "2026-05-22T12:40:39.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:39.054-04:00" + }, + { + "id": "a7ec79db-7b65-4f51-b40e-d970eda072a5", + "created_at": "2026-05-22T12:40:39.384-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "6b84ea7a-3c04-4a58-a198-74163c4bf725", + "direction": "outgoing", + "index": 130313, + "result_id": "a7ec79db-7b65-4f51-b40e-d970eda072a5", + "status": 200, + "timestamp": "2026-05-22T12:40:39.386-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:39.384-04:00" + }, + { + "id": "2841d97e-9691-4ff2-b949-76237a3b583e", + "created_at": "2026-05-22T12:40:39.815-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e94dd8b7-30dd-44f8-a231-c160acfb1f5b", + "direction": "outgoing", + "index": 130314, + "result_id": "2841d97e-9691-4ff2-b949-76237a3b583e", + "status": 200, + "timestamp": "2026-05-22T12:40:39.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85", + "verb": "get" + }, + { + "id": "539ed3b9-8d32-4364-9538-fb7fee212e67", + "direction": "outgoing", + "index": 130315, + "result_id": "2841d97e-9691-4ff2-b949-76237a3b583e", + "status": 200, + "timestamp": "2026-05-22T12:40:39.850-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355", + "verb": "get" + }, + { + "id": "685aaee0-6ee5-4dc5-b6f4-693836bc9b1f", + "direction": "outgoing", + "index": 130316, + "result_id": "2841d97e-9691-4ff2-b949-76237a3b583e", + "status": 200, + "timestamp": "2026-05-22T12:40:39.870-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:39.815-04:00" + }, + { + "id": "c6b21589-fb94-4e52-829c-9e891570d9ae", + "created_at": "2026-05-22T12:40:40.878-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:40.878-04:00" + }, + { + "id": "0f7c44a1-f819-4151-9597-b8377201a4e2", + "created_at": "2026-05-22T12:40:40.896-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:40.896-04:00" + }, + { + "id": "b67ee221-2dd0-49ba-b8da-d09884d76ae0", + "created_at": "2026-05-22T12:40:40.905-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference-us_core_v800_head_circumference_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:40.905-04:00" + }, + { + "id": "c27aa5bf-70c8-4474-abbe-47b3dac72445", + "created_at": "2026-05-22T12:40:40.907-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:40.907-04:00" + }, + { + "id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "created_at": "2026-05-22T12:40:42.677-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8d23e5c3-decd-4b20-994a-36bedcab846c", + "direction": "outgoing", + "index": 130317, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "836694e8-9d9d-4121-bca2-c6034a2b9165", + "direction": "outgoing", + "index": 130318, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.699-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "2548fdd2-85d8-40a0-b7b0-070a08a07f21", + "direction": "outgoing", + "index": 130319, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.714-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "cb92cb29-b8a1-4369-b2f0-078e1ba000c0", + "direction": "outgoing", + "index": 130320, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.728-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "e00dec28-5af8-4968-aecb-08ec7ecb25cf", + "direction": "outgoing", + "index": 130321, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "1e256a9d-2a27-4dcb-a1e4-d2587b9fa9bc", + "direction": "outgoing", + "index": 130322, + "result_id": "bcfe2667-b93f-4cc6-8053-5a64bbabc12b", + "status": 200, + "timestamp": "2026-05-22T12:40:42.749-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:42.677-04:00" + }, + { + "id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "created_at": "2026-05-22T12:40:44.723-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1755cb55-88d4-4e2f-9b13-c270708db6ac", + "direction": "outgoing", + "index": 130323, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.730-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "04060581-fba9-490c-9edb-2b24243ae523", + "direction": "outgoing", + "index": 130324, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.751-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d2bba0ec-0027-46e3-87a0-4815a0e2925f", + "direction": "outgoing", + "index": 130325, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.769-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "661eb7c7-b55b-49aa-814b-fec2458d8d52", + "direction": "outgoing", + "index": 130326, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "dc1486d1-987b-4420-949d-fcffc49cef40", + "direction": "outgoing", + "index": 130327, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.795-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d1f9c9c9-648c-4111-8a65-64e20cd0e7bb", + "direction": "outgoing", + "index": 130328, + "result_id": "f6173e3f-5bd7-4ae4-967e-bf4e6cf87f5f", + "status": 200, + "timestamp": "2026-05-22T12:40:44.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:44.723-04:00" + }, + { + "id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "created_at": "2026-05-22T12:40:46.757-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e1e7f725-13b9-40fc-a7c5-bed4306df065", + "direction": "outgoing", + "index": 130329, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.763-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "f1dedcaa-1e65-4502-a0ba-62074bb0eb6a", + "direction": "outgoing", + "index": 130330, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "049c346e-9ac1-4d7b-9ef5-7631790c9dd6", + "direction": "outgoing", + "index": 130331, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5adeb4b7-3a2f-406c-8077-ee7db29253a2", + "direction": "outgoing", + "index": 130332, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "9e4fffea-73b2-482f-b526-1bf8beae1d9c", + "direction": "outgoing", + "index": 130333, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e0d73c44-f13d-4d0a-8333-d77d9b769d77", + "direction": "outgoing", + "index": 130334, + "result_id": "745de7c7-9e27-4a70-8ff7-16f9fc28d3d8", + "status": 200, + "timestamp": "2026-05-22T12:40:46.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:46.757-04:00" + }, + { + "id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "created_at": "2026-05-22T12:40:49.830-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "60bae7aa-5bec-44bc-945d-f381bf2e44d6", + "direction": "outgoing", + "index": 130335, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.836-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "5fe5e559-7e72-4d2e-af76-ee58a176c1ad", + "direction": "outgoing", + "index": 130336, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.856-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cee086a3-ca73-41c1-8c72-64b2b3f4efc5", + "direction": "outgoing", + "index": 130337, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ddc4592c-8225-4876-9783-2b1b54842e99", + "direction": "outgoing", + "index": 130338, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.889-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "3db260a8-9475-4fa0-a925-5dd2a4cc4131", + "direction": "outgoing", + "index": 130339, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.900-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "36d5701d-23bf-4816-b6ac-8c31822e3585", + "direction": "outgoing", + "index": 130340, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.912-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "54359bc8-d40f-417d-b57d-9234c26cf38b", + "direction": "outgoing", + "index": 130341, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "93d77b7e-60cb-4afd-b879-bc20999bd783", + "direction": "outgoing", + "index": 130342, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.935-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c3827edf-f79a-4df1-879d-4edb48a5f45f", + "direction": "outgoing", + "index": 130343, + "result_id": "2686d759-3e04-4226-b791-30e3c1b2fa0a", + "status": 200, + "timestamp": "2026-05-22T12:40:49.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:49.830-04:00" + }, + { + "id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "created_at": "2026-05-22T12:40:52.192-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4c034a7d-43d2-4ff4-a678-6998b499665c", + "direction": "outgoing", + "index": 130344, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.194-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "41117c0b-b005-4818-8f94-5adb93d55605", + "direction": "outgoing", + "index": 130345, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "aaa7e451-e3c0-41d2-9711-8d51570831e1", + "direction": "outgoing", + "index": 130346, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=e559d651-5790-4b88-8706-f4155bd9e061\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6bcd4367-04e5-4f5d-84fb-82f7cab6741d", + "direction": "outgoing", + "index": 130347, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.232-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "abeab709-a46f-4d6e-8a85-f0ca46e08020", + "direction": "outgoing", + "index": 130348, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.244-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=de880d39-269d-47fd-b3a5-2a2caba1534c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "66c30db1-d10a-46c6-8f4e-3c7902164902", + "direction": "outgoing", + "index": 130349, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "16281159-03b7-494e-9fc6-539384527885", + "direction": "outgoing", + "index": 130350, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ea8c2f0f-e132-4d4d-bbd2-9f39a882f494", + "direction": "outgoing", + "index": 130351, + "result_id": "2510734c-c9ac-4c16-9ca5-febceccb8496", + "status": 200, + "timestamp": "2026-05-22T12:40:52.277-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:52.192-04:00" + }, + { + "id": "7f646390-1b6c-409c-8092-274384a281a8", + "created_at": "2026-05-22T12:40:53.168-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0549783a-32e3-4607-8cb1-ed9bce2fc97b", + "direction": "outgoing", + "index": 130352, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.177-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "db7aea5a-5908-4234-8021-12a56a4cd61c", + "direction": "outgoing", + "index": 130353, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.201-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8a816371-680d-4ab4-88a1-e81549fe94d1", + "direction": "outgoing", + "index": 130354, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.219-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "c0feb20a-067b-4bed-82ff-cc1f5184ee26", + "direction": "outgoing", + "index": 130355, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "04e437cf-5c8a-4e4d-b7a8-dce43853e7d1", + "direction": "outgoing", + "index": 130356, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.245-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7aa48d35-b521-4828-bce0-dba1fcbeb0e1", + "direction": "outgoing", + "index": 130357, + "result_id": "7f646390-1b6c-409c-8092-274384a281a8", + "status": 200, + "timestamp": "2026-05-22T12:40:53.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:53.168-04:00" + }, + { + "id": "73f6dc57-6e52-4654-ad41-c9d2a5a83479", + "created_at": "2026-05-22T12:40:53.370-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2e3b3e16-001d-4485-b8c8-011d6cc818bb", + "direction": "outgoing", + "index": 130358, + "result_id": "73f6dc57-6e52-4654-ad41-c9d2a5a83479", + "status": 200, + "timestamp": "2026-05-22T12:40:53.373-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:53.370-04:00" + }, + { + "id": "3503bfaf-dd3d-4d8e-bcef-7da4b382be97", + "created_at": "2026-05-22T12:40:53.825-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9abbae32-c497-4126-9756-d98b809f42f9", + "direction": "outgoing", + "index": 130359, + "result_id": "3503bfaf-dd3d-4d8e-bcef-7da4b382be97", + "status": 200, + "timestamp": "2026-05-22T12:40:53.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85", + "verb": "get" + }, + { + "id": "d859ecac-313d-452a-a236-2925989d9f89", + "direction": "outgoing", + "index": 130360, + "result_id": "3503bfaf-dd3d-4d8e-bcef-7da4b382be97", + "status": 200, + "timestamp": "2026-05-22T12:40:53.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355", + "verb": "get" + }, + { + "id": "6fa553c3-3cd5-487d-adbc-e4cca337e40b", + "direction": "outgoing", + "index": 130361, + "result_id": "3503bfaf-dd3d-4d8e-bcef-7da4b382be97", + "status": 200, + "timestamp": "2026-05-22T12:40:53.862-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:53.825-04:00" + }, + { + "id": "600ff3bc-514d-4e3d-8244-757fb226b215", + "created_at": "2026-05-22T12:40:54.394-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:54.394-04:00" + }, + { + "id": "53994538-a642-4378-8816-7cd9d7c54a36", + "created_at": "2026-05-22T12:40:54.419-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:54.419-04:00" + }, + { + "id": "8c802d2a-61e3-4e1e-a735-c07902140a63", + "created_at": "2026-05-22T12:40:54.422-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height-us_core_v800_body_height_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:54.422-04:00" + }, + { + "id": "5cbfeb8d-eda8-4c56-a68b-e09d9ea724b2", + "created_at": "2026-05-22T12:40:54.424-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_height", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:54.424-04:00" + }, + { + "id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "created_at": "2026-05-22T12:40:55.166-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7f3fe54b-7e72-4059-9fcf-76dd466335b1", + "direction": "outgoing", + "index": 130362, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.168-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85", + "verb": "get" + }, + { + "id": "663ccf70-7701-4dfb-8d56-d8d19a69a9ff", + "direction": "outgoing", + "index": 130363, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.183-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "59d23035-c4aa-4f97-9083-fa5ed8322885", + "direction": "outgoing", + "index": 130364, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.195-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "3ab3d1b0-cf07-448c-9cae-e73385c6cbef", + "direction": "outgoing", + "index": 130365, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.207-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "bef8ca1d-f1c1-41dd-8365-d90e55d133c9", + "direction": "outgoing", + "index": 130366, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.221-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "f2635306-00ea-422f-8468-c9ff20506bc4", + "direction": "outgoing", + "index": 130367, + "result_id": "eadcfcd9-87d3-4762-bef5-f6520af83a87", + "status": 200, + "timestamp": "2026-05-22T12:40:55.231-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:55.166-04:00" + }, + { + "id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "created_at": "2026-05-22T12:40:56.206-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fd74b8b1-c1d4-4e91-9a14-544567aa297e", + "direction": "outgoing", + "index": 130368, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "b418bc77-2e24-47aa-acc9-58af22d8511d", + "direction": "outgoing", + "index": 130369, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.234-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "59caefe8-9e8f-4163-81da-e0f93ab9aad2", + "direction": "outgoing", + "index": 130370, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.250-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff32afd0-2430-4d2f-ba5d-8d26d2c7c72b", + "direction": "outgoing", + "index": 130371, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "f6557263-0fff-4a7f-9072-b6dbe2377881", + "direction": "outgoing", + "index": 130372, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.278-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7020be6f-8877-40df-b13a-bd7e105572f6", + "direction": "outgoing", + "index": 130373, + "result_id": "62084ae6-bdee-463f-ae09-a648acd4f562", + "status": 200, + "timestamp": "2026-05-22T12:40:56.290-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:56.206-04:00" + }, + { + "id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "created_at": "2026-05-22T12:40:57.254-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "faf51e4e-fc9b-4337-919e-4dcf663b11eb", + "direction": "outgoing", + "index": 130374, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.260-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ceeee459-c1be-47c5-a7d6-213a4515999e", + "direction": "outgoing", + "index": 130375, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c9dc469a-c697-47ff-8077-dda0afd677d1", + "direction": "outgoing", + "index": 130376, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a80a8c9e-c39d-45a0-87a3-ac71cb994cd2", + "direction": "outgoing", + "index": 130377, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.315-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "de778e85-fa1e-4fd1-9d0c-857cd1914f18", + "direction": "outgoing", + "index": 130378, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0cd033d1-1aec-46dc-8230-da2f0b678520", + "direction": "outgoing", + "index": 130379, + "result_id": "dbb832eb-aaca-4c34-b677-3836beda838e", + "status": 200, + "timestamp": "2026-05-22T12:40:57.337-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:57.254-04:00" + }, + { + "id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "created_at": "2026-05-22T12:40:58.709-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "064af751-d7e0-4825-a388-8089ca37f98e", + "direction": "outgoing", + "index": 130380, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.713-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "627b1b66-567a-497d-ac80-278a568e36cc", + "direction": "outgoing", + "index": 130381, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.739-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "994544f0-85fe-42ce-9f4f-4325af57332f", + "direction": "outgoing", + "index": 130382, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.753-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff4b203f-c408-45ab-a5ac-1d473599b215", + "direction": "outgoing", + "index": 130383, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "1a2ef53c-5b19-4909-b5a6-ca4e552b1ca1", + "direction": "outgoing", + "index": 130384, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.781-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "34da7c31-446e-402a-a8d0-07e09953c0d9", + "direction": "outgoing", + "index": 130385, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.794-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1a6d236-0a66-4255-96f9-f9f05cc2cbcc", + "direction": "outgoing", + "index": 130386, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "26c58f32-31f0-419e-94bb-f7680b14559a", + "direction": "outgoing", + "index": 130387, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.814-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1c1f6b3e-e603-4c3f-b2b6-6f0e89b3a1e6", + "direction": "outgoing", + "index": 130388, + "result_id": "52d92e99-dc4d-4c5c-af00-475049b5ccfe", + "status": 200, + "timestamp": "2026-05-22T12:40:58.825-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:40:58.709-04:00" + }, + { + "id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "created_at": "2026-05-22T12:41:01.451-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "eb215bfc-d8d3-4ae2-b3b9-8ec225cf5ccd", + "direction": "outgoing", + "index": 130389, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.452-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1fa9917f-c46a-4e32-936a-9e789814c5db", + "direction": "outgoing", + "index": 130390, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.463-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2defeadf-51e7-4fb4-a9d9-c91edb84b1cb", + "direction": "outgoing", + "index": 130391, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.473-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "39a55aa0-3ed3-43fc-88d1-12a5b3989ede", + "direction": "outgoing", + "index": 130392, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.481-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2e7db069-fd14-4396-af66-c91fa48bb691", + "direction": "outgoing", + "index": 130393, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.491-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7092cdd2-a780-468a-98d3-62d2420088d5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "63af09a4-c00c-42ce-b1cf-dc8715dec4d1", + "direction": "outgoing", + "index": 130394, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.502-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=7092cdd2-a780-468a-98d3-62d2420088d5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ce86ffa3-9999-4aad-b5fa-9b4b1f2a2edd", + "direction": "outgoing", + "index": 130395, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "419d5f35-d688-4888-9722-eb1b15c1d64b", + "direction": "outgoing", + "index": 130396, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=95375543-0a4d-469d-aa55-96f9e688ad0e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "090529a6-59d1-4fa8-9086-3df18535ce6b", + "direction": "outgoing", + "index": 130397, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.534-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=95375543-0a4d-469d-aa55-96f9e688ad0e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0d88f5ae-35cc-48be-aace-a640b9c0cf3a", + "direction": "outgoing", + "index": 130398, + "result_id": "b79bad95-9d5b-4f93-90c3-ca017c59ecd7", + "status": 200, + "timestamp": "2026-05-22T12:41:01.547-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:01.451-04:00" + }, + { + "id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "created_at": "2026-05-22T12:41:02.319-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "85f2eea6-5840-4722-9deb-fda24dbb86c8", + "direction": "outgoing", + "index": 130399, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "57c080b3-b1e8-481c-9a4a-f300dc72612f", + "direction": "outgoing", + "index": 130400, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.349-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d9b3db09-474e-4b0a-98ff-dcaaf61c242c", + "direction": "outgoing", + "index": 130401, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3a21c4cf-ee9c-46c0-8bbb-14a4be6b2b82", + "direction": "outgoing", + "index": 130402, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3c00d809-36dc-4969-aa1c-98b3185c8548", + "direction": "outgoing", + "index": 130403, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.392-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "734bfa82-aa8d-4c99-8900-47bb3d002aa9", + "direction": "outgoing", + "index": 130404, + "result_id": "cdf01e9f-dfa1-4362-bd4e-e5cda2829e41", + "status": 200, + "timestamp": "2026-05-22T12:41:02.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:02.319-04:00" + }, + { + "id": "0ce5bc4e-f23e-4872-b096-d7a87f8aa918", + "created_at": "2026-05-22T12:41:02.588-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c74d2b9a-d3eb-4fb3-9d09-dc41f3cf8078", + "direction": "outgoing", + "index": 130405, + "result_id": "0ce5bc4e-f23e-4872-b096-d7a87f8aa918", + "status": 200, + "timestamp": "2026-05-22T12:41:02.591-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:02.588-04:00" + }, + { + "id": "1fde759f-39ff-4915-bbe1-251d61a5fe82", + "created_at": "2026-05-22T12:41:03.024-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4f2f7f56-b267-4f51-8019-09d26f26e2a5", + "direction": "outgoing", + "index": 130406, + "result_id": "1fde759f-39ff-4915-bbe1-251d61a5fe82", + "status": 200, + "timestamp": "2026-05-22T12:41:03.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85", + "verb": "get" + }, + { + "id": "f75578f5-98da-47e3-a0f7-2b5c238e9a99", + "direction": "outgoing", + "index": 130407, + "result_id": "1fde759f-39ff-4915-bbe1-251d61a5fe82", + "status": 200, + "timestamp": "2026-05-22T12:41:03.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355", + "verb": "get" + }, + { + "id": "35e0563d-e768-48c6-a3e9-c872647708ae", + "direction": "outgoing", + "index": 130408, + "result_id": "1fde759f-39ff-4915-bbe1-251d61a5fe82", + "status": 200, + "timestamp": "2026-05-22T12:41:03.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:03.024-04:00" + }, + { + "id": "942e0257-3218-4e0b-bf84-6a75b7468734", + "created_at": "2026-05-22T12:41:03.854-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:03.854-04:00" + }, + { + "id": "1f524782-8cc8-4898-b719-7f93b0643bcc", + "created_at": "2026-05-22T12:41:03.874-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:03.874-04:00" + }, + { + "id": "a4ce8ccd-813e-4dba-bbb5-4362a6b93211", + "created_at": "2026-05-22T12:41:03.881-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi-us_core_v800_bmi_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:03.881-04:00" + }, + { + "id": "d2ebf163-b0d4-456d-a962-2a32d3e98105", + "created_at": "2026-05-22T12:41:03.884-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_bmi", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:03.884-04:00" + }, + { + "id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "created_at": "2026-05-22T12:41:04.721-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5137b125-fbf8-4ad3-beb5-c42daa013b89", + "direction": "outgoing", + "index": 130409, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.724-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85", + "verb": "get" + }, + { + "id": "d264b73c-5a4d-4e71-b6ff-c9330d0113ba", + "direction": "outgoing", + "index": 130410, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.736-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "c1fbea04-91d7-4309-bf96-c72badf837e5", + "direction": "outgoing", + "index": 130411, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.747-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "876ba0c1-d608-41ce-9373-5fc7b336f5fa", + "direction": "outgoing", + "index": 130412, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "d77ec22a-893a-4259-add8-bd1d972733f0", + "direction": "outgoing", + "index": 130413, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.767-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355", + "verb": "get" + }, + { + "id": "86d8ecad-3372-420c-81bc-74bb6cc46ff8", + "direction": "outgoing", + "index": 130414, + "result_id": "d2a0afd6-a128-4fee-ba03-90f10ba85654", + "status": 200, + "timestamp": "2026-05-22T12:41:04.775-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:04.721-04:00" + }, + { + "id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "created_at": "2026-05-22T12:41:07.179-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e49e012c-f6d7-4913-a1bc-0310e6fb8bbc", + "direction": "outgoing", + "index": 130415, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=sdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "a34c697b-a34f-43ef-b060-062a6b4840e7", + "direction": "outgoing", + "index": 130416, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85", + "verb": "get" + }, + { + "id": "06ee7991-9052-4726-a88f-7c332cf3eca0", + "direction": "outgoing", + "index": 130417, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.217-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=social-history\u0026patient=355", + "verb": "get" + }, + { + "id": "e3208934-d2ca-4b7d-9c35-a1a9d5d58dd6", + "direction": "outgoing", + "index": 130418, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d32a1fb4-adb1-4c47-b80e-8bfd52a44230", + "direction": "outgoing", + "index": 130419, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "20a0bf00-c77f-45b2-ac80-9f06dd6d68fb", + "direction": "outgoing", + "index": 130420, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "35f652ad-0728-4dea-9573-657c27ce2a52", + "direction": "outgoing", + "index": 130421, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.261-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3f3de7bb-53ca-46b2-a843-e8c45b04c787", + "direction": "outgoing", + "index": 130422, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.272-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "73305540-70e7-4e87-9c0b-bca0595e08a1", + "direction": "outgoing", + "index": 130423, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.282-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "28be6cd1-d86a-4ae9-962c-420128bc01f9", + "direction": "outgoing", + "index": 130424, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.293-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "86207758-3c1b-438d-9c3a-7b685266cfe2", + "direction": "outgoing", + "index": 130425, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5994a804-f92c-45d9-a167-92a5f63f7387", + "direction": "outgoing", + "index": 130426, + "result_id": "452f251f-da4d-4f1c-8885-8b38e85252f9", + "status": 200, + "timestamp": "2026-05-22T12:41:07.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=93a15d76-2b9b-44aa-b9b4-02e1479a2bd6\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:07.179-04:00" + }, + { + "id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "created_at": "2026-05-22T12:41:09.823-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cfb31512-217d-4563-ae85-7fb5606641f3", + "direction": "outgoing", + "index": 130427, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.825-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "b258b093-39d2-4f7d-8342-b412d5c89363", + "direction": "outgoing", + "index": 130428, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.839-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "cac3028e-b838-4b9d-bd9f-8d97bcf74627", + "direction": "outgoing", + "index": 130429, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.857-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "99389f70-dba8-4400-8084-9805d4aba5c9", + "direction": "outgoing", + "index": 130430, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.870-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "222229d0-bc50-4b07-8468-da93959ec1b8", + "direction": "outgoing", + "index": 130431, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "29c7081b-fbb8-4f3c-b326-e975fc4b518d", + "direction": "outgoing", + "index": 130432, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.895-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c0d43eaf-0b4d-436f-b954-586bf8af913c", + "direction": "outgoing", + "index": 130433, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "871f3dc2-b9a0-4962-bdad-be3d130b0e50", + "direction": "outgoing", + "index": 130434, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "52a2f679-65f6-421d-aaee-0dadb5ea0112", + "direction": "outgoing", + "index": 130435, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.932-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b411f965-d548-44a0-b6d1-96e0217e6412", + "direction": "outgoing", + "index": 130436, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.944-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f7ffc524-a3f9-4d86-bff7-46dd48109cf4", + "direction": "outgoing", + "index": 130437, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.954-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b218930c-5e82-4868-abdc-6ca7c819d1cf", + "direction": "outgoing", + "index": 130438, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.972-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=253f56ee-aeee-4343-ab30-a89170d889ab\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "cac2deae-6ad1-4c9b-81da-16a8ae62f1dd", + "direction": "outgoing", + "index": 130439, + "result_id": "cf1e481f-d6e1-45ea-b63c-c07b4f4953cb", + "status": 200, + "timestamp": "2026-05-22T12:41:09.984-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:09.823-04:00" + }, + { + "id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "created_at": "2026-05-22T12:41:10.859-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "34057565-8c9f-403b-b0fc-eccb808672d9", + "direction": "outgoing", + "index": 130440, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.902-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2d741217-3113-4f6f-9cf7-e8baa69d1569", + "direction": "outgoing", + "index": 130441, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.912-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d1a1672e-948a-41e7-b065-912dbf4cdebe", + "direction": "outgoing", + "index": 130442, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "91d5879e-faa5-41d6-99e9-c0eb683283f9", + "direction": "outgoing", + "index": 130443, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "09b96f31-ce6e-4f41-8dcc-3a82a806b73c", + "direction": "outgoing", + "index": 130444, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.948-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6c8d1198-aad7-42bc-aef5-42500b8aa2c0", + "direction": "outgoing", + "index": 130445, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "51346830-d2e0-4c2d-a5d1-b6981c11c6fa", + "direction": "outgoing", + "index": 130446, + "result_id": "5ea0fdd2-8712-4ffc-9e8d-92c1fa61a2be", + "status": 200, + "timestamp": "2026-05-22T12:41:10.971-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:10.859-04:00" + }, + { + "id": "a310b4ee-743c-4049-b4d8-d40bda40ac43", + "created_at": "2026-05-22T12:41:11.343-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "dfc77d56-b419-4d93-9629-8a04ab77e12f", + "direction": "outgoing", + "index": 130447, + "result_id": "a310b4ee-743c-4049-b4d8-d40bda40ac43", + "status": 200, + "timestamp": "2026-05-22T12:41:11.347-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "be5a52ef-ec23-4bd0-a5b2-40426f14d938", + "direction": "outgoing", + "index": 130448, + "result_id": "a310b4ee-743c-4049-b4d8-d40bda40ac43", + "status": 200, + "timestamp": "2026-05-22T12:41:11.364-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85", + "verb": "get" + }, + { + "id": "3046c03b-f163-490e-9ef2-c4d225df1f96", + "direction": "outgoing", + "index": 130449, + "result_id": "a310b4ee-743c-4049-b4d8-d40bda40ac43", + "status": 200, + "timestamp": "2026-05-22T12:41:11.379-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:11.343-04:00" + }, + { + "id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "created_at": "2026-05-22T12:41:12.283-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c34cf23c-2547-4c86-aee5-8e26f2403361", + "direction": "outgoing", + "index": 130450, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.287-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d622bf39-d775-4fce-b2da-61b80da49a81", + "direction": "outgoing", + "index": 130451, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.306-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c7653a45-14a9-4ef3-bc29-3080ee9be347", + "direction": "outgoing", + "index": 130452, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.318-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "dc7eeb25-16cc-4c90-b44c-c0a0ff63f96f", + "direction": "outgoing", + "index": 130453, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e1b8787d-00ba-49c5-b247-c82fc30a6a2a", + "direction": "outgoing", + "index": 130454, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.348-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "c1f8d9f0-4724-4b73-9522-57d0473a85b3", + "direction": "outgoing", + "index": 130455, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.358-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ceab0ed6-3119-4fe7-8cc2-d5fabcf48d41", + "direction": "outgoing", + "index": 130456, + "result_id": "118d82a4-29c6-4406-8c99-37fc90caa8fa", + "status": 200, + "timestamp": "2026-05-22T12:41:12.369-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:12.283-04:00" + }, + { + "id": "4276a35f-90ee-44b0-8211-7350d05de501", + "created_at": "2026-05-22T12:41:12.480-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "da849ec7-7f7b-4349-9f03-639657f9eea4", + "direction": "outgoing", + "index": 130457, + "result_id": "4276a35f-90ee-44b0-8211-7350d05de501", + "status": 200, + "timestamp": "2026-05-22T12:41:12.482-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:12.480-04:00" + }, + { + "id": "981719f6-2ef6-4348-b7dd-aa6c38a6d1d3", + "created_at": "2026-05-22T12:41:13.017-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "88396471-1043-4f70-86c2-ae0c83a534dc", + "direction": "outgoing", + "index": 130458, + "result_id": "981719f6-2ef6-4348-b7dd-aa6c38a6d1d3", + "status": 200, + "timestamp": "2026-05-22T12:41:13.021-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85", + "verb": "get" + }, + { + "id": "0cf79f37-7f25-46e9-936d-18acea4e907b", + "direction": "outgoing", + "index": 130459, + "result_id": "981719f6-2ef6-4348-b7dd-aa6c38a6d1d3", + "status": 200, + "timestamp": "2026-05-22T12:41:13.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355", + "verb": "get" + }, + { + "id": "835ebf6a-62f0-4504-8ecf-ffcbb13b14e8", + "direction": "outgoing", + "index": 130460, + "result_id": "981719f6-2ef6-4348-b7dd-aa6c38a6d1d3", + "status": 200, + "timestamp": "2026-05-22T12:41:13.053-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:13.017-04:00" + }, + { + "id": "fa2b3c89-15d9-4d2d-a86e-c8c7bf1ccd05", + "created_at": "2026-05-22T12:41:15.221-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'", + "type": "info" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#11332-4)", + "type": "info" + }, + { + "message": "Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#93038-8)", + "type": "info" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#63586-2)", + "type": "info" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:15.221-04:00" + }, + { + "id": "405e7028-dba1-46de-98bf-a4379f8836fb", + "created_at": "2026-05-22T12:41:15.256-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:15.256-04:00" + }, + { + "id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "created_at": "2026-05-22T12:41:16.930-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ce527934-9ff8-4a18-b739-fe5f2d224d0c", + "direction": "outgoing", + "index": 130461, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:16.934-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "92b2ce70-f74f-43d3-b609-ee21af80f6c3", + "direction": "outgoing", + "index": 130462, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:16.951-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb", + "verb": "get" + }, + { + "id": "c1d29d2f-3261-466f-a2a5-4922b9f93182", + "direction": "outgoing", + "index": 130463, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:16.967-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "a1b722d8-5d49-4d0c-8e2f-a17fe31621e9", + "direction": "outgoing", + "index": 130464, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:16.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "29b9ae6b-43fd-4139-af7e-92729b835be9", + "direction": "outgoing", + "index": 130465, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:16.991-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "31b4765e-96ce-4372-a442-1f7703e7b524", + "direction": "outgoing", + "index": 130466, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.003-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "1653700f-ed0e-422c-810b-af81e76e8eb4", + "direction": "outgoing", + "index": 130467, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.016-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "5d4ec2b3-9f66-40f5-987c-ad695d9d66c9", + "direction": "outgoing", + "index": 130468, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/be5b9ebc-6416-42be-abbf-c99363774f10", + "verb": "get" + }, + { + "id": "009f3be0-21ac-4b8c-a11a-d6152fd5a979", + "direction": "outgoing", + "index": 130469, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.041-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + }, + { + "id": "854d27e9-de40-40f6-b7f7-0b0d87f6bc1d", + "direction": "outgoing", + "index": 130470, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.054-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + }, + { + "id": "1affff38-d0e5-4342-8eff-33998b443760", + "direction": "outgoing", + "index": 130471, + "result_id": "7bd8409b-5b24-4b0d-982d-72563c26206e", + "status": 200, + "timestamp": "2026-05-22T12:41:17.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment-us_core_v800_observation_screening_assessment_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:16.930-04:00" + }, + { + "id": "a7f6c5d3-56a7-490e-ac37-310513dc51b5", + "created_at": "2026-05-22T12:41:17.078-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_screening_assessment", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:17.078-04:00" + }, + { + "id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "created_at": "2026-05-22T12:41:17.787-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2f12fee8-5585-493b-b47d-81a2aa228180", + "direction": "outgoing", + "index": 130472, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.790-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=85", + "verb": "get" + }, + { + "id": "a84d4ac4-fecf-48b0-a738-67914db0bdd8", + "direction": "outgoing", + "index": 130473, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.808-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=355", + "verb": "get" + }, + { + "id": "95b0c01c-29d0-4a6f-b289-64702015f104", + "direction": "outgoing", + "index": 130474, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "87176279-ca81-4d22-9f65-887c60857a8d", + "direction": "outgoing", + "index": 130475, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.838-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "386d4709-fb53-477e-a04f-bfdb3be8c727", + "direction": "outgoing", + "index": 130476, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.854-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "8ecd841b-c0d1-42b9-bd88-e287a38f57fd", + "direction": "outgoing", + "index": 130477, + "result_id": "ad2d0338-fc3a-4342-b30e-fa60eb215da8", + "status": 200, + "timestamp": "2026-05-22T12:41:17.873-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=96607-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:17.787-04:00" + }, + { + "id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "created_at": "2026-05-22T12:41:18.784-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "444d15d7-10f5-4810-bdf3-ad1c0c034e37", + "direction": "outgoing", + "index": 130478, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "93259c32-940d-40c7-9248-39d0d6a12ad3", + "direction": "outgoing", + "index": 130479, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.806-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7d5348af-8747-4d7b-9951-824ddd9ed3aa", + "direction": "outgoing", + "index": 130480, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "91361a5a-b370-4b06-99f3-dbe6c966d4c0", + "direction": "outgoing", + "index": 130481, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.835-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a6c1689e-7c31-42cb-9709-5b4cc3a84091", + "direction": "outgoing", + "index": 130482, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.848-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "44427ce4-2b84-4a31-b57c-2cae2a995b3f", + "direction": "outgoing", + "index": 130483, + "result_id": "a2c70088-aaea-43af-afd6-fcb017d733d5", + "status": 200, + "timestamp": "2026-05-22T12:41:18.861-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:18.784-04:00" + }, + { + "id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "created_at": "2026-05-22T12:41:19.730-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4fbc8a68-5618-43fd-8380-851db18fd9b2", + "direction": "outgoing", + "index": 130484, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.732-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "46917353-5ae6-4562-a428-c8a5ce75d983", + "direction": "outgoing", + "index": 130485, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.745-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de829721-52ec-4514-86b7-3effb1202056", + "direction": "outgoing", + "index": 130486, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.758-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ff83cfae-d946-4740-9c38-0e6ac7a92254", + "direction": "outgoing", + "index": 130487, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.770-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a1975740-6175-47c2-bd95-6e3a8d2c42f2", + "direction": "outgoing", + "index": 130488, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.785-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7529047d-a4a6-4275-9d8c-3cd6c9b2f32c", + "direction": "outgoing", + "index": 130489, + "result_id": "f45f225b-0195-40b5-be53-35fa1dbb31ba", + "status": 200, + "timestamp": "2026-05-22T12:41:19.797-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:19.730-04:00" + }, + { + "id": "656a1289-30f4-4745-8002-887b3baddbb2", + "created_at": "2026-05-22T12:41:21.184-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2272acb0-deb6-40b9-b0e1-a682a910041b", + "direction": "outgoing", + "index": 130490, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.190-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "6512c48b-f2db-47ed-b5b7-0760b37de20a", + "direction": "outgoing", + "index": 130491, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.213-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "544a9f32-f82b-49f8-87a4-ec4658163877", + "direction": "outgoing", + "index": 130492, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.229-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b4429495-4eea-452a-bfbc-8765f6e592ba", + "direction": "outgoing", + "index": 130493, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.243-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "d2d5dda6-dfe9-4931-be57-5129baeac430", + "direction": "outgoing", + "index": 130494, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.255-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "534d5827-efd3-4a69-b057-6c7442c07117", + "direction": "outgoing", + "index": 130495, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.266-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "56176d5f-953b-4acd-b27d-7d6bfc8b9cd4", + "direction": "outgoing", + "index": 130496, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.277-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "5220a2d9-7c93-46a4-a7b2-db53dbf33a95", + "direction": "outgoing", + "index": 130497, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.289-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e061f493-89cd-4049-896b-f33fb59b0162", + "direction": "outgoing", + "index": 130498, + "result_id": "656a1289-30f4-4745-8002-887b3baddbb2", + "status": 200, + "timestamp": "2026-05-22T12:41:21.304-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:21.184-04:00" + }, + { + "id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "created_at": "2026-05-22T12:41:23.848-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f3b57146-31ee-4e34-89c5-f11d331700fc", + "direction": "outgoing", + "index": 130499, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.851-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cf71ef5f-8288-446f-ae8a-0277e6a57484", + "direction": "outgoing", + "index": 130500, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.870-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6d526271-ef05-43f1-90fb-b8364a8390e8", + "direction": "outgoing", + "index": 130501, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.879-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c28e6a9-dfa0-4f7b-b84d-63448834eb05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6e5f2c83-7817-48f3-b4e7-863719fde0a4", + "direction": "outgoing", + "index": 130502, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.893-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "12475622-f688-4f35-8d4f-944fe7176eb6", + "direction": "outgoing", + "index": 130503, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.904-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f57b5634-c99d-4f97-a264-a1f532488c7b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8cf6193f-088f-4f61-876f-cce7581495a7", + "direction": "outgoing", + "index": 130504, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.915-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a3f64a49-04d3-4dac-8d0e-670754cb954d", + "direction": "outgoing", + "index": 130505, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.925-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d257118b-a413-4ef1-9356-e6586c4780b9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8d5cfca5-3618-46de-86ef-c36a01f8e490", + "direction": "outgoing", + "index": 130506, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a13605dc-a604-4c25-9911-2df23e03e0e3", + "direction": "outgoing", + "index": 130507, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.946-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f30cf557-02e4-4016-a3fe-6f8b3c386d17\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a69674e7-9da0-4dd0-b5ce-a8443270b8e1", + "direction": "outgoing", + "index": 130508, + "result_id": "b6472eb3-1856-4c93-95e2-919762f7f069", + "status": 200, + "timestamp": "2026-05-22T12:41:23.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:23.848-04:00" + }, + { + "id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "created_at": "2026-05-22T12:41:24.854-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "fbddf2fb-927d-4c2a-97e1-4a19d5e32376", + "direction": "outgoing", + "index": 130509, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.860-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "874b36f5-13ab-4ea2-b6fb-a369565b4e52", + "direction": "outgoing", + "index": 130510, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.883-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b8a642eb-18c6-4139-abf0-f204bebec855", + "direction": "outgoing", + "index": 130511, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.896-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "4baf590e-8120-48ca-aa74-81d1648b311f", + "direction": "outgoing", + "index": 130512, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.910-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7b04bfcb-6c93-4e7a-9508-07de002fc939", + "direction": "outgoing", + "index": 130513, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.923-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "8361a5cf-e0de-409c-87b3-f20d9e7a9239", + "direction": "outgoing", + "index": 130514, + "result_id": "c475d1e1-7236-48f3-8084-6695f980ed57", + "status": 200, + "timestamp": "2026-05-22T12:41:24.936-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:24.854-04:00" + }, + { + "id": "8b765077-79a1-4b07-83b5-dc2b55a493ee", + "created_at": "2026-05-22T12:41:25.051-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a142e75f-a3e5-4e21-aa59-62b6bfd27528", + "direction": "outgoing", + "index": 130515, + "result_id": "8b765077-79a1-4b07-83b5-dc2b55a493ee", + "status": 200, + "timestamp": "2026-05-22T12:41:25.054-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:25.051-04:00" + }, + { + "id": "b8f53b9a-7a91-4069-b3fd-1291ec81e6f2", + "created_at": "2026-05-22T12:41:25.498-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "98ca4a5a-e52c-4fbc-b1a8-b4f3094e10d7", + "direction": "outgoing", + "index": 130516, + "result_id": "b8f53b9a-7a91-4069-b3fd-1291ec81e6f2", + "status": 200, + "timestamp": "2026-05-22T12:41:25.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=85", + "verb": "get" + }, + { + "id": "16c10f4a-f1a5-4076-8ccb-5e55fe77ddfe", + "direction": "outgoing", + "index": 130517, + "result_id": "b8f53b9a-7a91-4069-b3fd-1291ec81e6f2", + "status": 200, + "timestamp": "2026-05-22T12:41:25.526-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=355", + "verb": "get" + }, + { + "id": "2aa50438-e7ed-461c-9abb-b96b040b9514", + "direction": "outgoing", + "index": 130518, + "result_id": "b8f53b9a-7a91-4069-b3fd-1291ec81e6f2", + "status": 200, + "timestamp": "2026-05-22T12:41:25.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=96607-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:25.498-04:00" + }, + { + "id": "31409ac1-6883-4516-b127-c773ade8f51a", + "created_at": "2026-05-22T12:41:27.305-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:27.305-04:00" + }, + { + "id": "a55b9237-734b-4c54-bf1a-585a7630bf20", + "created_at": "2026-05-22T12:41:27.333-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:27.333-04:00" + }, + { + "id": "dfe636fc-3ccc-445b-b958-b544081b8b3b", + "created_at": "2026-05-22T12:41:27.336-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure-us_core_v800_average_blood_pressure_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:27.336-04:00" + }, + { + "id": "66dc9cb8-0e20-41b9-8a6b-d9bfaefaad00", + "created_at": "2026-05-22T12:41:27.337-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_average_blood_pressure", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:27.337-04:00" + }, + { + "id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "created_at": "2026-05-22T12:41:28.229-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "044b13da-5638-4ede-a7d2-fe26564ce445", + "direction": "outgoing", + "index": 130519, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "e08ebc80-9253-4ddf-b888-42b10bd00cae", + "direction": "outgoing", + "index": 130520, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "5c587796-090b-4e4c-a62f-3b469bdcf0b0", + "direction": "outgoing", + "index": 130521, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.279-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "892fe07d-7543-4f75-b18d-f7fccce3331d", + "direction": "outgoing", + "index": 130522, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.298-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "345c0e4e-94b4-46d8-a84f-3a2823746bc9", + "direction": "outgoing", + "index": 130523, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.312-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "4083e651-e975-42f3-95ec-698386fb2909", + "direction": "outgoing", + "index": 130524, + "result_id": "d718326a-ef45-40bf-990f-e36f4ac41720", + "status": 200, + "timestamp": "2026-05-22T12:41:28.327-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:28.229-04:00" + }, + { + "id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "created_at": "2026-05-22T12:41:29.282-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "3bb9c660-939b-4bbd-8219-1003f0848482", + "direction": "outgoing", + "index": 130525, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.287-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "e3c0fefa-6b4e-40ae-8fb6-03557f79a400", + "direction": "outgoing", + "index": 130526, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fce435b8-9735-4a2b-a523-33b381f11f57", + "direction": "outgoing", + "index": 130527, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.328-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b9463342-3f94-439a-944c-365996b2b5e0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b56073c0-7206-4d50-9e19-b6b92164a947", + "direction": "outgoing", + "index": 130528, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.345-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "c15cf5ca-9a22-4ab4-b065-5246ef419937", + "direction": "outgoing", + "index": 130529, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.357-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "de345709-a916-4e8d-b3fa-e9f276f6fbdb", + "direction": "outgoing", + "index": 130530, + "result_id": "6da6b42a-060a-45eb-a1bb-11ee84b34d70", + "status": 200, + "timestamp": "2026-05-22T12:41:29.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d1eede29-54b2-43a6-822e-722a3be8db88\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:29.282-04:00" + }, + { + "id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "created_at": "2026-05-22T12:41:30.248-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c996f8c5-a7a6-45cd-8377-bd4488446efe", + "direction": "outgoing", + "index": 130531, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a85a9188-a00c-477d-ba0d-2aa1835a012c", + "direction": "outgoing", + "index": 130532, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.271-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3e80cc8b-3606-4a1c-b2f8-03ade8cd9106", + "direction": "outgoing", + "index": 130533, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.286-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "331004d9-4c12-4712-8432-89d2cbeb828a", + "direction": "outgoing", + "index": 130534, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.300-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "106a4f62-3f63-485f-aa49-5759373ff2dc", + "direction": "outgoing", + "index": 130535, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.313-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4bd5c1f6-820d-496a-83a2-bf77a8433779", + "direction": "outgoing", + "index": 130536, + "result_id": "21eaf0be-5654-468f-a21a-227a3c72b293", + "status": 200, + "timestamp": "2026-05-22T12:41:30.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0bc15b0b-02c9-4d76-a241-9f9eab5387fb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:30.248-04:00" + }, + { + "id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "created_at": "2026-05-22T12:41:31.777-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a96197a6-77f3-4db2-b794-9d6b48dd011c", + "direction": "outgoing", + "index": 130537, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.782-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "22c0ac56-b666-4c72-83d6-447c7aa59647", + "direction": "outgoing", + "index": 130538, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.805-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e4d34427-08c0-44a6-a09c-122f74206ae0", + "direction": "outgoing", + "index": 130539, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.822-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2060d882-08ca-4c4e-bd15-27e74258cc26\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a22e7b01-1af0-46c3-879f-ddc867f311a4", + "direction": "outgoing", + "index": 130540, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.843-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "162f9acb-a323-4e2f-b783-5e341e7a582c", + "direction": "outgoing", + "index": 130541, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.874-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1bb00c9a-f86e-446d-a5f0-37790306559c", + "direction": "outgoing", + "index": 130542, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.887-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=38172c0a-e236-4111-8fd1-d203d300dd05\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "c17e2c29-c244-4074-9c35-a8e7dfdfa431", + "direction": "outgoing", + "index": 130543, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.897-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "1bd2adcc-13c1-45a8-ab2c-687795c5db52", + "direction": "outgoing", + "index": 130544, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e65d5fb1-9af2-4db9-a0db-2a96d34cb6a1", + "direction": "outgoing", + "index": 130545, + "result_id": "490300c6-ef38-4e65-8ca2-73ade8977304", + "status": 200, + "timestamp": "2026-05-22T12:41:31.921-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=89a7a68e-bb0b-4b2a-bbc0-698bd3a51dc3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:31.777-04:00" + }, + { + "id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "created_at": "2026-05-22T12:41:33.397-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9e7c90b5-48d2-4601-8dee-86991ab9120d", + "direction": "outgoing", + "index": 130546, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5cb2753e-de1b-416e-aa84-505ca0c6c3e4", + "direction": "outgoing", + "index": 130547, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.418-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "76bbc080-5248-489a-88e7-c23c6aee22be", + "direction": "outgoing", + "index": 130548, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.433-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=5c28e6a9-dfa0-4f7b-b84d-63448834eb05\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a459358f-76c0-4c5d-a622-6b82ccd3b4c2", + "direction": "outgoing", + "index": 130549, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "69feefa1-916c-4330-98da-04eb2faf1b14", + "direction": "outgoing", + "index": 130550, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.460-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f57b5634-c99d-4f97-a264-a1f532488c7b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5162ac19-83f8-4dc0-a6ec-437f7697217b", + "direction": "outgoing", + "index": 130551, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "2bdaa6ac-dc51-46ef-9d18-29b6d3cd9e68", + "direction": "outgoing", + "index": 130552, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.480-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=d257118b-a413-4ef1-9356-e6586c4780b9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b19b9a07-55eb-421c-ac6e-78cc770cce30", + "direction": "outgoing", + "index": 130553, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "704687b6-1189-49b8-a605-01907a3d66b4", + "direction": "outgoing", + "index": 130554, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.505-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f30cf557-02e4-4016-a3fe-6f8b3c386d17\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "e61c0ed0-783e-4c02-b22d-ffad933de962", + "direction": "outgoing", + "index": 130555, + "result_id": "dba3a7c1-0c7e-4f76-92c5-30cb235dbcfb", + "status": 200, + "timestamp": "2026-05-22T12:41:33.515-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:33.397-04:00" + }, + { + "id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "created_at": "2026-05-22T12:41:34.375-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "f926b971-ba9c-4ed2-bdae-c0f95f0cd141", + "direction": "outgoing", + "index": 130556, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.381-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "1b205d23-8838-41a7-87dd-64d2c24eb35f", + "direction": "outgoing", + "index": 130557, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.404-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3705a4dc-22f9-42ad-a5a4-84c711e140dc", + "direction": "outgoing", + "index": 130558, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.419-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "836f1d87-d68f-49ae-ba02-735df3d67926", + "direction": "outgoing", + "index": 130559, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.433-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "16c9fc87-e3d8-477e-9ea9-3c7769503b71", + "direction": "outgoing", + "index": 130560, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.447-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "7c28f866-c253-4510-b5e6-77bed5115bb5", + "direction": "outgoing", + "index": 130561, + "result_id": "c0d3eb33-c689-4a5e-858b-5ef13391abea", + "status": 200, + "timestamp": "2026-05-22T12:41:34.455-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:34.375-04:00" + }, + { + "id": "6e93c0aa-e182-4fc9-84f5-5ec84308e453", + "created_at": "2026-05-22T12:41:34.569-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8f1db80c-0ecd-40ba-9bc7-42bf25328b80", + "direction": "outgoing", + "index": 130562, + "result_id": "6e93c0aa-e182-4fc9-84f5-5ec84308e453", + "status": 200, + "timestamp": "2026-05-22T12:41:34.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:34.569-04:00" + }, + { + "id": "e7901860-8ba8-4af4-924d-8dd199b128a5", + "created_at": "2026-05-22T12:41:35.015-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5083913b-e5f2-4d39-be72-d0a51c358d45", + "direction": "outgoing", + "index": 130563, + "result_id": "e7901860-8ba8-4af4-924d-8dd199b128a5", + "status": 200, + "timestamp": "2026-05-22T12:41:35.020-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85", + "verb": "get" + }, + { + "id": "03cd7151-40a9-487c-abc2-39557c685318", + "direction": "outgoing", + "index": 130564, + "result_id": "e7901860-8ba8-4af4-924d-8dd199b128a5", + "status": 200, + "timestamp": "2026-05-22T12:41:35.040-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355", + "verb": "get" + }, + { + "id": "e116c3bd-ee75-4881-8aa5-da0c04b0a393", + "direction": "outgoing", + "index": 130565, + "result_id": "e7901860-8ba8-4af4-924d-8dd199b128a5", + "status": 200, + "timestamp": "2026-05-22T12:41:35.055-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:35.015-04:00" + }, + { + "id": "4c23d3b5-26b8-409b-ba39-1594a3d945a7", + "created_at": "2026-05-22T12:41:37.377-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:37.377-04:00" + }, + { + "id": "1f409d2c-d549-41d4-8ae0-8fbcd6c16776", + "created_at": "2026-05-22T12:41:37.411-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:37.411-04:00" + }, + { + "id": "0dfb5f43-26b1-4dbd-9125-7f53d2d8eeef", + "created_at": "2026-05-22T12:41:37.415-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure-us_core_v800_blood_pressure_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:37.415-04:00" + }, + { + "id": "27840403-bceb-46bf-8b50-fb9fe6a0cc6e", + "created_at": "2026-05-22T12:41:37.416-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_blood_pressure", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:37.416-04:00" + }, + { + "id": "c621b201-cca4-491d-add4-c8eaba73add3", + "created_at": "2026-05-22T12:41:40.952-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "926a6388-99a2-4b0a-8f48-ea073bdf842f", + "direction": "outgoing", + "index": 130566, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:40.959-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "c96e641f-0d0a-4de5-abc7-5eda2777777a", + "direction": "outgoing", + "index": 130567, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:40.988-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "b173a6ea-b7e8-4636-9c2a-4868a45f7904", + "direction": "outgoing", + "index": 130568, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.008-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85", + "verb": "get" + }, + { + "id": "05766004-d155-4df1-9076-2fa93412df77", + "direction": "outgoing", + "index": 130569, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.023-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "ab102c2a-a9bb-475b-afa3-bb10f7a2e731", + "direction": "outgoing", + "index": 130570, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.036-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85", + "verb": "get" + }, + { + "id": "eadf6c95-5cd0-4b00-a979-44fbf53767a1", + "direction": "outgoing", + "index": 130571, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.047-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85", + "verb": "get" + }, + { + "id": "f8862f6d-a193-4809-baac-617c38f8939d", + "direction": "outgoing", + "index": 130572, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.061-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85", + "verb": "get" + }, + { + "id": "262a27d0-e704-404d-8e80-86fbdbff4590", + "direction": "outgoing", + "index": 130573, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.072-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85", + "verb": "get" + }, + { + "id": "d4913390-d123-4351-b030-7c22bdc131a2", + "direction": "outgoing", + "index": 130574, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.083-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "7fe46b96-562a-4e5d-b151-bd2a35fdbaed", + "direction": "outgoing", + "index": 130575, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.095-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85", + "verb": "get" + }, + { + "id": "0ae6362a-69ea-4403-b379-8d149c0a1264", + "direction": "outgoing", + "index": 130576, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "78d31197-4eee-41a2-bf59-cd9b438e42c2", + "direction": "outgoing", + "index": 130577, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.118-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355", + "verb": "get" + }, + { + "id": "8bbad2d3-a38a-418d-989f-fc6c9b15a05e", + "direction": "outgoing", + "index": 130578, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355", + "verb": "get" + }, + { + "id": "6c47e171-79ee-432f-b3bc-102f195f6569", + "direction": "outgoing", + "index": 130579, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.145-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355", + "verb": "get" + }, + { + "id": "e65e7d46-9331-40be-b89a-e156fb0213ed", + "direction": "outgoing", + "index": 130580, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355", + "verb": "get" + }, + { + "id": "cc30abaa-649a-412a-8d0e-c4324d216bcf", + "direction": "outgoing", + "index": 130581, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.171-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "10c3de91-0a5d-4997-9913-4597f9c99bf5", + "direction": "outgoing", + "index": 130582, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.185-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a81a2dfc-09f4-448d-b7e3-2462174b5bfd", + "direction": "outgoing", + "index": 130583, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.197-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=3ef8e921-e5e0-4322-a7be-d2a6ec5ba897\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8343d2d7-24ec-480d-bcb8-6aa01dd9bd62", + "direction": "outgoing", + "index": 130584, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.209-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355", + "verb": "get" + }, + { + "id": "57f3ccd7-507a-4e4a-90a3-6cca3d191734", + "direction": "outgoing", + "index": 130585, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=908", + "verb": "get" + }, + { + "id": "1b836829-e443-439e-9dc7-cd2d45e16f1c", + "direction": "outgoing", + "index": 130586, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=908", + "verb": "get" + }, + { + "id": "699c35d1-8c18-488f-8a34-3abee8d1df5b", + "direction": "outgoing", + "index": 130587, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=908", + "verb": "get" + }, + { + "id": "9b136e48-ca46-4105-a218-76ee1f4f9729", + "direction": "outgoing", + "index": 130588, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=908", + "verb": "get" + }, + { + "id": "8b38ade9-859d-4e9d-b5b9-01e2bef0d3dd", + "direction": "outgoing", + "index": 130589, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.260-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=908", + "verb": "get" + }, + { + "id": "761ac48e-0648-4a10-a04f-5a6f24694fb6", + "direction": "outgoing", + "index": 130590, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.270-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=908", + "verb": "get" + }, + { + "id": "e546f7b7-c186-4c04-a319-4a774ea0907f", + "direction": "outgoing", + "index": 130591, + "result_id": "c621b201-cca4-491d-add4-c8eaba73add3", + "status": 200, + "timestamp": "2026-05-22T12:41:41.282-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:40.952-04:00" + }, + { + "id": "3143e431-ffcb-49ae-9366-5177e743f417", + "created_at": "2026-05-22T12:41:41.689-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "6170d7d1-870e-4354-b2bc-e929d013c534", + "direction": "outgoing", + "index": 130592, + "result_id": "3143e431-ffcb-49ae-9366-5177e743f417", + "status": 200, + "timestamp": "2026-05-22T12:41:41.694-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "7acf1491-703d-4c7c-81ac-bc146df6e04f", + "direction": "outgoing", + "index": 130593, + "result_id": "3143e431-ffcb-49ae-9366-5177e743f417", + "status": 200, + "timestamp": "2026-05-22T12:41:41.712-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:39.745%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "f1e2da5c-a669-495a-8271-9e539065093f", + "direction": "outgoing", + "index": 130594, + "result_id": "3143e431-ffcb-49ae-9366-5177e743f417", + "status": 200, + "timestamp": "2026-05-22T12:41:41.727-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=laboratory\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:41.689-04:00" + }, + { + "id": "4cbbb635-ab1a-46fe-acdf-0955899dc305", + "created_at": "2026-05-22T12:41:42.266-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cd618a47-7a7b-4c9b-a5ec-9fced76b8a5d", + "direction": "outgoing", + "index": 130595, + "result_id": "4cbbb635-ab1a-46fe-acdf-0955899dc305", + "status": 200, + "timestamp": "2026-05-22T12:41:42.272-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "c2e18512-f62e-44bd-8604-03d2b6657bcf", + "direction": "outgoing", + "index": 130596, + "result_id": "4cbbb635-ab1a-46fe-acdf-0955899dc305", + "status": 200, + "timestamp": "2026-05-22T12:41:42.296-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final", + "verb": "get" + }, + { + "id": "69dcf401-7264-4a0e-b6bf-5ab89e1a0e6a", + "direction": "outgoing", + "index": 130597, + "result_id": "4cbbb635-ab1a-46fe-acdf-0955899dc305", + "status": 200, + "timestamp": "2026-05-22T12:41:42.312-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "157e708b-b6b8-4cf7-8597-02028bf0a82e", + "direction": "outgoing", + "index": 130598, + "result_id": "4cbbb635-ab1a-46fe-acdf-0955899dc305", + "status": 200, + "timestamp": "2026-05-22T12:41:42.326-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:42.266-04:00" + }, + { + "id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "created_at": "2026-05-22T12:41:43.207-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "72b68e6a-0900-467e-824b-8496c74779bb", + "direction": "outgoing", + "index": 130599, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.211-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "7c5438c1-9e7f-490a-a373-08d5258060a3", + "direction": "outgoing", + "index": 130600, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.228-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "2de0b096-da23-4fc7-8e9b-04b7f36e1c6f", + "direction": "outgoing", + "index": 130601, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "598b2c70-bf4f-4ec6-9c2b-4650f1a4a3c2", + "direction": "outgoing", + "index": 130602, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.251-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "e87e5fb2-c7de-4fff-9edd-007203313eaf", + "direction": "outgoing", + "index": 130603, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.262-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "4f6d9884-fdb0-4a7f-ad05-69a35939a8c7", + "direction": "outgoing", + "index": 130604, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.273-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "21967d6e-2263-4054-af3f-b5df6b2cc5e4", + "direction": "outgoing", + "index": 130605, + "result_id": "f0e6ef9f-f0b7-4630-91c0-c8538950f004", + "status": 200, + "timestamp": "2026-05-22T12:41:43.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:43.207-04:00" + }, + { + "id": "69e728ba-f8ab-45ee-b913-26dbcfa8403c", + "created_at": "2026-05-22T12:41:43.647-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d4781b22-18b9-4113-89c1-41c8b06cce00", + "direction": "outgoing", + "index": 130606, + "result_id": "69e728ba-f8ab-45ee-b913-26dbcfa8403c", + "status": 200, + "timestamp": "2026-05-22T12:41:43.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "aef890e4-efbc-4288-9e4c-3d36aaf6d142", + "direction": "outgoing", + "index": 130607, + "result_id": "69e728ba-f8ab-45ee-b913-26dbcfa8403c", + "status": 200, + "timestamp": "2026-05-22T12:41:43.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85", + "verb": "get" + }, + { + "id": "3d276d96-d6e2-4426-a20c-a2fc72938d42", + "direction": "outgoing", + "index": 130608, + "result_id": "69e728ba-f8ab-45ee-b913-26dbcfa8403c", + "status": 200, + "timestamp": "2026-05-22T12:41:43.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:43.647-04:00" + }, + { + "id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "created_at": "2026-05-22T12:41:44.627-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b922b157-e834-4121-98c9-ec0e0d2fe0b0", + "direction": "outgoing", + "index": 130609, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.634-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "aeb5390a-495e-4107-b89b-9b1ccc79c18d", + "direction": "outgoing", + "index": 130610, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "43954a3b-6a92-4c52-8a54-b6a5c65655b5", + "direction": "outgoing", + "index": 130611, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.671-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "f62ce985-887c-496a-99aa-b299a5a5b490", + "direction": "outgoing", + "index": 130612, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.686-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "ef326354-9ebb-4cd5-b64c-a48aed99155a", + "direction": "outgoing", + "index": 130613, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.698-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "b5516db6-fc02-4afb-a859-80378149b31a", + "direction": "outgoing", + "index": 130614, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.708-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85", + "verb": "get" + }, + { + "id": "70a05f78-07fa-445f-99ba-a100a4a023e6", + "direction": "outgoing", + "index": 130615, + "result_id": "3c3445d8-7af0-4814-86e6-cced00e965cd", + "status": 200, + "timestamp": "2026-05-22T12:41:44.720-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:44.627-04:00" + }, + { + "id": "963a26f4-d8cf-42a7-b0ba-8c872ddd0396", + "created_at": "2026-05-22T12:41:44.829-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8e115ee7-9c62-43af-b8a0-e16b5d99c34c", + "direction": "outgoing", + "index": 130616, + "result_id": "963a26f4-d8cf-42a7-b0ba-8c872ddd0396", + "status": 200, + "timestamp": "2026-05-22T12:41:44.832-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:44.829-04:00" + }, + { + "id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "created_at": "2026-05-22T12:41:48.993-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7e59f2d2-06aa-472a-9f3c-5ece56436606", + "direction": "outgoing", + "index": 130617, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.061-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85", + "verb": "get" + }, + { + "id": "660f1fb7-9383-4f6f-b80c-6cef564803cc", + "direction": "outgoing", + "index": 130618, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.073-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85", + "verb": "get" + }, + { + "id": "4a25ec55-9d45-42fc-947c-31150745d23e", + "direction": "outgoing", + "index": 130619, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85", + "verb": "get" + }, + { + "id": "5601acd5-fb9f-4348-8c90-b557e4484654", + "direction": "outgoing", + "index": 130620, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.097-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85", + "verb": "get" + }, + { + "id": "04e2899c-3b05-4424-8682-ee8032166ea1", + "direction": "outgoing", + "index": 130621, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.112-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85", + "verb": "get" + }, + { + "id": "0dbc62c6-544a-4d48-94d8-57a49a6049df", + "direction": "outgoing", + "index": 130622, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.121-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85", + "verb": "get" + }, + { + "id": "b97f0b86-e1ca-46b7-a8f2-5f3f7c0090d7", + "direction": "outgoing", + "index": 130623, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.132-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85", + "verb": "get" + }, + { + "id": "80c8e84d-ca8e-4e6c-9c5a-6b7f965c7640", + "direction": "outgoing", + "index": 130624, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.143-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355", + "verb": "get" + }, + { + "id": "bbc519c5-0c63-438e-ac64-b67fa17d65b1", + "direction": "outgoing", + "index": 130625, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.153-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355", + "verb": "get" + }, + { + "id": "0ef42326-de5b-40a8-a070-6c7117be6a1b", + "direction": "outgoing", + "index": 130626, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.165-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355", + "verb": "get" + }, + { + "id": "598ab443-415f-4a2e-884e-bd06343fffbc", + "direction": "outgoing", + "index": 130627, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.176-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355", + "verb": "get" + }, + { + "id": "42475d2c-a6ee-4537-92f9-22c0604c8cc1", + "direction": "outgoing", + "index": 130628, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.187-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355", + "verb": "get" + }, + { + "id": "51a0a4f4-e7b3-45f5-b378-dce65202e08e", + "direction": "outgoing", + "index": 130629, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.198-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "f3cea496-a302-4c37-b672-303db8f905b8", + "direction": "outgoing", + "index": 130630, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.208-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9ddf0736-b0a6-4ad6-9dbf-aca92c552e7b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0dd6c4c4-01f8-44ca-abdf-fe6e253ee7da", + "direction": "outgoing", + "index": 130631, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.220-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9ddf0736-b0a6-4ad6-9dbf-aca92c552e7b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "aa557f4e-5e37-491e-989b-98ead65a7fdf", + "direction": "outgoing", + "index": 130632, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355", + "verb": "get" + }, + { + "id": "642ad665-7a8f-4e4c-bd7d-6ffac1997578", + "direction": "outgoing", + "index": 130633, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.242-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=908", + "verb": "get" + }, + { + "id": "8a6e1277-53e4-4bbc-9d1e-658abc480809", + "direction": "outgoing", + "index": 130634, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.252-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=908", + "verb": "get" + }, + { + "id": "179ccfc4-059b-4213-8087-e4ccf45a0442", + "direction": "outgoing", + "index": 130635, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.263-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=908", + "verb": "get" + }, + { + "id": "c3019514-0831-4b12-ac1b-f4067f57acee", + "direction": "outgoing", + "index": 130636, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.274-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=908", + "verb": "get" + }, + { + "id": "0f74e912-67fb-4811-a08b-1def608d22d6", + "direction": "outgoing", + "index": 130637, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.285-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=908", + "verb": "get" + }, + { + "id": "5e136743-d9ad-4e16-9529-008efbb2135c", + "direction": "outgoing", + "index": 130638, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.296-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=908", + "verb": "get" + }, + { + "id": "6dbdbb48-0a66-4d8f-9861-50bf7ed48607", + "direction": "outgoing", + "index": 130639, + "result_id": "d2ab4dbd-f4a2-4e6d-8ca3-c6ebb7a29249", + "status": 200, + "timestamp": "2026-05-22T12:41:49.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:48.993-04:00" + }, + { + "id": "b303e697-e6c9-4598-923a-7061b9bd4d25", + "created_at": "2026-05-22T12:41:59.309-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found", + "type": "info" + }, + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)", + "type": "warning" + }, + { + "message": "Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found", + "type": "info" + }, + { + "message": "Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.category[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4e033260-9df3-427e-a85d-316518023db9: Observation.code: None of the codings provided are in the value set 'Screening and Assessment Survey Codes' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.13|20241008), and a coding is recommended to come from this value set (codes = http://loinc.org#93038-8)", + "type": "info" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'", + "type": "info" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found", + "type": "info" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found", + "type": "info" + }, + { + "message": "Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found", + "type": "info" + }, + { + "message": "Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found", + "type": "info" + }, + { + "message": "Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found", + "type": "info" + }, + { + "message": "Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found", + "type": "info" + }, + { + "message": "Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:59.309-04:00" + }, + { + "id": "5a2dbfff-80a7-4a7c-af68-4e38b6f1aa0b", + "created_at": "2026-05-22T12:41:59.442-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:59.442-04:00" + }, + { + "id": "05ab3f10-7811-4ff0-9f2f-e47b1ff0863a", + "created_at": "2026-05-22T12:41:59.573-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4583846e-9dc8-4796-bbf8-5da67f8ed8a8", + "direction": "outgoing", + "index": 130640, + "result_id": "05ab3f10-7811-4ff0-9f2f-e47b1ff0863a", + "status": 200, + "timestamp": "2026-05-22T12:41:59.578-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result-us_core_v800_observation_clinical_result_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:59.573-04:00" + }, + { + "id": "2303c6a7-11ce-4614-af80-50e37eb24aa8", + "created_at": "2026-05-22T12:41:59.605-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_observation_clinical_result", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:41:59.605-04:00" + }, + { + "id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "created_at": "2026-05-22T12:42:00.390-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e809b488-4c36-426d-a1f2-75396650b043", + "direction": "outgoing", + "index": 130641, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.396-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "f41a404d-5437-44c3-8108-2ee3c97a9982", + "direction": "outgoing", + "index": 130642, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.423-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "e1bca6aa-8e29-449b-8c44-b3b3e924192c", + "direction": "outgoing", + "index": 130643, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.441-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "a6d7415f-a3d6-40fe-b4b4-fafa05f4985c", + "direction": "outgoing", + "index": 130644, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "3250a2d4-0099-4aad-9882-58b1bf5c3a91", + "direction": "outgoing", + "index": 130645, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.466-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "3c4a2245-2b5e-4c39-b524-91a8c731e984", + "direction": "outgoing", + "index": 130646, + "result_id": "9ea9a104-c6bb-41d8-9b37-bc820d27c0a2", + "status": 200, + "timestamp": "2026-05-22T12:42:00.479-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:00.390-04:00" + }, + { + "id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "created_at": "2026-05-22T12:42:02.584-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "55cc6cdd-3308-4323-8afb-5c230080f9e9", + "direction": "outgoing", + "index": 130647, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.589-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "4fa77315-5265-4d16-9e80-2567e4d131ad", + "direction": "outgoing", + "index": 130648, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.612-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "89b67b2d-c6b6-4925-b7d8-8b6d83c84153", + "direction": "outgoing", + "index": 130649, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.629-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "52378333-e985-441c-9ccb-92a1d6b07bcf", + "direction": "outgoing", + "index": 130650, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "1841f56c-87b9-41c6-8ad2-8b40eafd9210", + "direction": "outgoing", + "index": 130651, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.661-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7dfac087-e9be-4df7-b4b9-1dfc3320995b", + "direction": "outgoing", + "index": 130652, + "result_id": "4270d5e1-72e9-47e3-aa94-84da3f245d53", + "status": 200, + "timestamp": "2026-05-22T12:42:02.675-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:02.584-04:00" + }, + { + "id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "created_at": "2026-05-22T12:42:04.671-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9b5cd872-048a-46e4-ad34-e38330e859ec", + "direction": "outgoing", + "index": 130653, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.675-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "ba2604fc-09c3-40f6-9a9f-b8dce5136c12", + "direction": "outgoing", + "index": 130654, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.691-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "05064fef-7dce-4fe6-acae-396c871d4dad", + "direction": "outgoing", + "index": 130655, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.705-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "02d9f535-a45d-4be3-ace8-6d28d94529bf", + "direction": "outgoing", + "index": 130656, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.718-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "a6f87b71-e41d-4ed2-ab76-3b2297776763", + "direction": "outgoing", + "index": 130657, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.729-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b06efa2f-faa1-456e-8ac1-57f2b442c2dd", + "direction": "outgoing", + "index": 130658, + "result_id": "4d6c6df5-9fe5-48f3-bab9-b1b0de124bbb", + "status": 200, + "timestamp": "2026-05-22T12:42:04.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:04.671-04:00" + }, + { + "id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "created_at": "2026-05-22T12:42:07.815-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "1e05307b-13ba-4f64-922b-418e477dcf92", + "direction": "outgoing", + "index": 130659, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.819-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "240cc8f5-6dba-47fe-9eb7-3a40c6fb80b3", + "direction": "outgoing", + "index": 130660, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.844-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b7ad70fe-b635-4e20-b926-7fc0784a4efa", + "direction": "outgoing", + "index": 130661, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.862-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "963a4c0d-64fd-4815-8bac-46f9c6b460a7", + "direction": "outgoing", + "index": 130662, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.876-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "a1e935c5-48d8-41b2-aade-8c13b158013a", + "direction": "outgoing", + "index": 130663, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.889-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "5ddee1d2-700e-4294-b50c-82cee1ff685b", + "direction": "outgoing", + "index": 130664, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.899-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d13cacfc-bced-4506-8f8d-02a03fecfd21", + "direction": "outgoing", + "index": 130665, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.909-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "4a756422-587a-44e3-b5d7-40ab78863052", + "direction": "outgoing", + "index": 130666, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.920-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3fb32b66-5c4f-4d20-a12e-3ae56072d6ca", + "direction": "outgoing", + "index": 130667, + "result_id": "3c6cc04d-3fbb-4b5d-8efb-b07729e096f1", + "status": 200, + "timestamp": "2026-05-22T12:42:07.929-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:07.815-04:00" + }, + { + "id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "created_at": "2026-05-22T12:42:10.482-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "9a0a6478-176d-4f30-ba99-646cb24ddabf", + "direction": "outgoing", + "index": 130668, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.494-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d20ee8b6-c9dd-41e8-90b9-d90f21e3bdd2", + "direction": "outgoing", + "index": 130669, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.523-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "ad4d677d-99df-43df-8645-2ffee9972ae4", + "direction": "outgoing", + "index": 130670, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.538-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=85a0f1b7-06ff-479d-bb1e-9353a77b13fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "4a86e4ff-dc43-453b-978b-d89a1844a6df", + "direction": "outgoing", + "index": 130671, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.553-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=85a0f1b7-06ff-479d-bb1e-9353a77b13fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d86f11ec-a75f-4326-8b90-7ff141ef0b7b", + "direction": "outgoing", + "index": 130672, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.566-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d30bc5e9-6150-4823-a415-e1162fc41e9f", + "direction": "outgoing", + "index": 130673, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.576-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b51606d8-3ac2-44a2-a07f-ba3b86658a18\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "011879e4-ddd9-41a4-929d-d9082a6ca299", + "direction": "outgoing", + "index": 130674, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.585-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b51606d8-3ac2-44a2-a07f-ba3b86658a18\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "14f43359-63a8-4d03-9fbb-18be056f4a82", + "direction": "outgoing", + "index": 130675, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.596-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9c22891b-aacd-4d26-82ea-9fc080c13e2e", + "direction": "outgoing", + "index": 130676, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "badd21f8-d9fe-46db-a750-aa0fca5c1dfc", + "direction": "outgoing", + "index": 130677, + "result_id": "e8ac6c99-0b68-4715-8303-a08217bb8bef", + "status": 200, + "timestamp": "2026-05-22T12:42:10.616-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:10.482-04:00" + }, + { + "id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "created_at": "2026-05-22T12:42:11.391-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "deb6bf04-12fc-47b7-ae17-98ccd14a567f", + "direction": "outgoing", + "index": 130678, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.399-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "f6baa0cf-5d59-4e2d-9905-333410d43b31", + "direction": "outgoing", + "index": 130679, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.424-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b2335696-6835-4720-b405-3b93db879e57", + "direction": "outgoing", + "index": 130680, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.440-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0aefaffe-d9eb-43a1-a096-eb66603e6c93", + "direction": "outgoing", + "index": 130681, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.456-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a5e9b979-367d-4ea6-9f82-15acbc37981c", + "direction": "outgoing", + "index": 130682, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.470-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355", + "verb": "get" + }, + { + "id": "9c37f8ca-93ce-4630-8150-164fa6c48f28", + "direction": "outgoing", + "index": 130683, + "result_id": "801168b4-79d1-4ae9-ba6d-999a7c2bf8b4", + "status": 200, + "timestamp": "2026-05-22T12:42:11.633-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:11.391-04:00" + }, + { + "id": "8acf749e-172f-4b7f-b083-4d1142666cfc", + "created_at": "2026-05-22T12:42:11.748-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "238071dd-51ec-42c8-b8ad-8f7a60f416a9", + "direction": "outgoing", + "index": 130684, + "result_id": "8acf749e-172f-4b7f-b083-4d1142666cfc", + "status": 200, + "timestamp": "2026-05-22T12:42:11.751-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:11.748-04:00" + }, + { + "id": "16cad723-8b94-4685-bdb7-bf634d76d590", + "created_at": "2026-05-22T12:42:12.159-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "07ef11ca-aaaf-4f2a-82c7-975fb5e063a2", + "direction": "outgoing", + "index": 130685, + "result_id": "16cad723-8b94-4685-bdb7-bf634d76d590", + "status": 200, + "timestamp": "2026-05-22T12:42:12.162-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85", + "verb": "get" + }, + { + "id": "6ed38d5b-6bdf-4019-aca5-a9c976db406b", + "direction": "outgoing", + "index": 130686, + "result_id": "16cad723-8b94-4685-bdb7-bf634d76d590", + "status": 200, + "timestamp": "2026-05-22T12:42:12.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355", + "verb": "get" + }, + { + "id": "75aa1811-9b1f-4dd8-94ab-abdfbcdce287", + "direction": "outgoing", + "index": 130687, + "result_id": "16cad723-8b94-4685-bdb7-bf634d76d590", + "status": 200, + "timestamp": "2026-05-22T12:42:12.196-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:12.159-04:00" + }, + { + "id": "2b9e82b8-97c9-4d03-85f3-0d9141a07f8d", + "created_at": "2026-05-22T12:42:12.276-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:12.276-04:00" + }, + { + "id": "cc86ab66-a696-42d6-96c9-9dadfd825845", + "created_at": "2026-05-22T12:42:12.282-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:12.282-04:00" + }, + { + "id": "7ed82962-cde5-478c-816c-018e9d036af3", + "created_at": "2026-05-22T12:42:12.284-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age-us_core_v800_pediatric_bmi_for_age_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:12.284-04:00" + }, + { + "id": "8a78110d-c2e3-4106-a610-3c5dde3a12f5", + "created_at": "2026-05-22T12:42:12.285-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_pediatric_bmi_for_age", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:12.285-04:00" + }, + { + "id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "created_at": "2026-05-22T12:42:13.080-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "11adf541-fb78-4911-aefd-48b5c7a245d4", + "direction": "outgoing", + "index": 130688, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.085-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "3c794319-3f09-438f-8f11-01ceb6eb9920", + "direction": "outgoing", + "index": 130689, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "032f4d7d-de4d-4741-8bd5-ed048e39dcba", + "direction": "outgoing", + "index": 130690, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "4cf1ec69-7db8-4a5e-9b4d-92e01754cb02", + "direction": "outgoing", + "index": 130691, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.136-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "464d2584-a5fa-4804-8a18-48a991b08dc7", + "direction": "outgoing", + "index": 130692, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.149-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "111af97a-c9b0-430a-941f-4fb38a710756", + "direction": "outgoing", + "index": 130693, + "result_id": "6f38d283-20f7-4397-8f65-371e64ad49ac", + "status": 200, + "timestamp": "2026-05-22T12:42:13.160-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:13.080-04:00" + }, + { + "id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "created_at": "2026-05-22T12:42:14.175-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0e0c9328-c70a-4e74-921f-80fb3b2f17b8", + "direction": "outgoing", + "index": 130694, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.182-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "35094edb-103b-44d1-a911-4dcd884b4d9c", + "direction": "outgoing", + "index": 130695, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "383b8773-56cc-4aae-ba7d-4c14bd998884", + "direction": "outgoing", + "index": 130696, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.221-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "39a8a47c-4115-4809-b327-55a85ef2c54f", + "direction": "outgoing", + "index": 130697, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.235-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "045b31ef-792e-4fd2-97cc-d25fb0beb596", + "direction": "outgoing", + "index": 130698, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.249-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "31a6ae14-bbaf-4b76-b0be-83c334957c34", + "direction": "outgoing", + "index": 130699, + "result_id": "0c8c0e64-d88b-4a4a-8678-c99c49f110a2", + "status": 200, + "timestamp": "2026-05-22T12:42:14.260-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:14.175-04:00" + }, + { + "id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "created_at": "2026-05-22T12:42:15.225-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8e1ba3f7-a46c-4cb1-8a7c-adc5b443ca59", + "direction": "outgoing", + "index": 130700, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.230-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "5f2bbaa7-2e1f-4f2c-8122-afaa391394f1", + "direction": "outgoing", + "index": 130701, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.254-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "378fd20a-03b1-4dfe-94fb-dd7953d0426e", + "direction": "outgoing", + "index": 130702, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.271-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "0e15e63d-9839-4eb4-960a-7859bf4eff65", + "direction": "outgoing", + "index": 130703, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.284-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "bc2cfa31-b811-42ca-9e61-e9c15d80422a", + "direction": "outgoing", + "index": 130704, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.297-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b1d51693-3526-4b66-b58f-223af34dd739", + "direction": "outgoing", + "index": 130705, + "result_id": "6ec796c6-35f6-4b4d-8c46-f821ea1acb10", + "status": 200, + "timestamp": "2026-05-22T12:42:15.307-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:15.225-04:00" + }, + { + "id": "c02121b7-772b-4a2d-93d4-404a24292862", + "created_at": "2026-05-22T12:42:16.775-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "0014a357-07c8-4efd-a54d-454475b330a4", + "direction": "outgoing", + "index": 130706, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.779-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "48ef93a7-9a55-452e-9138-bb768ea2686f", + "direction": "outgoing", + "index": 130707, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.796-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8187760a-86fc-46ae-9031-871ccc5390a1", + "direction": "outgoing", + "index": 130708, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.809-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8dde1ef9-2536-4955-8653-6ee0c382aca9", + "direction": "outgoing", + "index": 130709, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "fc0b2db2-f95e-4771-823f-6669d96ec660", + "direction": "outgoing", + "index": 130710, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1232b505-90d6-41a9-8d0b-5b67a83d3bc2", + "direction": "outgoing", + "index": 130711, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.840-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "26a4a37e-2841-427b-8b08-9a81633a443f", + "direction": "outgoing", + "index": 130712, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.852-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "c3ccaf4d-0dc8-48ad-857d-026d7ffecde9", + "direction": "outgoing", + "index": 130713, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.863-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "38ed279f-6579-4aab-acab-90aaae7218f2", + "direction": "outgoing", + "index": 130714, + "result_id": "c02121b7-772b-4a2d-93d4-404a24292862", + "status": 200, + "timestamp": "2026-05-22T12:42:16.875-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:16.775-04:00" + }, + { + "id": "1bd697bc-3196-4403-a268-a11646140ec8", + "created_at": "2026-05-22T12:42:19.500-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "afdb8f84-dbda-49e4-a6c0-019649244baa", + "direction": "outgoing", + "index": 130715, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.504-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0a144855-282e-4aa6-9161-4b4d32b1d5ce", + "direction": "outgoing", + "index": 130716, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.529-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a17ccf98-6ed7-44d4-89af-fd5a1ce495e5", + "direction": "outgoing", + "index": 130717, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.545-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f9354500-c023-4dbb-a1c1-9cabcd63e1ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f0825b84-b452-43cd-99b6-b570eb7d232f", + "direction": "outgoing", + "index": 130718, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.560-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f9354500-c023-4dbb-a1c1-9cabcd63e1ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "b26990fc-5816-4a94-9b12-92362cdb16b2", + "direction": "outgoing", + "index": 130719, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.572-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "206cc57d-5dc5-4c1c-9fb7-0befc3b7d389", + "direction": "outgoing", + "index": 130720, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.584-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4eaca0e1-c0ee-408b-8a78-96e9659c76cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d1cabc76-298c-431e-8985-16ad8a9215c4", + "direction": "outgoing", + "index": 130721, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.596-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4eaca0e1-c0ee-408b-8a78-96e9659c76cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "52b55718-3611-4ced-a5de-8db0b562510d", + "direction": "outgoing", + "index": 130722, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "6e58697c-5304-45e6-969b-ff14c636f9cb", + "direction": "outgoing", + "index": 130723, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.620-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "60b4e5c2-0d05-4758-8639-37954bb529a4", + "direction": "outgoing", + "index": 130724, + "result_id": "1bd697bc-3196-4403-a268-a11646140ec8", + "status": 200, + "timestamp": "2026-05-22T12:42:19.628-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:19.500-04:00" + }, + { + "id": "1758103a-2758-492f-afe7-621bf4121a20", + "created_at": "2026-05-22T12:42:20.407-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "831f1892-e7dc-4984-8bb8-761d4d1892e2", + "direction": "outgoing", + "index": 130725, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.411-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "31787dcb-01eb-4a57-9605-af87f3ed7d9c", + "direction": "outgoing", + "index": 130726, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.459-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "995108f6-942f-4481-9699-08c1cb025e61", + "direction": "outgoing", + "index": 130727, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.501-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5f5a65cf-a9af-4422-90ef-57cdab1114cc", + "direction": "outgoing", + "index": 130728, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.520-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "cdc54ec8-329f-44d1-91a4-33bc75690af2", + "direction": "outgoing", + "index": 130729, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.533-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + }, + { + "id": "3a70ab2e-7b46-49af-a9fb-895d06189b6b", + "direction": "outgoing", + "index": 130730, + "result_id": "1758103a-2758-492f-afe7-621bf4121a20", + "status": 200, + "timestamp": "2026-05-22T12:42:20.544-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:20.407-04:00" + }, + { + "id": "505ca536-7e22-4928-a9ee-fe1904631212", + "created_at": "2026-05-22T12:42:20.653-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "63ce1386-515d-4544-99d6-5b3ccadda00d", + "direction": "outgoing", + "index": 130731, + "result_id": "505ca536-7e22-4928-a9ee-fe1904631212", + "status": 200, + "timestamp": "2026-05-22T12:42:20.656-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:20.653-04:00" + }, + { + "id": "b9eeb040-79b9-4e8e-ab5b-58000f13c121", + "created_at": "2026-05-22T12:42:21.085-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fdad4d0d-ceb8-493f-80b0-35825a9f040f", + "direction": "outgoing", + "index": 130732, + "result_id": "b9eeb040-79b9-4e8e-ab5b-58000f13c121", + "status": 200, + "timestamp": "2026-05-22T12:42:21.089-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85", + "verb": "get" + }, + { + "id": "426db049-1425-49cc-9b65-3241bd902d70", + "direction": "outgoing", + "index": 130733, + "result_id": "b9eeb040-79b9-4e8e-ab5b-58000f13c121", + "status": 200, + "timestamp": "2026-05-22T12:42:21.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355", + "verb": "get" + }, + { + "id": "4bf45212-2be8-4335-be58-1d774d20cef0", + "direction": "outgoing", + "index": 130734, + "result_id": "b9eeb040-79b9-4e8e-ab5b-58000f13c121", + "status": 200, + "timestamp": "2026-05-22T12:42:21.143-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:21.085-04:00" + }, + { + "id": "5d6c989e-e32c-4727-b3cb-c6165904a765", + "created_at": "2026-05-22T12:42:21.263-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:21.263-04:00" + }, + { + "id": "bc0d5c39-bcd8-4226-aac7-296348b33de1", + "created_at": "2026-05-22T12:42:21.272-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:21.272-04:00" + }, + { + "id": "3daa0c04-0362-4600-9958-fa3f90ab2ca0", + "created_at": "2026-05-22T12:42:21.274-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile-us_core_v800_head_circumference_percentile_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:21.274-04:00" + }, + { + "id": "898c19e9-0a8f-4906-9cc2-2c2cca2b0e0f", + "created_at": "2026-05-22T12:42:21.276-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_head_circumference_percentile", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:21.276-04:00" + }, + { + "id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "created_at": "2026-05-22T12:42:22.022-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1a3427d5-a72d-4e3a-bec4-89d1547c4ba2", + "direction": "outgoing", + "index": 130735, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.029-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "28f6069d-e0bd-4f52-9eaf-12f6262e481d", + "direction": "outgoing", + "index": 130736, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "a642caad-c7a0-496e-aa1d-7ee79f964c0f", + "direction": "outgoing", + "index": 130737, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.063-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/_search", + "verb": "post" + }, + { + "id": "d09afeb6-a8d3-45c4-b647-2c8c0879fb65", + "direction": "outgoing", + "index": 130738, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.074-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355", + "verb": "get" + }, + { + "id": "494f8cb4-5e12-464b-96cb-6f722c9d0e7f", + "direction": "outgoing", + "index": 130739, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.084-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "7bd038ca-8c78-4624-b032-8718add2f377", + "direction": "outgoing", + "index": 130740, + "result_id": "6a5794a2-9f44-4f3d-b2c7-5a4cc95d95a9", + "status": 200, + "timestamp": "2026-05-22T12:42:22.098-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:22.022-04:00" + }, + { + "id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "created_at": "2026-05-22T12:42:23.057-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "d29b1859-2a19-42f7-83c6-85a51e0a21e6", + "direction": "outgoing", + "index": 130741, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "78ef6cd7-7dd5-4761-8743-dd3a655da421", + "direction": "outgoing", + "index": 130742, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.086-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d5dc7540-a046-48c8-94fd-87cf426f8c6b", + "direction": "outgoing", + "index": 130743, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.102-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=af270489-153b-4d17-8dbc-45e7a54844c5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3acc859e-3c80-4c58-bceb-9d25258cf772", + "direction": "outgoing", + "index": 130744, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_lastUpdated=2026-05-01T02:48:36.479%2B00:00\u0026category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "4e85fb42-440c-4a64-9d75-fe6cf5847a62", + "direction": "outgoing", + "index": 130745, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.129-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ca92855f-0c6a-4c1f-ac52-e74228452d7a", + "direction": "outgoing", + "index": 130746, + "result_id": "a9f4c767-c7ff-4f99-a7bf-c22765b006ef", + "status": 200, + "timestamp": "2026-05-22T12:42:23.140-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11b29792-f28e-40a0-b488-1b089b4a44b0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_category__lastUpdated_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:23.057-04:00" + }, + { + "id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "created_at": "2026-05-22T12:42:24.110-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "df3b5cba-8e0a-44b4-9e55-5a292acdceca", + "direction": "outgoing", + "index": 130747, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.116-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "40551e5d-acdb-49e6-9d29-71ba84ab3e6d", + "direction": "outgoing", + "index": 130748, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.141-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "afc2ea2f-3dd7-4db4-8e28-91bed1a158ac", + "direction": "outgoing", + "index": 130749, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ae4ea515-8a9c-4f2d-a8dd-24a16c92145e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "199839d3-eb4c-4787-87c0-1af248e78d6e", + "direction": "outgoing", + "index": 130750, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.173-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355", + "verb": "get" + }, + { + "id": "6a33719c-4203-447b-95d2-daa89e3ffac2", + "direction": "outgoing", + "index": 130751, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.184-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "2ff60b07-662a-4939-8d85-e508efafb28a", + "direction": "outgoing", + "index": 130752, + "result_id": "7bcff093-f6db-4f12-a312-e958006ff1ee", + "status": 200, + "timestamp": "2026-05-22T12:42:24.193-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=57a0488d-1d80-42ef-92a8-dc7813318da7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:24.110-04:00" + }, + { + "id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "created_at": "2026-05-22T12:42:25.581-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "81b63766-1b14-46fd-90fe-73a21a81c040", + "direction": "outgoing", + "index": 130753, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.585-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "dc7deca3-b256-4a3a-8b96-cbd6e7ed82ec", + "direction": "outgoing", + "index": 130754, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.603-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "3d7e600f-626e-4e19-a9cf-54ad4aa9d673", + "direction": "outgoing", + "index": 130755, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.614-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=37bd9b87-c2c9-46a7-9c75-6028a8bcfafc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "91ad82d4-2d70-4a2b-afed-a2d0f9494a60", + "direction": "outgoing", + "index": 130756, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.626-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final", + "verb": "get" + }, + { + "id": "c5c9b591-a457-44b0-a7f3-6398649c5cab", + "direction": "outgoing", + "index": 130757, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.638-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7f2d3557-60c4-4207-bdfe-670d41593d55", + "direction": "outgoing", + "index": 130758, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.652-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0451a910-42e7-4b08-8c35-51f874cd81ab\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "92bba1fe-3592-4d8b-a099-a9acacfdd668", + "direction": "outgoing", + "index": 130759, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.666-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "dcd6c1db-b865-4da0-a5b6-9497a38839e4", + "direction": "outgoing", + "index": 130760, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.677-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "7cabfebb-606d-46a7-9db5-5ab6d1a7b55a", + "direction": "outgoing", + "index": 130761, + "result_id": "eb012bdc-0e81-484a-87f1-8321f95c4ca0", + "status": 200, + "timestamp": "2026-05-22T12:42:25.688-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=c54eadea-5b1d-430b-9a4a-186dee881528\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_category_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:25.581-04:00" + }, + { + "id": "e7a40874-e12f-401b-8814-559a84b7550f", + "created_at": "2026-05-22T12:42:29.197-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "fcc412b8-c0e9-453e-aa9f-9bae77710d05", + "direction": "outgoing", + "index": 130762, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.204-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b42beb8b-d296-41db-bf92-9b2f00a4a250", + "direction": "outgoing", + "index": 130763, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.224-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "a43549fb-52c5-45e1-a1f9-41a8485d2194", + "direction": "outgoing", + "index": 130764, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.240-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2343d549-9b9d-4259-b3d1-b23504ec9c8c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "773f2c90-8d8e-42d8-9f89-5054b67a79f0", + "direction": "outgoing", + "index": 130765, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.256-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "66f848d1-dc4d-416d-bf5e-e2013fe281ce", + "direction": "outgoing", + "index": 130766, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.267-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=10c1bac9-81f0-47e7-9fe9-5132e7a98df2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "345322eb-89be-4145-8843-e3560551c3f6", + "direction": "outgoing", + "index": 130767, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.278-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "0fd44779-b4c2-4332-a6be-83ce4e936c62", + "direction": "outgoing", + "index": 130768, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.288-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fbe73f2d-18c6-4e3f-9fd0-bc018e89bac7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "916e6cef-a419-4718-b7f6-d6c59b9d9451", + "direction": "outgoing", + "index": 130769, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "690f2506-6f98-481f-bf0b-45b5609fe8f0", + "direction": "outgoing", + "index": 130770, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.310-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4ccb9ef8-3a00-4745-9b94-922d644f28cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "06a5aea6-1dbc-4676-b276-1d15123b6700", + "direction": "outgoing", + "index": 130771, + "result_id": "e7a40874-e12f-401b-8814-559a84b7550f", + "status": 200, + "timestamp": "2026-05-22T12:42:29.321-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_category_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:29.197-04:00" + }, + { + "id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "created_at": "2026-05-22T12:42:30.102-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "2e85ac1b-fc3f-4a1c-bd0c-ecd3efd77582", + "direction": "outgoing", + "index": 130772, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.108-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "5be480dd-de93-4cf5-b538-57e91871a1c0", + "direction": "outgoing", + "index": 130773, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.131-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "b86f3c6f-4632-45df-84fa-72d0dd5ab3ee", + "direction": "outgoing", + "index": 130774, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.148-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "e071f916-0849-41ad-abd6-f3498e37fc3f", + "direction": "outgoing", + "index": 130775, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.161-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "d5cc3370-33da-446a-a37f-9f77554482dc", + "direction": "outgoing", + "index": 130776, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.174-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355", + "verb": "get" + }, + { + "id": "90aa5eee-29c1-4fb2-b058-412b8e75b4e0", + "direction": "outgoing", + "index": 130777, + "result_id": "52a3d756-e835-4de6-9cd5-1411960bd6f8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.186-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:30.102-04:00" + }, + { + "id": "da09b6bc-3e98-4952-8ea7-bd3eb135eba9", + "created_at": "2026-05-22T12:42:30.299-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "e793edaa-8761-4922-8b1b-3ddb53722386", + "direction": "outgoing", + "index": 130778, + "result_id": "da09b6bc-3e98-4952-8ea7-bd3eb135eba9", + "status": 200, + "timestamp": "2026-05-22T12:42:30.301-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:30.299-04:00" + }, + { + "id": "6d6a9812-8ed8-4db2-b27a-54d50b4c08a8", + "created_at": "2026-05-22T12:42:30.762-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c6f62065-d3e6-483d-97e3-72ef0694d58a", + "direction": "outgoing", + "index": 130779, + "result_id": "6d6a9812-8ed8-4db2-b27a-54d50b4c08a8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.764-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85", + "verb": "get" + }, + { + "id": "5f237e27-3a05-4d38-b752-e8cdf9b593a9", + "direction": "outgoing", + "index": 130780, + "result_id": "6d6a9812-8ed8-4db2-b27a-54d50b4c08a8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.776-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355", + "verb": "get" + }, + { + "id": "049c2f1f-bb36-40c5-8e56-c2a059894b54", + "direction": "outgoing", + "index": 130781, + "result_id": "6d6a9812-8ed8-4db2-b27a-54d50b4c08a8", + "status": 200, + "timestamp": "2026-05-22T12:42:30.786-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:30.762-04:00" + }, + { + "id": "2d9327ce-4336-4b03-85e4-a30acda8680a", + "created_at": "2026-05-22T12:42:31.276-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found", + "type": "info" + }, + { + "message": "Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:31.276-04:00" + }, + { + "id": "9667fa11-d7ee-4b05-bdfb-c1f1bf1da7d2", + "created_at": "2026-05-22T12:42:31.301-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:31.301-04:00" + }, + { + "id": "8519de4c-78f1-4492-a9eb-2351d9090c3a", + "created_at": "2026-05-22T12:42:31.306-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight-us_core_v800_body_weight_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:31.306-04:00" + }, + { + "id": "6ee0f305-8ab7-498d-b40e-2864e7ff3f21", + "created_at": "2026-05-22T12:42:31.308-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_body_weight", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:31.308-04:00" + }, + { + "id": "787719cd-1443-48b2-ba46-53118e108033", + "created_at": "2026-05-22T12:42:34.319-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "0922ff79-1a05-43c5-b1f8-66b93e79a48c", + "direction": "outgoing", + "index": 130782, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.325-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85", + "verb": "get" + }, + { + "id": "43d9ab72-91df-4f07-b366-09a89cf76855", + "direction": "outgoing", + "index": 130783, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.344-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1ec00d7d-2513-4c72-9f04-a244f686c735\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ddbe3fd5-1572-4bec-aaeb-ee018cf52f6c", + "direction": "outgoing", + "index": 130784, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/_search", + "verb": "post" + }, + { + "id": "333970ea-da7a-44db-843e-c6f65ce290ba", + "direction": "outgoing", + "index": 130785, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.375-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=1ec00d7d-2513-4c72-9f04-a244f686c735\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "ea122304-a80b-45fd-845c-29dc46f2cd1a", + "direction": "outgoing", + "index": 130786, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.391-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85", + "verb": "get" + }, + { + "id": "9eda1126-39d3-47b5-886e-680e1698ac35", + "direction": "outgoing", + "index": 130787, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.401-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=0806d641-1e37-4574-a268-943e06c3870d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "a7559a88-4462-4c36-a744-ec9641159831", + "direction": "outgoing", + "index": 130788, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.414-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355", + "verb": "get" + }, + { + "id": "a86125bb-4049-4204-8eaf-bb04589fcd60", + "direction": "outgoing", + "index": 130789, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.425-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=60f1fb96-4db7-4f6a-8cdd-f1860fb1fc0e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "8abac795-92af-42be-aafb-b62dc509aea6", + "direction": "outgoing", + "index": 130790, + "result_id": "787719cd-1443-48b2-ba46-53118e108033", + "status": 200, + "timestamp": "2026-05-22T12:42:34.436-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:34.319-04:00" + }, + { + "id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "created_at": "2026-05-22T12:42:36.797-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "a39e7875-ffd6-44df-9f11-61e853a28c65", + "direction": "outgoing", + "index": 130791, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.803-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed", + "verb": "get" + }, + { + "id": "265a8f7b-e0c8-4417-a7f5-b25614ac6926", + "direction": "outgoing", + "index": 130792, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.823-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=08babfe9-e11c-49bf-aeae-56e7a7a7af6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "db21c78f-b456-4215-9c9f-d8367e6aa51e", + "direction": "outgoing", + "index": 130793, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.840-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed", + "verb": "get" + }, + { + "id": "3ced79f8-1604-4830-8a2b-940eeb7d657a", + "direction": "outgoing", + "index": 130794, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.853-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=11a6670c-960f-40e9-84d0-e48bbb8d64fb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "d96e9caa-4d8f-4e53-aa8c-8ea19b0c1931", + "direction": "outgoing", + "index": 130795, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.868-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown", + "verb": "get" + }, + { + "id": "5b9cb745-393d-48ef-87d9-62c9813c4e06", + "direction": "outgoing", + "index": 130796, + "result_id": "9ab0ba44-9f23-467f-9be3-34423e01b511", + "status": 200, + "timestamp": "2026-05-22T12:42:36.881-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=ce96fcd2-d10b-4b3b-bcf5-f52e183fef96\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:36.797-04:00" + }, + { + "id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "created_at": "2026-05-22T12:42:39.255-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4d71cc2f-6a74-4e03-837c-99c5997ffb96", + "direction": "outgoing", + "index": 130797, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.264-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6776037d-17e0-494d-8645-0c2ccae12a6e", + "direction": "outgoing", + "index": 130798, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.283-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=554c7fe1-2514-4976-a0ca-858f2b660f68\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "1f79f36a-9b6a-4b78-adc8-ffd96c27bd0b", + "direction": "outgoing", + "index": 130799, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.300-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "77f4a5c4-51c7-40a9-be03-e11eb890e56e", + "direction": "outgoing", + "index": 130800, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.314-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=554c7fe1-2514-4976-a0ca-858f2b660f68\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "05660a44-d64e-4033-8084-d8303bae9c3f", + "direction": "outgoing", + "index": 130801, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.330-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6e5100a3-1cb5-4c4e-bf8c-0e296126b6d6", + "direction": "outgoing", + "index": 130802, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.341-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b41364ff-a3f2-4e8b-9014-409bff6fc3d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9a8a5afd-3316-499b-9347-2d4b639091ea", + "direction": "outgoing", + "index": 130803, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.352-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6e7ae2d1-89dc-4676-8b4c-95a8519325bc", + "direction": "outgoing", + "index": 130804, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.362-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "6060f8cb-4ebc-4da4-a197-92218fcbc480", + "direction": "outgoing", + "index": 130805, + "result_id": "77ae0980-4a3a-46d0-b8f5-b817242beddb", + "status": 200, + "timestamp": "2026-05-22T12:42:39.372-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_patient_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:39.255-04:00" + }, + { + "id": "0e65c52c-b068-459d-905e-14cef49d933a", + "created_at": "2026-05-22T12:42:40.364-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "ddcf415a-246a-4426-9092-3d533e0ec3e5", + "direction": "outgoing", + "index": 130806, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.366-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "d1f44092-1fce-4f6c-80af-7b80ec5b93cc", + "direction": "outgoing", + "index": 130807, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.376-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "71197a12-7f7e-4cbe-8545-4c81182bc79d", + "direction": "outgoing", + "index": 130808, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.387-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0150f0e6-6bc0-44fb-bf13-8940ec5af4d2", + "direction": "outgoing", + "index": 130809, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.400-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "5370bc34-5c6a-4eb1-a521-79189bf7fe09", + "direction": "outgoing", + "index": 130810, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.409-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "0307f817-d70b-41b9-8065-b3bc214018ee", + "direction": "outgoing", + "index": 130811, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.419-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85", + "verb": "get" + }, + { + "id": "76cf43aa-e1d4-40ae-ba0c-38019d1ea766", + "direction": "outgoing", + "index": 130812, + "result_id": "0e65c52c-b068-459d-905e-14cef49d933a", + "status": 200, + "timestamp": "2026-05-22T12:42:40.431-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_patient_code_date_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:40.364-04:00" + }, + { + "id": "a7676cfe-06c0-4359-ab14-40e78ea7385c", + "created_at": "2026-05-22T12:42:40.540-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5f7ecf8f-d765-4eaf-ae5c-7319e09ba0bf", + "direction": "outgoing", + "index": 130813, + "result_id": "a7676cfe-06c0-4359-ab14-40e78ea7385c", + "status": 200, + "timestamp": "2026-05-22T12:42:40.542-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:40.540-04:00" + }, + { + "id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "created_at": "2026-05-22T12:42:42.489-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "8ee56891-aad6-49f9-b00e-b8eefcc6dd06", + "direction": "outgoing", + "index": 130814, + "result_id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "status": 200, + "timestamp": "2026-05-22T12:42:42.492-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "5f4fbf23-7047-4c0a-b9dd-4a447f5ceb8a", + "direction": "outgoing", + "index": 130815, + "result_id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "status": 200, + "timestamp": "2026-05-22T12:42:42.511-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=9e6aeb13-8bdc-4bd4-a417-ea0ae8135f12\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "f4814148-16a3-43dc-93aa-e59ac655f3df", + "direction": "outgoing", + "index": 130816, + "result_id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "status": 200, + "timestamp": "2026-05-22T12:42:42.527-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "0b70a8dd-3aec-4297-93fe-e3880f429125", + "direction": "outgoing", + "index": 130817, + "result_id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "status": 200, + "timestamp": "2026-05-22T12:42:42.541-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=f2baef58-1882-4246-bbaa-6f849fa81c4b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fc0f21ae-8738-45f7-acf3-a61ce4b0d498", + "direction": "outgoing", + "index": 130818, + "result_id": "0de8b124-1440-4ce8-a4b4-2042991e0cb3", + "status": 200, + "timestamp": "2026-05-22T12:42:42.555-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:42.489-04:00" + }, + { + "id": "314e57fa-dfd2-4f91-9b79-80f811c2fc7a", + "created_at": "2026-05-22T12:42:46.438-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|8.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#447365002)", + "type": "info" + }, + { + "message": "Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure.code: None of the codings provided are in the value set 'US Core Procedure Codes' (http://hl7.org/fhir/us/core/ValueSet/us-core-procedure-code|8.0.0), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#60027007)", + "type": "info" + }, + { + "message": "Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:46.438-04:00" + }, + { + "id": "91f2596b-6315-4ea7-bf05-69539b9a5a83", + "created_at": "2026-05-22T12:42:46.504-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:46.504-04:00" + }, + { + "id": "e131b81e-54b3-49d0-8ebf-ce099c781103", + "created_at": "2026-05-22T12:42:46.713-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "3e3ad2d5-e55c-43a7-aca2-e49eff79c532", + "direction": "outgoing", + "index": 130819, + "result_id": "e131b81e-54b3-49d0-8ebf-ce099c781103", + "status": 200, + "timestamp": "2026-05-22T12:42:46.757-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2", + "verb": "get" + }, + { + "id": "42e729d1-5dcc-4ff2-a7dd-34a43ff54860", + "direction": "outgoing", + "index": 130820, + "result_id": "e131b81e-54b3-49d0-8ebf-ce099c781103", + "status": 200, + "timestamp": "2026-05-22T12:42:46.769-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition/4866099e-5e19-4703-9ac7-97a83fb217f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure-us_core_v800_procedure_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:46.713-04:00" + }, + { + "id": "2bb02656-b6d9-4ac2-94ba-c53db777358b", + "created_at": "2026-05-22T12:42:46.780-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_procedure", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:46.780-04:00" + }, + { + "id": "9a9c1454-e6ec-448e-8075-a0cad27bbbcb", + "created_at": "2026-05-22T12:42:47.102-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4b0c320f-b69e-49be-8b98-fb394d09308b", + "direction": "outgoing", + "index": 130821, + "result_id": "9a9c1454-e6ec-448e-8075-a0cad27bbbcb", + "status": 200, + "timestamp": "2026-05-22T12:42:47.106-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=85", + "verb": "get" + }, + { + "id": "55c37ff5-8072-4aa9-a3fc-6610af0cc8a7", + "direction": "outgoing", + "index": 130822, + "result_id": "9a9c1454-e6ec-448e-8075-a0cad27bbbcb", + "status": 200, + "timestamp": "2026-05-22T12:42:47.123-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=355", + "verb": "get" + }, + { + "id": "f7816f1c-dacc-4925-b8a6-b30a44086ee3", + "direction": "outgoing", + "index": 130823, + "result_id": "9a9c1454-e6ec-448e-8075-a0cad27bbbcb", + "status": 200, + "timestamp": "2026-05-22T12:42:47.137-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=908", + "verb": "get" + } + ], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.102-04:00" + }, + { + "id": "1dbcd4e3-2a81-4ed4-8da6-0d803d6c653b", + "created_at": "2026-05-22T12:42:47.151-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `_id`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.151-04:00" + }, + { + "id": "e210a0e3-9ad8-4db4-9f2f-1e4b168364d4", + "created_at": "2026-05-22T12:42:47.153-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `authored`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_patient_authored_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.153-04:00" + }, + { + "id": "f484c01d-3cbe-43a6-8132-f577c8bacdd6", + "created_at": "2026-05-22T12:42:47.154-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `status`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.154-04:00" + }, + { + "id": "4aa32c6c-618e-48a0-a9e9-e181ffe03fea", + "created_at": "2026-05-22T12:42:47.155-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "Could not find values for all search params `patient`, `questionnaire`", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_patient_questionnaire_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.155-04:00" + }, + { + "id": "83c97a5c-360a-4ec4-9279-b19202aaa965", + "created_at": "2026-05-22T12:42:47.158-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.158-04:00" + }, + { + "id": "7e48ff55-f71b-4600-bd8b-da35e9184be2", + "created_at": "2026-05-22T12:42:47.503-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "12da9427-c8f2-49f8-a059-74df0379032e", + "direction": "outgoing", + "index": 130824, + "result_id": "7e48ff55-f71b-4600-bd8b-da35e9184be2", + "status": 200, + "timestamp": "2026-05-22T12:42:47.524-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "a59f10ce-4ff5-4014-aeeb-9b5cdb32874b", + "direction": "outgoing", + "index": 130825, + "result_id": "7e48ff55-f71b-4600-bd8b-da35e9184be2", + "status": 200, + "timestamp": "2026-05-22T12:42:47.554-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "0919b941-17de-4c95-865d-acd289705720", + "direction": "outgoing", + "index": 130826, + "result_id": "7e48ff55-f71b-4600-bd8b-da35e9184be2", + "status": 200, + "timestamp": "2026-05-22T12:42:47.570-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "skip", + "result_message": "No Provenance resources appear to be available. Please use patients with more information", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.503-04:00" + }, + { + "id": "ed2495f4-fb99-4c28-a202-681f47d1e578", + "created_at": "2026-05-22T12:42:47.585-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-questionnaireresponse profile were returned", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.585-04:00" + }, + { + "id": "1d2a9a02-8deb-4f95-8583-11b9a4d9e2b7", + "created_at": "2026-05-22T12:42:47.587-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources were found", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.587-04:00" + }, + { + "id": "e3f67a5f-9459-4607-8d64-03abb703cc22", + "created_at": "2026-05-22T12:42:47.589-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "skip", + "result_message": "No QuestionnaireResponse resources appear to be available. Please use patients with more information.", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response-us_core_v800_questionnaire_response_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.589-04:00" + }, + { + "id": "28c3abbd-a7c1-45f6-ae0c-8a8363eb90a7", + "created_at": "2026-05-22T12:42:47.590-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "skip", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_questionnaire_response", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:47.590-04:00" + }, + { + "id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "created_at": "2026-05-22T12:42:48.228-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1b8ff98d-6320-4f83-bd7e-2d23efadb69a", + "direction": "outgoing", + "index": 130827, + "result_id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "status": 200, + "timestamp": "2026-05-22T12:42:48.233-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=85", + "verb": "get" + }, + { + "id": "5872b594-1b57-4a74-8dcd-31b0d7976d63", + "direction": "outgoing", + "index": 130828, + "result_id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "status": 200, + "timestamp": "2026-05-22T12:42:48.255-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355", + "verb": "get" + }, + { + "id": "d9674573-5093-4632-98c4-04487924424c", + "direction": "outgoing", + "index": 130829, + "result_id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "status": 200, + "timestamp": "2026-05-22T12:42:48.268-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest/_search", + "verb": "post" + }, + { + "id": "d50cde12-9947-4a58-a1df-5cdcc4bbce9a", + "direction": "outgoing", + "index": 130830, + "result_id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "status": 200, + "timestamp": "2026-05-22T12:42:48.281-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=Patient/355", + "verb": "get" + }, + { + "id": "aba12fbb-273b-4621-b211-d12494b23e3c", + "direction": "outgoing", + "index": 130831, + "result_id": "f3bc39f6-d798-4ffa-b50f-015a08dba2fc", + "status": 200, + "timestamp": "2026-05-22T12:42:48.295-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:48.228-04:00" + }, + { + "id": "06bf8ac5-6648-4c00-9ee0-c3acea95aa5a", + "created_at": "2026-05-22T12:42:48.425-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "1db19111-2286-42e9-958c-33e54841210e", + "direction": "outgoing", + "index": 130832, + "result_id": "06bf8ac5-6648-4c00-9ee0-c3acea95aa5a", + "status": 200, + "timestamp": "2026-05-22T12:42:48.428-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_id=3545ff18-c7e4-45e1-94fc-3f7d644ebdd2", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:48.425-04:00" + }, + { + "id": "cc08bccf-ed88-4881-b32f-001607ca945d", + "created_at": "2026-05-22T12:42:48.677-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "76019f55-a599-470c-a285-af7df298e20a", + "direction": "outgoing", + "index": 130833, + "result_id": "cc08bccf-ed88-4881-b32f-001607ca945d", + "status": 200, + "timestamp": "2026-05-22T12:42:48.682-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=completed", + "verb": "get" + }, + { + "id": "3c9b787e-6130-4839-9b60-b10279a91874", + "direction": "outgoing", + "index": 130834, + "result_id": "cc08bccf-ed88-4881-b32f-001607ca945d", + "status": 200, + "timestamp": "2026-05-22T12:42:48.701-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_status_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:48.677-04:00" + }, + { + "id": "53496036-b65a-4dcb-8d87-e5256524bb29", + "created_at": "2026-05-22T12:42:48.951-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "ed47f12c-ca16-407f-b851-878dcbfedb2c", + "direction": "outgoing", + "index": 130835, + "result_id": "53496036-b65a-4dcb-8d87-e5256524bb29", + "status": 200, + "timestamp": "2026-05-22T12:42:48.956-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "95da28e2-e651-4b2a-9822-6944e60a2f34", + "direction": "outgoing", + "index": 130836, + "result_id": "53496036-b65a-4dcb-8d87-e5256524bb29", + "status": 200, + "timestamp": "2026-05-22T12:42:48.979-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=http://snomed.info/sct%7C387713003\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_category_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:48.951-04:00" + }, + { + "id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "created_at": "2026-05-22T12:42:49.776-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "e63aaf0e-d84e-4c02-8bb8-98958b87923f", + "direction": "outgoing", + "index": 130837, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.782-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "30d1cd37-a93a-44f5-96aa-4834ce808bba", + "direction": "outgoing", + "index": 130838, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.804-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "74478de2-19ba-4b5a-8bcf-38245f79b6b0", + "direction": "outgoing", + "index": 130839, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.820-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "57161eff-ca62-4ad9-be02-b9ccf7f1943a", + "direction": "outgoing", + "index": 130840, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.833-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "76c9719d-1497-480e-90be-c31d7e8ae60b", + "direction": "outgoing", + "index": 130841, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.869-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "47214910-7ace-437b-b5a6-fb29cbfb0397", + "direction": "outgoing", + "index": 130842, + "result_id": "f24e0928-34b9-4ef3-b36d-aecb01203f01", + "status": 200, + "timestamp": "2026-05-22T12:42:49.942-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=http://snomed.info/sct%7C233169004\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_code_authored_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:49.776-04:00" + }, + { + "id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "created_at": "2026-05-22T12:42:50.693-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "7ea03d43-681e-47be-b108-da7df200aca2", + "direction": "outgoing", + "index": 130843, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.700-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "3c0c5e1e-bc11-4b4f-9137-87aa030ba3f5", + "direction": "outgoing", + "index": 130844, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.725-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "14b18dcf-cf76-4750-8988-64a22445da00", + "direction": "outgoing", + "index": 130845, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.741-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "857aeb93-61fc-4f15-ae07-ef03c08f172a", + "direction": "outgoing", + "index": 130846, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.757-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "bd55b713-3e03-43e6-b026-ac37c0ebe420", + "direction": "outgoing", + "index": 130847, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.772-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355", + "verb": "get" + }, + { + "id": "13616c82-61ea-4516-8fb8-b2023850902e", + "direction": "outgoing", + "index": 130848, + "result_id": "681383d1-b5bf-42d2-b603-76c0e90142c8", + "status": 200, + "timestamp": "2026-05-22T12:42:50.782-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=http://snomed.info/sct%7C387713003\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_category_authored_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:50.693-04:00" + }, + { + "id": "39b450e5-fd5a-4aca-b923-dc1ba949f7a1", + "created_at": "2026-05-22T12:42:51.011-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "06cd9a9a-9215-4997-8e9f-e1e652117a4f", + "direction": "outgoing", + "index": 130849, + "result_id": "39b450e5-fd5a-4aca-b923-dc1ba949f7a1", + "status": 200, + "timestamp": "2026-05-22T12:42:51.013-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=233169004\u0026patient=355", + "verb": "get" + }, + { + "id": "bfc9e8d8-6e85-498d-8454-15dc13a82a78", + "direction": "outgoing", + "index": 130850, + "result_id": "39b450e5-fd5a-4aca-b923-dc1ba949f7a1", + "status": 200, + "timestamp": "2026-05-22T12:42:51.031-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=http://snomed.info/sct%7C233169004\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_patient_code_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:51.011-04:00" + }, + { + "id": "49ca3cea-5aa7-43eb-910f-23eb7df9fbd9", + "created_at": "2026-05-22T12:42:51.155-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c812b36f-7631-41f0-ac9c-c71d6a649b95", + "direction": "outgoing", + "index": 130851, + "result_id": "49ca3cea-5aa7-43eb-910f-23eb7df9fbd9", + "status": 200, + "timestamp": "2026-05-22T12:42:51.158-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:51.155-04:00" + }, + { + "id": "b69e1ad5-7bc8-4d9d-8b50-3d2fadf7a2d5", + "created_at": "2026-05-22T12:42:51.603-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5ab71399-6de4-4f05-b6ca-35b6801aa3d5", + "direction": "outgoing", + "index": 130852, + "result_id": "b69e1ad5-7bc8-4d9d-8b50-3d2fadf7a2d5", + "status": 200, + "timestamp": "2026-05-22T12:42:51.607-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "38bf3aab-b4ac-472f-b8dd-b3acfd380ad7", + "direction": "outgoing", + "index": 130853, + "result_id": "b69e1ad5-7bc8-4d9d-8b50-3d2fadf7a2d5", + "status": 200, + "timestamp": "2026-05-22T12:42:51.624-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "14139064-e2f0-4628-a37a-20254e963346", + "direction": "outgoing", + "index": 130854, + "result_id": "b69e1ad5-7bc8-4d9d-8b50-3d2fadf7a2d5", + "status": 200, + "timestamp": "2026-05-22T12:42:51.639-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:51.603-04:00" + }, + { + "id": "ec99d9d7-5006-4c0a-b366-f4e3e60911ed", + "created_at": "2026-05-22T12:42:54.013-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest.category[0]: Reference to draft ValueSet http://hl7.org/fhir/ValueSet/servicerequest-category|4.0.1", + "type": "info" + }, + { + "message": "ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "ServiceRequest/d1ab235c-2f94-4a51-8d36-45b9fc9dfd5f: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.013-04:00" + }, + { + "id": "856885f5-fbb7-444d-aef1-21761423ff76", + "created_at": "2026-05-22T12:42:54.030-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.030-04:00" + }, + { + "id": "7104b0d3-d086-47d1-8240-0e7f7572f5ca", + "created_at": "2026-05-22T12:42:54.200-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "300fc741-f9f5-460c-bd7b-494d2dad00f9", + "direction": "outgoing", + "index": 130855, + "result_id": "7104b0d3-d086-47d1-8240-0e7f7572f5ca", + "status": 200, + "timestamp": "2026-05-22T12:42:54.205-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Encounter/f649e860-6104-49b2-96ec-9b219c4a49af", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request-us_core_v800_service_request_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.200-04:00" + }, + { + "id": "6f1fff1f-cd8a-4098-9b9e-7ef70291c9e7", + "created_at": "2026-05-22T12:42:54.230-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_service_request", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.230-04:00" + }, + { + "id": "3b0581d0-8af8-4e91-af69-d75c8191323e", + "created_at": "2026-05-22T12:42:54.359-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Location reference used for this test was pulled from resource\nEncounter/cac22925-f852-4ed3-af57-50afe02288bd\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "62373c93-e86a-43df-b77c-f8c4fabea46c", + "direction": "outgoing", + "index": 130856, + "result_id": "3b0581d0-8af8-4e91-af69-d75c8191323e", + "status": 200, + "timestamp": "2026-05-22T12:42:54.368-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.359-04:00" + }, + { + "id": "1d6587f1-b683-42b2-8ba1-d6a7eac9f90e", + "created_at": "2026-05-22T12:42:54.630-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "79b5061c-177b-41d0-9ac2-79bbf40c6f91", + "direction": "outgoing", + "index": 130857, + "result_id": "1d6587f1-b683-42b2-8ba1-d6a7eac9f90e", + "status": 200, + "timestamp": "2026-05-22T12:42:54.636-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location?address=DRACUT", + "verb": "get" + }, + { + "id": "0844b0ca-ecb4-456b-9d79-d624e6d56532", + "direction": "outgoing", + "index": 130858, + "result_id": "1d6587f1-b683-42b2-8ba1-d6a7eac9f90e", + "status": 200, + "timestamp": "2026-05-22T12:42:54.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_address_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.630-04:00" + }, + { + "id": "6aa5aba3-4322-4ea3-955e-295413d51bc1", + "created_at": "2026-05-22T12:42:54.789-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "30688017-ea70-4965-a65b-2dc1babec962", + "direction": "outgoing", + "index": 130859, + "result_id": "6aa5aba3-4322-4ea3-955e-295413d51bc1", + "status": 200, + "timestamp": "2026-05-22T12:42:54.791-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location?address-city=DRACUT", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_address_city_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.789-04:00" + }, + { + "id": "ec615466-6a8d-4928-95ca-32cdfc57828c", + "created_at": "2026-05-22T12:42:54.923-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "319c1018-aed6-41e9-9677-14ca67f4daf2", + "direction": "outgoing", + "index": 130860, + "result_id": "ec615466-6a8d-4928-95ca-32cdfc57828c", + "status": 200, + "timestamp": "2026-05-22T12:42:54.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location?address-postalcode=01826-2611", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_address_postalcode_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:54.923-04:00" + }, + { + "id": "d9a96abf-0ada-442b-98f0-2ba7647bf4a4", + "created_at": "2026-05-22T12:42:55.254-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "382d3491-247e-45bb-b1cd-a4ddb005c25e", + "direction": "outgoing", + "index": 130861, + "result_id": "d9a96abf-0ada-442b-98f0-2ba7647bf4a4", + "status": 200, + "timestamp": "2026-05-22T12:42:55.258-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location?address-state=MA", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_address_state_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.254-04:00" + }, + { + "id": "d0ca9a6b-8d04-46d7-ab8e-ab601554a012", + "created_at": "2026-05-22T12:42:55.431-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "bd8a81dd-0995-41e0-abed-816d4d08288c", + "direction": "outgoing", + "index": 130862, + "result_id": "d0ca9a6b-8d04-46d7-ab8e-ab601554a012", + "status": 200, + "timestamp": "2026-05-22T12:42:55.433-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location?name=PCP87052", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.431-04:00" + }, + { + "id": "03f1aa23-cdb0-4ec9-9c69-ea13e5d9ae1a", + "created_at": "2026-05-22T12:42:55.480-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Location/b594895c-11cb-403f-a3bb-5729a3da4bd6: Location.type[0]: None of the codings provided are in the value set 'Healthcare Service Location Type Combined' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1267.31|20250516) specified in an additional binding, and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v3-RoleCode#ORTHO)", + "type": "warning" + }, + { + "message": "Location/b594895c-11cb-403f-a3bb-5729a3da4bd6: Location.type[0]: None of the codings provided are in the value set 'CMS Place of Service Codes (POS)' (http://terminology.hl7.org/ValueSet/CMSPlaceOfServiceCodes|1.0.0) specified in an additional binding, and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v3-RoleCode#ORTHO)", + "type": "warning" + }, + { + "message": "Location/b594895c-11cb-403f-a3bb-5729a3da4bd6: Location: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.480-04:00" + }, + { + "id": "5e815912-6dbc-4441-8f67-0937700b1ab5", + "created_at": "2026-05-22T12:42:55.497-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.497-04:00" + }, + { + "id": "0c09ccb8-dabb-405d-a033-cb13b3f66eba", + "created_at": "2026-05-22T12:42:55.505-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location-us_core_v800_location_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.505-04:00" + }, + { + "id": "a4bdbdb8-4806-4feb-815c-8bc70901b26a", + "created_at": "2026-05-22T12:42:55.508-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_location", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.508-04:00" + }, + { + "id": "4940d332-7223-4624-8217-323e215112ff", + "created_at": "2026-05-22T12:42:55.635-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f31f5405-00ff-4759-b769-bf7883690c6e", + "direction": "outgoing", + "index": 130863, + "result_id": "4940d332-7223-4624-8217-323e215112ff", + "status": 200, + "timestamp": "2026-05-22T12:42:55.643-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization-us_core_v800_organization_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.635-04:00" + }, + { + "id": "fcb464e1-7d5f-4759-8c2c-9ab5d8ccaad9", + "created_at": "2026-05-22T12:42:55.902-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "c8c7b6b8-936b-4028-a85a-e5eedfa5297b", + "direction": "outgoing", + "index": 130864, + "result_id": "fcb464e1-7d5f-4759-8c2c-9ab5d8ccaad9", + "status": 200, + "timestamp": "2026-05-22T12:42:55.908-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT", + "verb": "get" + }, + { + "id": "61da29f1-81a3-4f07-ba6a-b528b2858970", + "direction": "outgoing", + "index": 130865, + "result_id": "fcb464e1-7d5f-4759-8c2c-9ab5d8ccaad9", + "status": 200, + "timestamp": "2026-05-22T12:42:55.928-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization-us_core_v800_organization_address_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:55.902-04:00" + }, + { + "id": "c93bd1d4-c748-41d4-a9de-4ae92d59eca7", + "created_at": "2026-05-22T12:42:56.060-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "28cf64d6-f270-4cb9-8856-c153e37f2bef", + "direction": "outgoing", + "index": 130866, + "result_id": "c93bd1d4-c748-41d4-a9de-4ae92d59eca7", + "status": 200, + "timestamp": "2026-05-22T12:42:56.062-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization-us_core_v800_organization_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.060-04:00" + }, + { + "id": "e7409f50-588a-40e5-9d87-2c9df54a1efb", + "created_at": "2026-05-22T12:42:56.111-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization.identifier[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization-us_core_v800_organization_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.111-04:00" + }, + { + "id": "fd5d9793-0e83-47c5-b139-8595fec74b8d", + "created_at": "2026-05-22T12:42:56.117-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization-us_core_v800_organization_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.117-04:00" + }, + { + "id": "1ca8b629-c01d-4e20-be23-8ae575b99910", + "created_at": "2026-05-22T12:42:56.119-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_organization", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.119-04:00" + }, + { + "id": "ae22eaf9-f04f-45be-a9de-588a857b527d", + "created_at": "2026-05-22T12:42:56.241-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "375fdd5d-782c-45ce-b347-8ddb9891f95e", + "direction": "outgoing", + "index": 130867, + "result_id": "ae22eaf9-f04f-45be-a9de-588a857b527d", + "status": 200, + "timestamp": "2026-05-22T12:42:56.246-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.241-04:00" + }, + { + "id": "8edefecd-86b6-44e1-b2b5-de2abca9df29", + "created_at": "2026-05-22T12:42:56.486-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "4eae2017-d4b2-4666-8462-1d25234a1218", + "direction": "outgoing", + "index": 130868, + "result_id": "8edefecd-86b6-44e1-b2b5-de2abca9df29", + "status": 200, + "timestamp": "2026-05-22T12:42:56.487-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?_id=d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + }, + { + "id": "617287ab-05b9-457f-89e4-c24498347e72", + "direction": "outgoing", + "index": 130869, + "result_id": "8edefecd-86b6-44e1-b2b5-de2abca9df29", + "status": 200, + "timestamp": "2026-05-22T12:42:56.498-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.486-04:00" + }, + { + "id": "fb4c20c9-2c1e-4d8d-bdbd-a6d9fd1a294d", + "created_at": "2026-05-22T12:42:56.735-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "06e2332d-fe1d-4712-b40a-e04bdb84b13f", + "direction": "outgoing", + "index": 130870, + "result_id": "fb4c20c9-2c1e-4d8d-bdbd-a6d9fd1a294d", + "status": 200, + "timestamp": "2026-05-22T12:42:56.738-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819", + "verb": "get" + }, + { + "id": "c424949f-8104-4a5f-9595-65859c0e74b7", + "direction": "outgoing", + "index": 130871, + "result_id": "fb4c20c9-2c1e-4d8d-bdbd-a6d9fd1a294d", + "status": 200, + "timestamp": "2026-05-22T12:42:56.757-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_identifier_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.735-04:00" + }, + { + "id": "b27f7239-6d72-467f-bf58-ee989288a4f9", + "created_at": "2026-05-22T12:42:56.880-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2ade903f-a4a4-40f8-a3a0-b2922ffa4677", + "direction": "outgoing", + "index": 130872, + "result_id": "b27f7239-6d72-467f-bf58-ee989288a4f9", + "status": 200, + "timestamp": "2026-05-22T12:42:56.882-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.880-04:00" + }, + { + "id": "10684816-9266-42c1-b14b-d7d672f9c5a5", + "created_at": "2026-05-22T12:42:56.931-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.931-04:00" + }, + { + "id": "addc1ba9-bb05-43cb-8161-6cce82337f43", + "created_at": "2026-05-22T12:42:56.935-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:56.935-04:00" + }, + { + "id": "33f8bc90-b30a-4dfa-a5b5-4378d5a3d260", + "created_at": "2026-05-22T12:42:57.047-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "55a3905b-b118-4f7f-b37a-2ded1ee1b557", + "direction": "outgoing", + "index": 130873, + "result_id": "33f8bc90-b30a-4dfa-a5b5-4378d5a3d260", + "status": 200, + "timestamp": "2026-05-22T12:42:57.050-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner-us_core_v800_practitioner_address_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:57.047-04:00" + }, + { + "id": "72fa772a-5f3e-4240-8354-a4546215987b", + "created_at": "2026-05-22T12:42:57.068-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:57.068-04:00" + }, + { + "id": "a3311e5f-2c27-4263-a9af-ae44e9333e15", + "created_at": "2026-05-22T12:42:57.188-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe PractitionerRole reference used for this test was pulled from resource\nMedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "a4be43d6-f1ee-4e70-bf88-353ac13d03bb", + "direction": "outgoing", + "index": 130874, + "result_id": "a3311e5f-2c27-4263-a9af-ae44e9333e15", + "status": 200, + "timestamp": "2026-05-22T12:42:57.196-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:57.188-04:00" + }, + { + "id": "39eb3718-c4d8-4a73-ac94-95be2dba33d8", + "created_at": "2026-05-22T12:42:57.444-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "2cb3e5b5-7696-4610-9b2b-01d905160480", + "direction": "outgoing", + "index": 130875, + "result_id": "39eb3718-c4d8-4a73-ac94-95be2dba33d8", + "status": 200, + "timestamp": "2026-05-22T12:42:57.448-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole?practitioner=Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1", + "verb": "get" + }, + { + "id": "5c380813-452a-4f44-afe9-e52860f9f781", + "direction": "outgoing", + "index": 130876, + "result_id": "39eb3718-c4d8-4a73-ac94-95be2dba33d8", + "status": 200, + "timestamp": "2026-05-22T12:42:57.474-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole/_search", + "verb": "post" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_practitioner_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:57.444-04:00" + }, + { + "id": "867bac3e-4aa5-45ed-bd20-5ee88b9703fe", + "created_at": "2026-05-22T12:42:57.810-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "93381dd1-38aa-4c1a-9b8a-2a9312ad191f", + "direction": "outgoing", + "index": 130877, + "result_id": "867bac3e-4aa5-45ed-bd20-5ee88b9703fe", + "status": 200, + "timestamp": "2026-05-22T12:42:57.813-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=208D00000X", + "verb": "get" + }, + { + "id": "023758a3-d4f8-4fff-9685-ec8a8b40aade", + "direction": "outgoing", + "index": 130878, + "result_id": "867bac3e-4aa5-45ed-bd20-5ee88b9703fe", + "status": 200, + "timestamp": "2026-05-22T12:42:57.831-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=http://nucc.org/provider-taxonomy%7C208D00000X", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_specialty_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:57.810-04:00" + }, + { + "id": "78c7225a-bd98-41c5-8109-1f415e930d7c", + "created_at": "2026-05-22T12:42:59.312-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20240605), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)", + "type": "warning" + }, + { + "message": "PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:59.312-04:00" + }, + { + "id": "978fa524-c094-40b6-846e-dfd6379b4dd1", + "created_at": "2026-05-22T12:42:59.326-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:59.326-04:00" + }, + { + "id": "2e2b44ed-e3bd-40c8-8683-056534a191f2", + "created_at": "2026-05-22T12:42:59.825-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "4256dd4f-cc1f-4d06-ab11-9e0779bc634d", + "direction": "outgoing", + "index": 130879, + "result_id": "2e2b44ed-e3bd-40c8-8683-056534a191f2", + "status": 200, + "timestamp": "2026-05-22T12:42:59.830-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db", + "verb": "get" + }, + { + "id": "5dd97f82-2e8f-4ba3-985b-e714fa7476cc", + "direction": "outgoing", + "index": 130880, + "result_id": "2e2b44ed-e3bd-40c8-8683-056534a191f2", + "status": 200, + "timestamp": "2026-05-22T12:42:59.843-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Location/2aaf3922-72e6-4cb8-8f17-a8a709886a89", + "verb": "get" + }, + { + "id": "1c777ea5-f152-4aa4-83fd-90e91ffac4bf", + "direction": "outgoing", + "index": 130881, + "result_id": "2e2b44ed-e3bd-40c8-8683-056534a191f2", + "status": 200, + "timestamp": "2026-05-22T12:42:59.858-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Endpoint/b5ebb5af-57fa-4ae8-a224-35a0e3ed0ea1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role-us_core_v800_practitioner_role_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:59.825-04:00" + }, + { + "id": "16b034b7-73ca-4eb7-94ad-5c077c2e4976", + "created_at": "2026-05-22T12:42:59.874-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_practitioner_role", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:42:59.874-04:00" + }, + { + "id": "6cac084a-99be-472a-a71f-e459760838c1", + "created_at": "2026-05-22T12:43:00.063-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "85030a20-c9f5-470f-be5f-b26a5e09a03e", + "direction": "outgoing", + "index": 130882, + "result_id": "6cac084a-99be-472a-a71f-e459760838c1", + "status": 200, + "timestamp": "2026-05-22T12:43:00.065-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_provenance-us_core_v800_provenance_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:00.063-04:00" + }, + { + "id": "e37f351e-751a-48b6-b68c-5df7ee96aa24", + "created_at": "2026-05-22T12:43:07.575-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/ac0d658f-30c5-4f29-a055-f3bbff32221a: Provenance.agent[0]: This element does not match any known slice defined in the profile http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance|8.0.0 (this may not be a problem, but you should check that it's not intended to match a slice)", + "type": "info" + }, + { + "message": "Provenance/ac0d658f-30c5-4f29-a055-f3bbff32221a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + }, + { + "message": "Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_provenance-us_core_v800_provenance_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:07.575-04:00" + }, + { + "id": "443ca6d4-af69-438b-aad3-bd8daa1f2aec", + "created_at": "2026-05-22T12:43:07.723-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_provenance-us_core_v800_provenance_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:07.723-04:00" + }, + { + "id": "4a00506a-f46d-4a03-8c17-f7288f0d9652", + "created_at": "2026-05-22T12:43:07.725-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_provenance-us_core_v800_provenance_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:07.725-04:00" + }, + { + "id": "dcb32e56-1f3d-4d52-b726-257bc84d0486", + "created_at": "2026-05-22T12:43:07.728-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_provenance", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:07.728-04:00" + }, + { + "id": "60d39d65-7e91-498d-9eb0-822d75ee250b", + "created_at": "2026-05-22T12:43:07.842-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe RelatedPerson reference used for this test was pulled from resource\nCareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cf2ace3a-d3e0-4e8d-a8b6-110a4b2753b6", + "direction": "outgoing", + "index": 130883, + "result_id": "60d39d65-7e91-498d-9eb0-822d75ee250b", + "status": 200, + "timestamp": "2026-05-22T12:43:07.845-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:07.842-04:00" + }, + { + "id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "created_at": "2026-05-22T12:43:08.473-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "b78e4196-ba82-477c-ac80-27fbb6fd1ada", + "direction": "outgoing", + "index": 130884, + "result_id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "status": 200, + "timestamp": "2026-05-22T12:43:08.478-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=85", + "verb": "get" + }, + { + "id": "11653812-ce61-4596-b63f-3072fe36cf41", + "direction": "outgoing", + "index": 130885, + "result_id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "status": 200, + "timestamp": "2026-05-22T12:43:08.503-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson/_search", + "verb": "post" + }, + { + "id": "00f21e13-44cf-4969-8561-2ff38f8d19d1", + "direction": "outgoing", + "index": 130886, + "result_id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "status": 200, + "timestamp": "2026-05-22T12:43:08.528-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=Patient/85", + "verb": "get" + }, + { + "id": "2ec4aff4-19f0-4ede-adb7-c96af09fc0a8", + "direction": "outgoing", + "index": 130887, + "result_id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "status": 200, + "timestamp": "2026-05-22T12:43:08.545-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=355", + "verb": "get" + }, + { + "id": "f0c7f432-d4ea-487b-9431-9582c0b3c425", + "direction": "outgoing", + "index": 130888, + "result_id": "1d8fbd60-be2b-465f-9f10-273db5ef62db", + "status": 200, + "timestamp": "2026-05-22T12:43:08.559-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:08.473-04:00" + }, + { + "id": "16e79942-f41e-4315-8c5f-ebda91c8c21f", + "created_at": "2026-05-22T12:43:08.683-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "d2e8388d-adba-4f48-857b-bfc651dbb8a3", + "direction": "outgoing", + "index": 130889, + "result_id": "16e79942-f41e-4315-8c5f-ebda91c8c21f", + "status": 200, + "timestamp": "2026-05-22T12:43:08.685-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_id=4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:08.683-04:00" + }, + { + "id": "436f0702-0f61-432a-8c2a-fc8d2ef1be0b", + "created_at": "2026-05-22T12:43:08.816-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cc87f4e3-bce8-40db-a892-325a9dd3401a", + "direction": "outgoing", + "index": 130890, + "result_id": "436f0702-0f61-432a-8c2a-fc8d2ef1be0b", + "status": 200, + "timestamp": "2026-05-22T12:43:08.818-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:08.816-04:00" + }, + { + "id": "b590b71a-4102-4779-a634-0aad4f769f20", + "created_at": "2026-05-22T12:43:08.946-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "cf156612-37f3-42e7-b11f-f22899608669", + "direction": "outgoing", + "index": 130891, + "result_id": "b590b71a-4102-4779-a634-0aad4f769f20", + "status": 200, + "timestamp": "2026-05-22T12:43:08.949-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174\u0026patient=85", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_patient_name_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:08.946-04:00" + }, + { + "id": "341b00c1-4c71-49fc-a73e-804962652764", + "created_at": "2026-05-22T12:43:09.379-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "5e0b77c4-7558-4788-b530-cb21c19f33e6", + "direction": "outgoing", + "index": 130892, + "result_id": "341b00c1-4c71-49fc-a73e-804962652764", + "status": 200, + "timestamp": "2026-05-22T12:43:09.390-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=85", + "verb": "get" + }, + { + "id": "46b6542c-a6a8-45a3-b2ce-284181865aca", + "direction": "outgoing", + "index": 130893, + "result_id": "341b00c1-4c71-49fc-a73e-804962652764", + "status": 200, + "timestamp": "2026-05-22T12:43:09.406-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=355", + "verb": "get" + }, + { + "id": "0887f7a0-63d4-48c9-b762-b88e5f0de411", + "direction": "outgoing", + "index": 130894, + "result_id": "341b00c1-4c71-49fc-a73e-804962652764", + "status": 200, + "timestamp": "2026-05-22T12:43:09.417-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_provenance_revinclude_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.379-04:00" + }, + { + "id": "4532edae-5f24-4cb7-aa26-ae9ac53f3f61", + "created_at": "2026-05-22T12:43:09.460-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a: RelatedPerson: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.460-04:00" + }, + { + "id": "f12391c4-a4e4-4cd8-b646-35be32d122a5", + "created_at": "2026-05-22T12:43:09.463-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.463-04:00" + }, + { + "id": "312e6fd1-5ac8-418a-bb43-cae72913969b", + "created_at": "2026-05-22T12:43:09.465-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person-us_core_v800_related_person_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.465-04:00" + }, + { + "id": "841c049a-1552-4775-a27a-73717f3d6f83", + "created_at": "2026-05-22T12:43:09.467-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_related_person", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.467-04:00" + }, + { + "id": "5039429f-610d-4c4e-bf76-5a200835b286", + "created_at": "2026-05-22T12:43:09.578-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "\nThe Specimen reference used for this test was pulled from resource\nObservation/c1acf7df-5fdc-4338-bb91-add5b859696b\n\n", + "type": "info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "60413cf2-5729-415f-8c47-a458553abd84", + "direction": "outgoing", + "index": 130895, + "result_id": "5039429f-610d-4c4e-bf76-5a200835b286", + "status": 200, + "timestamp": "2026-05-22T12:43:09.580-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen_read_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:09.578-04:00" + }, + { + "id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "created_at": "2026-05-22T12:43:10.209-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": true, + "outputs": [], + "requests": [ + { + "id": "c43da527-e862-4fde-afd6-9d73c703f75b", + "direction": "outgoing", + "index": 130896, + "result_id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "status": 200, + "timestamp": "2026-05-22T12:43:10.216-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen?patient=85", + "verb": "get" + }, + { + "id": "0295736a-fda7-4813-8b80-ab79af051827", + "direction": "outgoing", + "index": 130897, + "result_id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "status": 200, + "timestamp": "2026-05-22T12:43:10.241-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen/_search", + "verb": "post" + }, + { + "id": "a32ef535-ad0a-4619-9581-44df03a1bbf1", + "direction": "outgoing", + "index": 130898, + "result_id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "status": 200, + "timestamp": "2026-05-22T12:43:10.264-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen?patient=Patient/85", + "verb": "get" + }, + { + "id": "0451a5d1-a660-4a2c-a8b6-e72edf533f39", + "direction": "outgoing", + "index": 130899, + "result_id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "status": 200, + "timestamp": "2026-05-22T12:43:10.282-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen?patient=355", + "verb": "get" + }, + { + "id": "c2c1d215-9444-4845-8a10-d874ef6e57ad", + "direction": "outgoing", + "index": 130900, + "result_id": "d9684dac-02d5-47d5-b9ce-b33f448f6165", + "status": 200, + "timestamp": "2026-05-22T12:43:10.299-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen_patient_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.209-04:00" + }, + { + "id": "2bb8f6b9-237b-4854-83c3-410291d5bc6e", + "created_at": "2026-05-22T12:43:10.413-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "f76fa6bc-d528-4d68-93a5-49f61e7fe4c6", + "direction": "outgoing", + "index": 130901, + "result_id": "2bb8f6b9-237b-4854-83c3-410291d5bc6e", + "status": 200, + "timestamp": "2026-05-22T12:43:10.414-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Specimen?_id=95acdc9a-9530-46f8-9a5b-d3aadffaa647", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen__id_search_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.413-04:00" + }, + { + "id": "845e6ec9-652d-4063-9b6a-bcb0c76d0f80", + "created_at": "2026-05-22T12:43:10.445-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "messages": [ + { + "message": "Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.type.coding[0].system: A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20250301' could not be found, so the code cannot be validated. Valid versions: http://snomed.info/sct/11000146104/version/20240930, http://snomed.info/sct/2011000195101/version/20230607, http://snomed.info/sct/554471000005108/version/20260331, http://snomed.info/sct/731000124108/version/20230301, http://snomed.info/sct/731000124108/version/20240301, http://snomed.info/sct/731000124108/version/20250901, http://snomed.info/sct/827022005/version/20241216, http://snomed.info/sct/83821000000107/version/20230412, http://snomed.info/sct/900000000000207008/version/20240201, http://snomed.info/sct/900000000000207008/version/20250201 and http://snomed.info/xsct/900000000000207008/version/20250814", + "type": "warning" + }, + { + "message": "Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.type: None of the codings provided are in the value set 'Specimen type' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.54|20240606), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#122575003)", + "type": "warning" + }, + { + "message": "Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.collection.bodySite: None of the codings provided are in the value set 'SNOMED CT Body Structures' (http://hl7.org/fhir/ValueSet/body-site|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#106004)", + "type": "warning" + }, + { + "message": "Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)", + "type": "warning" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen_validation_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.445-04:00" + }, + { + "id": "8ea0d68b-7b07-4d95-957a-09a280bdbeea", + "created_at": "2026-05-22T12:43:10.453-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen_must_support_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.453-04:00" + }, + { + "id": "25e89f12-4872-4644-af61-21506861cc69", + "created_at": "2026-05-22T12:43:10.455-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen-us_core_v800_specimen_reference_resolution_test", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.455-04:00" + }, + { + "id": "e9893acb-c03b-4d98-892d-f7ae4dfbec24", + "created_at": "2026-05-22T12:43:10.456-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_specimen", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:10.456-04:00" + }, + { + "id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "created_at": "2026-05-22T12:43:14.512-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "cca6ecf1-b36f-4b4d-90da-7e505c1da235", + "direction": "outgoing", + "index": 130902, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.516-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85", + "verb": "get" + }, + { + "id": "aa8792b9-9c90-4c2f-be39-eaab2afe07ae", + "direction": "outgoing", + "index": 130903, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.543-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4da80572-dd7c-40d2-9b99-6d8a3d030aaf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "091490b8-0d43-4a17-a093-24134398e295", + "direction": "outgoing", + "index": 130904, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.560-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=4da80572-dd7c-40d2-9b99-6d8a3d030aaf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "9756e46d-c7cc-49fc-a105-9e3b10ba5944", + "direction": "outgoing", + "index": 130905, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.574-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85", + "verb": "get" + }, + { + "id": "eba0a4cf-05b4-43d9-8f61-55cf72f76c77", + "direction": "outgoing", + "index": 130906, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.587-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=fb665081-cc71-4498-b6e5-685de6f5fb7f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "64ec3b38-42e3-451b-a101-d6849edb87b8", + "direction": "outgoing", + "index": 130907, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.601-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355", + "verb": "get" + }, + { + "id": "a1c72dce-33a9-4589-82f8-c20647751102", + "direction": "outgoing", + "index": 130908, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.614-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b22be382-8a73-462d-ac70-0e65821ef941\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "990c84cb-3a2e-43fd-a661-157003895666", + "direction": "outgoing", + "index": 130909, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.625-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=b22be382-8a73-462d-ac70-0e65821ef941\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "fe567d2d-359e-4999-8e19-d655d4d361e3", + "direction": "outgoing", + "index": 130910, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.636-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355", + "verb": "get" + }, + { + "id": "b6498944-54f6-40fa-863f-3f0c2277d0f1", + "direction": "outgoing", + "index": 130911, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.647-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2c9fd8d0-acf7-4520-9d7c-028d48946d5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "6688f6fd-c34c-4167-8f13-8c07778aa524", + "direction": "outgoing", + "index": 130912, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.659-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4?_getpages=2c9fd8d0-acf7-4520-9d7c-028d48946d5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset", + "verb": "get" + }, + { + "id": "baaab150-a6a5-42a6-9353-1c0dd1881d12", + "direction": "outgoing", + "index": 130913, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.668-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=908", + "verb": "get" + }, + { + "id": "1366f876-8ecf-4281-b426-addee1db44b4", + "direction": "outgoing", + "index": 130914, + "result_id": "b9141527-5ea7-4890-9bde-7a6c799bcc28", + "status": 200, + "timestamp": "2026-05-22T12:43:14.678-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=908", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_clinical_notes_guidance-us_core_clinical_note_types", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:14.512-04:00" + }, + { + "id": "17f373b8-5cec-45d6-8eaa-d2c2c68c0e3d", + "created_at": "2026-05-22T12:43:14.688-04:00", + "inputs": [ + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_clinical_notes_guidance-us_core_clinical_note_attachments", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:14.688-04:00" + }, + { + "id": "44b85bb4-bc95-42e7-b168-807665f03d6e", + "created_at": "2026-05-22T12:43:14.690-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_clinical_notes_guidance", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:14.690-04:00" + }, + { + "id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "created_at": "2026-05-22T12:43:15.467-04:00", + "inputs": [ + { + "name": "patient_ids", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [ + { + "id": "565897a3-fbf9-4f75-a0b4-9acae4185a9a", + "direction": "outgoing", + "index": 130915, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.473-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85", + "verb": "get" + }, + { + "id": "6aaf5e9a-d0f0-4b06-a36d-9d011eab9d53", + "direction": "outgoing", + "index": 130916, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.497-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85", + "verb": "get" + }, + { + "id": "c2d5c05b-d0f6-4f70-aa67-7490806bed89", + "direction": "outgoing", + "index": 130917, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.512-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85", + "verb": "get" + }, + { + "id": "512a02d3-b1ee-421e-8b60-ff79abdc0fab", + "direction": "outgoing", + "index": 130918, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.526-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355", + "verb": "get" + }, + { + "id": "7f5f3652-e9ca-4b75-b409-74f7a243eb83", + "direction": "outgoing", + "index": 130919, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.538-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355", + "verb": "get" + }, + { + "id": "021ad72b-2e5e-4faf-8882-b67b24fd0699", + "direction": "outgoing", + "index": 130920, + "result_id": "7c5e89c4-074c-4712-b581-c9dccbdd45c4", + "status": 200, + "timestamp": "2026-05-22T12:43:15.550-04:00", + "url": "https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355", + "verb": "get" + } + ], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_screening_assessment-us_core_screening_assessment_category", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.467-04:00" + }, + { + "id": "0b6b9935-ff68-4f5d-a91d-f1c1293d12ec", + "created_at": "2026-05-22T12:43:15.560-04:00", + "inputs": [ + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_v800_screening_assessment", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.560-04:00" + }, + { + "id": "2dd48429-9bd2-4d1a-aa00-831704ae41de", + "created_at": "2026-05-22T12:43:15.568-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.568-04:00" + }, + { + "id": "8c5509c4-39a8-49da-87f0-ba40ff2a1991", + "created_at": "2026-05-22T12:43:15.569-04:00", + "inputs": [ + { + "name": "dar_code_found", + "value": "true", + "type": "text" + }, + { + "name": "url", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_id": "us_core_v800-us_core_v800_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.569-04:00" + }, + { + "id": "67ca4255-1149-4886-993f-bb74fea2c6f3", + "created_at": "2026-05-22T12:43:15.570-04:00", + "inputs": [ + { + "name": "dar_extension_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + }, + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "dar_code_found", + "label": "Data Absent Reason Extension Found", + "description": null, + "value": "true", + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "pass", + "test_group_id": "us_core_v800-us_core_v800_fhir_api-us_core_311_data_absent_reason", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.570-04:00" + }, + { + "id": "c976b277-711f-4b0b-9be0-3c01a8e459e0", + "created_at": "2026-05-22T12:43:15.581-04:00", + "inputs": [ + { + "name": "url", + "label": "FHIR Endpoint", + "description": "URL of the FHIR endpoint", + "value": "https://inferno.healthit.gov/reference-server/r4", + "type": "text" + }, + { + "name": "smart_auth_info", + "label": "OAuth Credentials", + "description": null, + "value": "{\"auth_type\":\"public\",\"access_token\":\"SAMPLE_TOKEN\",\"issue_time\":\"2026-05-22T12:31:34-04:00\",\"name\":\"smart_auth_info\"}", + "type": "auth_info" + }, + { + "name": "patient_ids", + "label": "Patient IDs", + "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements", + "value": "85,355,908", + "type": "text" + }, + { + "name": "implantable_device_codes", + "label": "Implantable Device Type Code", + "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile", + "value": null, + "type": "text" + } + ], + "optional": false, + "outputs": [], + "requests": [], + "result": "fail", + "test_group_id": "us_core_v800-us_core_v800_fhir_api", + "test_run_id": "f00ee10f-b0cd-4c4c-9609-01d9cf0ece85", + "test_session_id": "1PFIokq0Nsy", + "updated_at": "2026-05-22T12:43:15.581-04:00" + } +] \ No newline at end of file diff --git a/execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb b/execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb new file mode 100644 index 000000000..7d108d6ca --- /dev/null +++ b/execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb @@ -0,0 +1,4 @@ +gem_dir = Gem::Specification.find_by_name('smart_app_launch_test_kit').gem_dir +load "#{gem_dir}/execution_scripts/reference_server/base_ref_server_authorize.rb" + +ref_server_authorize(ARGV[0], target_patient_id: '85') diff --git a/execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb b/execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb new file mode 100644 index 000000000..c725f4e28 --- /dev/null +++ b/execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb @@ -0,0 +1,4 @@ +gem_dir = Gem::Specification.find_by_name('smart_app_launch_test_kit').gem_dir +load "#{gem_dir}/execution_scripts/reference_server/base_ref_server_authorize.rb" + +ref_server_authorize(ARGV[0]) diff --git a/execution_scripts/reference_server/ref_server_ehr_launch_85.rb b/execution_scripts/reference_server/ref_server_ehr_launch_85.rb new file mode 100644 index 000000000..1cb446629 --- /dev/null +++ b/execution_scripts/reference_server/ref_server_ehr_launch_85.rb @@ -0,0 +1,4 @@ +gem_dir = Gem::Specification.find_by_name('smart_app_launch_test_kit').gem_dir +load "#{gem_dir}/execution_scripts/reference_server/base_ref_server_ehr_launch.rb" + +ref_server_ehr_launch(ARGV[0], ARGV[1], 85) \ No newline at end of file diff --git a/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands.yaml b/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands.yaml new file mode 100644 index 000000000..66bb279fb --- /dev/null +++ b/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands.yaml @@ -0,0 +1,150 @@ +sessions: + - suite: us_core_v610 + preset: Inferno Reference Server + suite_options: + smart_app_launch_version: smart_app_launch_2 + +comparison_config: + normalized_strings: + - replacement: + patterns: + - http://localhost:8080/reference-server # local reference server + - https://inferno.healthit.gov/reference-server # prod reference server + - https://inferno-qa.healthit.gov/reference-server # qa reference server + - replacement: + patterns: + - http://localhost:4567/inferno # local inferno core ruby + - http://localhost:4567 # local ruby + - http://localhost # local docker + - https://inferno.healthit.gov/suites # prod + - https://inferno-qa.healthit.gov/suites # qa + - replacement: code_challenge= + pattern: /code_challenge=[A-Za-z0-9+\/=_-]{43}/ + - replacement: + pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i + +steps: + - state_description: US Core Server 6.1.0 session created + status: created + start_run: + runnable: 1.3 + action_description: Run Group 1.3 Standalone Launch + + - state_description: Wait at test 1.3.2.02 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 1.3.2.02 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize patient 85 + + - state_description: Finished Group 1.3 Standalone Launch + status: done + last_completed: 1.3 + start_run: + runnable: 1.4 + action_description: Run Group 1.4 EHR Launch + + - state_description: Wait at test 1.4.2.01 EHR server redirects client browser to Inferno app launch URI + status: waiting + last_completed: 1.4.2.01 + command: bundle exec ruby execution_scripts/reference_server/ref_server_ehr_launch_85.rb '{wait_outputs.launch_uri}' '{wait_outputs.target_iss}' + action_description: Launch Inferno as a SMART app using patient 85 as the patient context + + - state_description: Wait at test 1.4.2.04 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 1.4.2.04 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize all requested scopes for launched patient + + - state_description: Finished Group 1.4 EHR Launch + status: done + last_completed: 1.4 + start_run: + runnable: 2 + timeout: 1200 # API tests are very long-running + action_description: Run Group 2 US Core FHIR API + + - state_description: Finished Group 2 US Core FHIR API + status: done + last_completed: 2 + start_run: + runnable: 3.1.1.1 + action_description: Run Group 3.1.1.1 Granular Scopes 1 Standalone Launch + + - state_description: Wait at test 3.1.1.1.2.02 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 3.1.1.1.2.02 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize all requested scopes for patient 85 + + - state_description: Finished Group 3.1.1.1 Granular Scopes 1 Standalone Launch + status: done + last_completed: 3.1.1.1 + start_run: + runnable: 3.1.1.3 + action_description: Run Group 3.1.1.3 Granular Scopes 1 EHR Launch + + - state_description: Wait at test 3.1.1.3.2.01 EHR server redirects client browser to Inferno app launch URI + status: waiting + last_completed: 3.1.1.3.2.01 + command: bundle exec ruby execution_scripts/reference_server/ref_server_ehr_launch_85.rb '{wait_outputs.launch_uri}' '{wait_outputs.target_iss}' + action_description: Launch Inferno as a SMART app using patient 85 as the patient context + + - state_description: Wait at test 3.1.1.3.2.04 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 3.1.1.3.2.04 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize all requested scopes for launched patient + + - state_description: Finished Group 3.1.1.3 Granular Scopes 1 EHR Launch + status: done + last_completed: 3.1.1.3 + start_run: + runnable: 3.1.2 + timeout: 600 # granular scopes test take a while + action_description: Run Group 3.1.2 US Core FHIR API w/ Granular Scopes 1 + + - state_description: Finished Group 3.1.2 US Core FHIR API w/ Granular Scopes 1 + status: done + last_completed: 3.1.2 + start_run: + runnable: 3.2.1.1 + action_description: Run Group 3.2.1.1 Granular Scopes 2 Standalone Launch + + - state_description: Wait at test 3.2.1.1.2.02 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 3.2.1.1.2.02 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize all requested scopes for patient 85 + + - state_description: Finished Group 3.2.1.1 Granular Scopes 2 Standalone Launch + status: done + last_completed: 3.2.1.1 + start_run: + runnable: 3.2.1.3 + action_description: Run Group 3.2.1.3 Granular Scopes 2 EHR Launch + + - state_description: Wait at test 3.2.1.3.2.01 EHR server redirects client browser to Inferno app launch URI + status: waiting + last_completed: 3.2.1.3.2.01 + command: bundle exec ruby execution_scripts/reference_server/ref_server_ehr_launch_85.rb '{wait_outputs.launch_uri}' '{wait_outputs.target_iss}' + action_description: Launch Inferno as a SMART app using patient 85 as the patient context + + - state_description: Wait at test 3.2.1.3.2.04 OAuth server redirects client browser to app redirect URI + status: waiting + last_completed: 3.2.1.3.2.04 + command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb '{wait_outputs.authorization_url}' + action_description: Authorize all requested scopes for launched patient + + - state_description: Finished Group 3.2.1.3 Granular Scopes 2 EHR Launch + status: done + last_completed: 3.2.1.3 + start_run: + runnable: 3.2.2 + timeout: 600 # granular scopes test take a while + action_description: Run Group 3.2.2 US Core FHIR API w/ Granular Scopes 2 + + - state_description: Finished Group 3.2.2 US Core FHIR API w/ Granular Scopes 2 + status: done + last_completed: 3.2.2 + command: "END_SCRIPT" + action_description: Script Completed \ No newline at end of file diff --git a/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands_expected.json b/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands_expected.json new file mode 100644 index 000000000..c22257234 --- /dev/null +++ b/execution_scripts/reference_server/us_core_server_610_smart_2_with_commands_expected.json @@ -0,0 +1 @@ +[{"id":"29f161f2-f860-4772-bc2b-2415141e045b","created_at":"2026-05-22T21:04:09.034-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/29f161f2-f860-4772-bc2b-2415141e045b/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"05b3da8d-ab71-490e-a0f9-e4350b8f4db8","direction":"outgoing","index":141858,"result_id":"29f161f2-f860-4772-bc2b-2415141e045b","status":200,"timestamp":"2026-05-22T21:04:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:09.034-04:00"},{"id":"280e3cb3-6d16-46f9-b017-688c6dc58d4e","created_at":"2026-05-22T21:04:09.057-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/280e3cb3-6d16-46f9-b017-688c6dc58d4e/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:09.057-04:00"},{"id":"9f2bcfdb-952a-4d74-bb75-c187c503b8d9","created_at":"2026-05-22T21:04:09.443-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_auth_tls","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:09.443-04:00"},{"id":"746bcb17-7f02-4a2b-b5e0-92ce4bb1b167","created_at":"2026-05-22T21:04:09.475-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FPatient.rs+patient%2FAllergyIntolerance.rs+patient%2FCarePlan.rs+patient%2FCareTeam.rs+patient%2FCondition.rs+patient%2FCoverage.rs+patient%2FDevice.rs+patient%2FDiagnosticReport.rs+patient%2FDocumentReference.rs+patient%2FEncounter.rs+patient%2FEndpoint.rs+patient%2FGoal.rs+patient%2FImmunization.rs+patient%2FLocation.rs+patient%2FMedia.rs+patient%2FMedication.rs+patient%2FMedicationDispense.rs+patient%2FMedicationRequest.rs+patient%2FObservation.rs+patient%2FOrganization.rs+patient%2FPractitioner.rs+patient%2FPractitionerRole.rs+patient%2FProcedure.rs+patient%2FProvenance.rs+patient%2FQuestionnaireResponse.rs+patient%2FRelatedPerson.rs+patient%2FServiceRequest.rs+patient%2FSpecimen.rs\u0026state=f21b81e8-4e50-4802-9bb1-15af313a6977\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=u6BHbEGKx--PzYuSMmQ0rrgc6R4vUOfG4f90rqUFudg\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"standalone_state","type":"text","value":"f21b81e8-4e50-4802-9bb1-15af313a6977"},{"name":"pkce_code_verifier","type":"text","value":"7deafe8c-2baf-4af6-86c7-32a2e0fab234-99aad27a-2bd0-41bc-a53b-0a025a9e1848"},{"name":"pkce_code_challenge","type":"text","value":"u6BHbEGKx--PzYuSMmQ0rrgc6R4vUOfG4f90rqUFudg"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FPatient.rs+patient%2FAllergyIntolerance.rs+patient%2FCarePlan.rs+patient%2FCareTeam.rs+patient%2FCondition.rs+patient%2FCoverage.rs+patient%2FDevice.rs+patient%2FDiagnosticReport.rs+patient%2FDocumentReference.rs+patient%2FEncounter.rs+patient%2FEndpoint.rs+patient%2FGoal.rs+patient%2FImmunization.rs+patient%2FLocation.rs+patient%2FMedia.rs+patient%2FMedication.rs+patient%2FMedicationDispense.rs+patient%2FMedicationRequest.rs+patient%2FObservation.rs+patient%2FOrganization.rs+patient%2FPractitioner.rs+patient%2FPractitionerRole.rs+patient%2FProcedure.rs+patient%2FProvenance.rs+patient%2FQuestionnaireResponse.rs+patient%2FRelatedPerson.rs+patient%2FServiceRequest.rs+patient%2FSpecimen.rs\u0026state=f21b81e8-4e50-4802-9bb1-15af313a6977\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=u6BHbEGKx--PzYuSMmQ0rrgc6R4vUOfG4f90rqUFudg\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_app_redirect_stu2","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:16.831-04:00"},{"id":"dcb8aca9-2cbb-4064-bab3-085ce693f9a2","created_at":"2026-05-22T21:04:16.880-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_discovery_stu2","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:16.880-04:00"},{"id":"5499edd7-75ba-4a86-ac72-130f43ac9314","created_at":"2026-05-22T21:04:16.898-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImNvZGVDaGFsbGVuZ2UiOiJ1NkJIYkVHS3gtLVB6WXVTTW1RMHJyZ2M2UjR2VU9mRzRmOTBycVVGdWRnIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ=="}],"requests":[{"id":"fc4ed3d7-be5e-4edd-bfc3-40e0a41fed65","direction":"incoming","index":141859,"result_id":"746bcb17-7f02-4a2b-b5e0-92ce4bb1b167","status":null,"timestamp":"2026-05-22T21:04:16.833-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImNvZGVDaGFsbGVuZ2UiOiJ1NkJIYkVHS3gtLVB6WXVTTW1RMHJyZ2M2UjR2VU9mRzRmOTBycVVGdWRnIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==\u0026state=f21b81e8-4e50-4802-9bb1-15af313a6977","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_code_received","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:16.898-04:00"},{"id":"04459199-746a-4057-afb9-bc544a75ea96","created_at":"2026-05-22T21:04:17.265-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_token_tls","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.265-04:00"},{"id":"65197a7d-c36e-4c71-b3aa-a9fb8b6ec5bd","created_at":"2026-05-22T21:04:17.385-04:00","inputs":[{"name":"standalone_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImNvZGVDaGFsbGVuZ2UiOiJ1NkJIYkVHS3gtLVB6WXVTTW1RMHJyZ2M2UjR2VU9mRzRmOTBycVVGdWRnIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==","type":"text"},{"name":"pkce_code_verifier","value":"7deafe8c-2baf-4af6-86c7-32a2e0fab234-99aad27a-2bd0-41bc-a53b-0a025a9e1848","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-05-22T21:04:17-04:00"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"fc4ed3d7-be5e-4edd-bfc3-40e0a41fed65","direction":"incoming","index":141859,"result_id":"746bcb17-7f02-4a2b-b5e0-92ce4bb1b167","status":null,"timestamp":"2026-05-22T21:04:16.833-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImNvZGVDaGFsbGVuZ2UiOiJ1NkJIYkVHS3gtLVB6WXVTTW1RMHJyZ2M2UjR2VU9mRzRmOTBycVVGdWRnIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==\u0026state=f21b81e8-4e50-4802-9bb1-15af313a6977","verb":"get"},{"id":"69857ef8-aa6c-4149-9f90-7f217444b84a","direction":"outgoing","index":141860,"result_id":"65197a7d-c36e-4c71-b3aa-a9fb8b6ec5bd","status":200,"timestamp":"2026-05-22T21:04:17.387-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_exchange","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.385-04:00"},{"id":"63bceff9-0374-4fd0-9e59-28dc33f71089","created_at":"2026-05-22T21:04:17.404-04:00","inputs":[{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI1NywiaWF0IjoxNzc5NDk4MjU3LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.BhmQJ2lj2I_t6_4qL4TMPX-0PGD3XcBz8DGfvCaVtdiE5zXm8u7kwoU7uG8I569MNOI-nP3FmLTWpVoBKFEegD4jckNKFB50i6oP7xOGXhnLywSK2bzk9gWpNbvI8MfYAMN914Hu0j_F0cEk4sN0U8wuw_ovZ5thLUja0PkrsLFjCIGSlEDCaUNovn-owBY__jPK64dxOnQW1XBiY6SblGNovoZJssBaoDZQnxIqk_BU_EW2CkyFpyrcoxtYGkl7G4_6QDMdXHMaOXrb7Dnxtt0pus_DdNDBpeE9ch8OJtwIeWI3niDXziNhbRnoxfYEIsWrJzgA-8yucv8F47m-lw"},{"name":"standalone_refresh_token","type":"text","value":"b3fac8e6-262a-4b3f-9b28-119815cceef1"},{"name":"standalone_access_token","type":"text","value":"f26263d4-d093-40cb-805f-3f106cc0b4d6"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_patient_id","type":"text","value":"85"},{"name":"standalone_encounter_id","type":"text","value":""},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs"},{"name":"standalone_intent","type":"text","value":""},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"69857ef8-aa6c-4149-9f90-7f217444b84a","direction":"outgoing","index":141860,"result_id":"65197a7d-c36e-4c71-b3aa-a9fb8b6ec5bd","status":200,"timestamp":"2026-05-22T21:04:17.387-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_body","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.404-04:00"},{"id":"44f3d4ad-d79c-4d3d-98bd-a356139ccab1","created_at":"2026-05-22T21:04:17.408-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"69857ef8-aa6c-4149-9f90-7f217444b84a","direction":"outgoing","index":141860,"result_id":"65197a7d-c36e-4c71-b3aa-a9fb8b6ec5bd","status":200,"timestamp":"2026-05-22T21:04:17.387-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_headers","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.408-04:00"},{"id":"bdd06d45-231b-4441-9247-d340bccd6602","created_at":"2026-05-22T21:04:17.410-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"Standalone Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.410-04:00"},{"id":"7adce0a9-3d86-4177-9751-50a2447d0ff1","created_at":"2026-05-22T21:04:17.422-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI1NywiaWF0IjoxNzc5NDk4MjU3LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.BhmQJ2lj2I_t6_4qL4TMPX-0PGD3XcBz8DGfvCaVtdiE5zXm8u7kwoU7uG8I569MNOI-nP3FmLTWpVoBKFEegD4jckNKFB50i6oP7xOGXhnLywSK2bzk9gWpNbvI8MfYAMN914Hu0j_F0cEk4sN0U8wuw_ovZ5thLUja0PkrsLFjCIGSlEDCaUNovn-owBY__jPK64dxOnQW1XBiY6SblGNovoZJssBaoDZQnxIqk_BU_EW2CkyFpyrcoxtYGkl7G4_6QDMdXHMaOXrb7Dnxtt0pus_DdNDBpeE9ch8OJtwIeWI3niDXziNhbRnoxfYEIsWrJzgA-8yucv8F47m-lw","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034257,\"iat\":1779498257,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.422-04:00"},{"id":"8f33a9d4-9295-4b23-8f1d-57d098468c91","created_at":"2026-05-22T21:04:17.530-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034257,\"iat\":1779498257,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"26c6b0cd-2e81-4757-b093-bc7665952463","direction":"outgoing","index":141861,"result_id":"8f33a9d4-9295-4b23-8f1d-57d098468c91","status":200,"timestamp":"2026-05-22T21:04:17.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.530-04:00"},{"id":"05ec72cc-64bd-4ae2-924b-0d717f395c17","created_at":"2026-05-22T21:04:17.545-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.545-04:00"},{"id":"35477e05-f998-4f1b-84aa-bad5cdb69b74","created_at":"2026-05-22T21:04:17.655-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"34bd2ed4-8707-4551-8209-2e21cc47000f","direction":"outgoing","index":141862,"result_id":"35477e05-f998-4f1b-84aa-bad5cdb69b74","status":200,"timestamp":"2026-05-22T21:04:17.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.655-04:00"},{"id":"fe215333-82c5-4517-b3c3-2f5aa181660a","created_at":"2026-05-22T21:04:17.669-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.669-04:00"},{"id":"405a18eb-1f31-4966-a361-44fab48dcb78","created_at":"2026-05-22T21:04:17.673-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI1NywiaWF0IjoxNzc5NDk4MjU3LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.BhmQJ2lj2I_t6_4qL4TMPX-0PGD3XcBz8DGfvCaVtdiE5zXm8u7kwoU7uG8I569MNOI-nP3FmLTWpVoBKFEegD4jckNKFB50i6oP7xOGXhnLywSK2bzk9gWpNbvI8MfYAMN914Hu0j_F0cEk4sN0U8wuw_ovZ5thLUja0PkrsLFjCIGSlEDCaUNovn-owBY__jPK64dxOnQW1XBiY6SblGNovoZJssBaoDZQnxIqk_BU_EW2CkyFpyrcoxtYGkl7G4_6QDMdXHMaOXrb7Dnxtt0pus_DdNDBpeE9ch8OJtwIeWI3niDXziNhbRnoxfYEIsWrJzgA-8yucv8F47m-lw","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.673-04:00"},{"id":"541cc986-8df1-4c97-a3a7-244d08ecff54","created_at":"2026-05-22T21:04:17.787-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034257,\"iat\":1779498257,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"96fa0808-0767-4008-8339-3969699be156","direction":"outgoing","index":141863,"result_id":"541cc986-8df1-4c97-a3a7-244d08ecff54","status":200,"timestamp":"2026-05-22T21:04:17.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.787-04:00"},{"id":"87a761d5-4256-44cc-8a73-ec417ce7356e","created_at":"2026-05-22T21:04:17.805-04:00","inputs":[{"name":"standalone_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI1NywiaWF0IjoxNzc5NDk4MjU3LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.BhmQJ2lj2I_t6_4qL4TMPX-0PGD3XcBz8DGfvCaVtdiE5zXm8u7kwoU7uG8I569MNOI-nP3FmLTWpVoBKFEegD4jckNKFB50i6oP7xOGXhnLywSK2bzk9gWpNbvI8MfYAMN914Hu0j_F0cEk4sN0U8wuw_ovZ5thLUja0PkrsLFjCIGSlEDCaUNovn-owBY__jPK64dxOnQW1XBiY6SblGNovoZJssBaoDZQnxIqk_BU_EW2CkyFpyrcoxtYGkl7G4_6QDMdXHMaOXrb7Dnxtt0pus_DdNDBpeE9ch8OJtwIeWI3niDXziNhbRnoxfYEIsWrJzgA-8yucv8F47m-lw","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_openid_connect","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.805-04:00"},{"id":"b058e8ca-c697-4076-84fa-d8da462da4a4","created_at":"2026-05-22T21:04:17.915-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:04:17-04:00"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"1b79ff08-fcc0-4213-91a1-c6aca5901bfe","direction":"outgoing","index":141864,"result_id":"b058e8ca-c697-4076-84fa-d8da462da4a4","status":200,"timestamp":"2026-05-22T21:04:17.918-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.915-04:00"},{"id":"b5dee8e1-dd5c-4411-88ae-85e21f61fadb","created_at":"2026-05-22T21:04:17.933-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"76cc25e7-4b7c-4e63-aaf8-134cb48580b3"},{"name":"access_token","type":"text","value":"fa5b1d65-1361-4eab-a11c-242763f598e7"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:04:17-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"1b79ff08-fcc0-4213-91a1-c6aca5901bfe","direction":"outgoing","index":141864,"result_id":"b058e8ca-c697-4076-84fa-d8da462da4a4","status":200,"timestamp":"2026-05-22T21:04:17.918-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.933-04:00"},{"id":"b78496a3-0722-48d9-b92c-cfc647ad0258","created_at":"2026-05-22T21:04:17.936-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"1b79ff08-fcc0-4213-91a1-c6aca5901bfe","direction":"outgoing","index":141864,"result_id":"b058e8ca-c697-4076-84fa-d8da462da4a4","status":200,"timestamp":"2026-05-22T21:04:17.918-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.936-04:00"},{"id":"bb6dde59-5b1b-4285-98e3-49e9a4eaf61c","created_at":"2026-05-22T21:04:17.939-04:00","inputs":[{"name":"standalone_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"f26263d4-d093-40cb-805f-3f106cc0b4d6\",\"refresh_token\":\"b3fac8e6-262a-4b3f-9b28-119815cceef1\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2-smart_token_refresh","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.939-04:00"},{"id":"0fe57b64-6577-496a-8255-65e5d78e8346","created_at":"2026-05-22T21:04:17.941-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"Standalone Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_standalone_launch_stu2","test_run_id":"d9758414-af4f-474b-a396-50b4962e122f","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:17.941-04:00"},{"id":"b944cf19-227e-4174-8edf-1bb709bc541d","created_at":"2026-05-22T21:04:21.653-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/b944cf19-227e-4174-8edf-1bb709bc541d/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"501888b4-9677-42cf-99df-d9c9f7f94ca3","direction":"outgoing","index":141865,"result_id":"b944cf19-227e-4174-8edf-1bb709bc541d","status":200,"timestamp":"2026-05-22T21:04:21.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:21.653-04:00"},{"id":"2ea3d18d-7241-4aa6-9519-136f50f23cdf","created_at":"2026-05-22T21:04:21.671-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/2ea3d18d-7241-4aa6-9519-136f50f23cdf/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:21.671-04:00"},{"id":"66dfb58b-f057-495b-bf02-3745962383aa","created_at":"2026-05-22T21:04:21.678-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"launch_uri","type":"text","value":"http://localhost:4567/custom/smart/launch"},{"name":"target_iss","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_launch","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:27.481-04:00"},{"id":"d585db96-bf75-4348-b67d-2f3fe5b908a0","created_at":"2026-05-22T21:04:27.519-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_launch","type":"text","value":"85 cac22925-f852-4ed3-af57-50afe02288bd"}],"requests":[{"id":"4d7bc667-fb72-4f57-816d-b636ba310825","direction":"incoming","index":141866,"result_id":"66dfb58b-f057-495b-bf02-3745962383aa","status":null,"timestamp":"2026-05-22T21:04:27.482-04:00","url":"http://localhost:4567/custom/smart/launch?launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026iss=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_launch_received","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:27.519-04:00"},{"id":"e2ed6feb-9a1a-4303-8037-c24c83b7be66","created_at":"2026-05-22T21:04:27.880-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_auth_tls","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:27.880-04:00"},{"id":"33e10f7d-2339-4c79-bbf8-27945ee9880a","created_at":"2026-05-22T21:04:27.894-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"ehr_launch","value":"85 cac22925-f852-4ed3-af57-50afe02288bd","type":"text"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FPatient.rs+patient%2FAllergyIntolerance.rs+patient%2FCarePlan.rs+patient%2FCareTeam.rs+patient%2FCondition.rs+patient%2FCoverage.rs+patient%2FDevice.rs+patient%2FDiagnosticReport.rs+patient%2FDocumentReference.rs+patient%2FEncounter.rs+patient%2FEndpoint.rs+patient%2FGoal.rs+patient%2FImmunization.rs+patient%2FLocation.rs+patient%2FMedia.rs+patient%2FMedication.rs+patient%2FMedicationDispense.rs+patient%2FMedicationRequest.rs+patient%2FObservation.rs+patient%2FOrganization.rs+patient%2FPractitioner.rs+patient%2FPractitionerRole.rs+patient%2FProcedure.rs+patient%2FProvenance.rs+patient%2FQuestionnaireResponse.rs+patient%2FRelatedPerson.rs+patient%2FServiceRequest.rs+patient%2FSpecimen.rs\u0026state=ed944505-4362-49a1-880f-15b48b67b942\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=Li8vuAGEbNngREsci5IQ9_qXRMrLgQCEsHHCxwjrF4o\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"ehr_state","type":"text","value":"ed944505-4362-49a1-880f-15b48b67b942"},{"name":"pkce_code_verifier","type":"text","value":"7980ef0d-4adf-4d8d-8b01-54783da87c36-0e217c7c-20ea-413b-857e-9a72d61a37b7"},{"name":"pkce_code_challenge","type":"text","value":"Li8vuAGEbNngREsci5IQ9_qXRMrLgQCEsHHCxwjrF4o"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FPatient.rs+patient%2FAllergyIntolerance.rs+patient%2FCarePlan.rs+patient%2FCareTeam.rs+patient%2FCondition.rs+patient%2FCoverage.rs+patient%2FDevice.rs+patient%2FDiagnosticReport.rs+patient%2FDocumentReference.rs+patient%2FEncounter.rs+patient%2FEndpoint.rs+patient%2FGoal.rs+patient%2FImmunization.rs+patient%2FLocation.rs+patient%2FMedia.rs+patient%2FMedication.rs+patient%2FMedicationDispense.rs+patient%2FMedicationRequest.rs+patient%2FObservation.rs+patient%2FOrganization.rs+patient%2FPractitioner.rs+patient%2FPractitionerRole.rs+patient%2FProcedure.rs+patient%2FProvenance.rs+patient%2FQuestionnaireResponse.rs+patient%2FRelatedPerson.rs+patient%2FServiceRequest.rs+patient%2FSpecimen.rs\u0026state=ed944505-4362-49a1-880f-15b48b67b942\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=Li8vuAGEbNngREsci5IQ9_qXRMrLgQCEsHHCxwjrF4o\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_redirect_stu2","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:31.513-04:00"},{"id":"af61bf59-732f-4d91-ae11-39f4d4c23087","created_at":"2026-05-22T21:04:31.544-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_discovery_stu2","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:31.544-04:00"},{"id":"1254491a-fb7e-4663-856d-d499e2f42341","created_at":"2026-05-22T21:04:31.557-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImVuY291bnRlcklkIjoiY2FjMjI5MjUtZjg1Mi00ZWQzLWFmNTctNTBhZmUwMjI4OGJkIiwiY29kZUNoYWxsZW5nZSI6IkxpOHZ1QUdFYk5uZ1JFc2NpNUlROV9xWFJNckxnUUNFc0hIQ3h3anJGNG8iLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9"}],"requests":[{"id":"2d12d9cd-1d95-4c05-b3eb-4444af3184f7","direction":"incoming","index":141867,"result_id":"33e10f7d-2339-4c79-bbf8-27945ee9880a","status":null,"timestamp":"2026-05-22T21:04:31.514-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImVuY291bnRlcklkIjoiY2FjMjI5MjUtZjg1Mi00ZWQzLWFmNTctNTBhZmUwMjI4OGJkIiwiY29kZUNoYWxsZW5nZSI6IkxpOHZ1QUdFYk5uZ1JFc2NpNUlROV9xWFJNckxnUUNFc0hIQ3h3anJGNG8iLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9\u0026state=ed944505-4362-49a1-880f-15b48b67b942","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_code_received","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:31.557-04:00"},{"id":"2015df85-b26e-4c27-879d-30e533355a80","created_at":"2026-05-22T21:04:31.921-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_token_tls","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:31.921-04:00"},{"id":"291dc4fb-9d51-4798-89bd-860d41fd8de5","created_at":"2026-05-22T21:04:32.038-04:00","inputs":[{"name":"ehr_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImVuY291bnRlcklkIjoiY2FjMjI5MjUtZjg1Mi00ZWQzLWFmNTctNTBhZmUwMjI4OGJkIiwiY29kZUNoYWxsZW5nZSI6IkxpOHZ1QUdFYk5uZ1JFc2NpNUlROV9xWFJNckxnUUNFc0hIQ3h3anJGNG8iLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9","type":"text"},{"name":"pkce_code_verifier","value":"7980ef0d-4adf-4d8d-8b01-54783da87c36-0e217c7c-20ea-413b-857e-9a72d61a37b7","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-05-22T21:04:32-04:00"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"2d12d9cd-1d95-4c05-b3eb-4444af3184f7","direction":"incoming","index":141867,"result_id":"33e10f7d-2339-4c79-bbf8-27945ee9880a","status":null,"timestamp":"2026-05-22T21:04:31.514-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9QYXRpZW50LnJzIHBhdGllbnQvQWxsZXJneUludG9sZXJhbmNlLnJzIHBhdGllbnQvQ2FyZVBsYW4ucnMgcGF0aWVudC9DYXJlVGVhbS5ycyBwYXRpZW50L0NvbmRpdGlvbi5ycyBwYXRpZW50L0NvdmVyYWdlLnJzIHBhdGllbnQvRGV2aWNlLnJzIHBhdGllbnQvRGlhZ25vc3RpY1JlcG9ydC5ycyBwYXRpZW50L0RvY3VtZW50UmVmZXJlbmNlLnJzIHBhdGllbnQvRW5jb3VudGVyLnJzIHBhdGllbnQvRW5kcG9pbnQucnMgcGF0aWVudC9Hb2FsLnJzIHBhdGllbnQvSW1tdW5pemF0aW9uLnJzIHBhdGllbnQvTG9jYXRpb24ucnMgcGF0aWVudC9NZWRpYS5ycyBwYXRpZW50L01lZGljYXRpb24ucnMgcGF0aWVudC9NZWRpY2F0aW9uRGlzcGVuc2UucnMgcGF0aWVudC9NZWRpY2F0aW9uUmVxdWVzdC5ycyBwYXRpZW50L09ic2VydmF0aW9uLnJzIHBhdGllbnQvT3JnYW5pemF0aW9uLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyLnJzIHBhdGllbnQvUHJhY3RpdGlvbmVyUm9sZS5ycyBwYXRpZW50L1Byb2NlZHVyZS5ycyBwYXRpZW50L1Byb3ZlbmFuY2UucnMgcGF0aWVudC9RdWVzdGlvbm5haXJlUmVzcG9uc2UucnMgcGF0aWVudC9SZWxhdGVkUGVyc29uLnJzIHBhdGllbnQvU2VydmljZVJlcXVlc3QucnMgcGF0aWVudC9TcGVjaW1lbi5ycyAiLCJwYXRpZW50SWQiOiI4NSIsImVuY291bnRlcklkIjoiY2FjMjI5MjUtZjg1Mi00ZWQzLWFmNTctNTBhZmUwMjI4OGJkIiwiY29kZUNoYWxsZW5nZSI6IkxpOHZ1QUdFYk5uZ1JFc2NpNUlROV9xWFJNckxnUUNFc0hIQ3h3anJGNG8iLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9\u0026state=ed944505-4362-49a1-880f-15b48b67b942","verb":"get"},{"id":"8a699c62-9af2-4c2f-ac9f-920028375c0c","direction":"outgoing","index":141868,"result_id":"291dc4fb-9d51-4798-89bd-860d41fd8de5","status":200,"timestamp":"2026-05-22T21:04:32.040-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_exchange","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.038-04:00"},{"id":"3e286c8f-8911-4762-9504-94557044d7ac","created_at":"2026-05-22T21:04:32.058-04:00","inputs":[{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI3MiwiaWF0IjoxNzc5NDk4MjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Z4B3sE8PgRfkxT81776hYb0-l9Hyy0DMy71ebV5Y_fQk9P7t_R6j7dPnExaY3uLhdG87kh87kwdKT-GtImc1OwxtJOjJz3K270rEJ6Zo0jn3BwvMRzSfInF50Yqi4m-0Fip8w16KiSerdvDmRGHboq3DWoDesYJE8cOOwbLzPI2lbS9ogU2UrKKzQC8JN0FjN9C4vjMf8zcJZ4odEMyyPw1UDRmdCs12FT-w5mdqa2ZmHjjhlqiFsuCzXdThTyU6KqqdSx5WRi30lcBlRrmiVmikbUxrpfkYYnk581fvikoOllOkkdDlZMfxcCkri1R_W2pcgr5IRziSmumtENIh6Q"},{"name":"ehr_refresh_token","type":"text","value":"c4393f5a-7049-420d-87ba-ebbea4586217"},{"name":"ehr_access_token","type":"text","value":"a435eb43-ba68-49c5-b71b-a348deb2e66c"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_patient_id","type":"text","value":"85"},{"name":"ehr_encounter_id","type":"text","value":""},{"name":"ehr_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs"},{"name":"ehr_intent","type":"text","value":""},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"8a699c62-9af2-4c2f-ac9f-920028375c0c","direction":"outgoing","index":141868,"result_id":"291dc4fb-9d51-4798-89bd-860d41fd8de5","status":200,"timestamp":"2026-05-22T21:04:32.040-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_body","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.058-04:00"},{"id":"62fc0fa2-4a88-4281-b2b9-811d075fdbea","created_at":"2026-05-22T21:04:32.061-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"8a699c62-9af2-4c2f-ac9f-920028375c0c","direction":"outgoing","index":141868,"result_id":"291dc4fb-9d51-4798-89bd-860d41fd8de5","status":200,"timestamp":"2026-05-22T21:04:32.040-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_headers","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.061-04:00"},{"id":"3bc3b5dd-09c1-44a8-939a-7435c7546cc1","created_at":"2026-05-22T21:04:32.063-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"EHR Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.063-04:00"},{"id":"4b45c844-9dad-4bf5-8f29-4861736833bb","created_at":"2026-05-22T21:04:32.071-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.071-04:00"},{"id":"a61db209-0cb2-44e9-8d87-6bc48e46bc83","created_at":"2026-05-22T21:04:32.075-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI3MiwiaWF0IjoxNzc5NDk4MjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Z4B3sE8PgRfkxT81776hYb0-l9Hyy0DMy71ebV5Y_fQk9P7t_R6j7dPnExaY3uLhdG87kh87kwdKT-GtImc1OwxtJOjJz3K270rEJ6Zo0jn3BwvMRzSfInF50Yqi4m-0Fip8w16KiSerdvDmRGHboq3DWoDesYJE8cOOwbLzPI2lbS9ogU2UrKKzQC8JN0FjN9C4vjMf8zcJZ4odEMyyPw1UDRmdCs12FT-w5mdqa2ZmHjjhlqiFsuCzXdThTyU6KqqdSx5WRi30lcBlRrmiVmikbUxrpfkYYnk581fvikoOllOkkdDlZMfxcCkri1R_W2pcgr5IRziSmumtENIh6Q","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034272,\"iat\":1779498272,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.075-04:00"},{"id":"efe3c6a9-2064-4dff-bcce-3150630f4b04","created_at":"2026-05-22T21:04:32.181-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034272,\"iat\":1779498272,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"8a6b4a78-9f35-4c6c-b094-a35b92c5a1cb","direction":"outgoing","index":141869,"result_id":"efe3c6a9-2064-4dff-bcce-3150630f4b04","status":200,"timestamp":"2026-05-22T21:04:32.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.181-04:00"},{"id":"b6c678a3-a83a-4c90-9d7b-bd769fa907c8","created_at":"2026-05-22T21:04:32.198-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.198-04:00"},{"id":"053c7797-5fa1-4527-8b20-7556138d8059","created_at":"2026-05-22T21:04:32.300-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"77c7d303-2879-4823-a202-8f1420adb54d","direction":"outgoing","index":141870,"result_id":"053c7797-5fa1-4527-8b20-7556138d8059","status":200,"timestamp":"2026-05-22T21:04:32.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.300-04:00"},{"id":"4d80e777-0127-43d7-8b9c-f35a828d11db","created_at":"2026-05-22T21:04:32.315-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.315-04:00"},{"id":"8ea773a1-bf7c-4fde-aa8b-4ef65284c6b9","created_at":"2026-05-22T21:04:32.319-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI3MiwiaWF0IjoxNzc5NDk4MjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Z4B3sE8PgRfkxT81776hYb0-l9Hyy0DMy71ebV5Y_fQk9P7t_R6j7dPnExaY3uLhdG87kh87kwdKT-GtImc1OwxtJOjJz3K270rEJ6Zo0jn3BwvMRzSfInF50Yqi4m-0Fip8w16KiSerdvDmRGHboq3DWoDesYJE8cOOwbLzPI2lbS9ogU2UrKKzQC8JN0FjN9C4vjMf8zcJZ4odEMyyPw1UDRmdCs12FT-w5mdqa2ZmHjjhlqiFsuCzXdThTyU6KqqdSx5WRi30lcBlRrmiVmikbUxrpfkYYnk581fvikoOllOkkdDlZMfxcCkri1R_W2pcgr5IRziSmumtENIh6Q","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.319-04:00"},{"id":"1d5c5634-220d-478e-9134-561231429bfa","created_at":"2026-05-22T21:04:32.430-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034272,\"iat\":1779498272,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"76c5b534-4898-404a-8fcc-0977bdb5310f","direction":"outgoing","index":141871,"result_id":"1d5c5634-220d-478e-9134-561231429bfa","status":200,"timestamp":"2026-05-22T21:04:32.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.430-04:00"},{"id":"8c33f3bb-66ec-42bf-bc53-1144583df62f","created_at":"2026-05-22T21:04:32.449-04:00","inputs":[{"name":"ehr_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDI3MiwiaWF0IjoxNzc5NDk4MjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Z4B3sE8PgRfkxT81776hYb0-l9Hyy0DMy71ebV5Y_fQk9P7t_R6j7dPnExaY3uLhdG87kh87kwdKT-GtImc1OwxtJOjJz3K270rEJ6Zo0jn3BwvMRzSfInF50Yqi4m-0Fip8w16KiSerdvDmRGHboq3DWoDesYJE8cOOwbLzPI2lbS9ogU2UrKKzQC8JN0FjN9C4vjMf8zcJZ4odEMyyPw1UDRmdCs12FT-w5mdqa2ZmHjjhlqiFsuCzXdThTyU6KqqdSx5WRi30lcBlRrmiVmikbUxrpfkYYnk581fvikoOllOkkdDlZMfxcCkri1R_W2pcgr5IRziSmumtENIh6Q","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_openid_connect","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.449-04:00"},{"id":"45884810-fd70-4f76-a3d9-d6591fd3a46a","created_at":"2026-05-22T21:04:32.562-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:04:32-04:00"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"2f4749dc-aa73-48fc-802d-9bb8c5836c53","direction":"outgoing","index":141872,"result_id":"45884810-fd70-4f76-a3d9-d6591fd3a46a","status":200,"timestamp":"2026-05-22T21:04:32.564-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.562-04:00"},{"id":"a367181d-5717-4e1f-a79f-3049e3a04fff","created_at":"2026-05-22T21:04:32.582-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"99bd5822-a268-4b4d-8010-f1e4a1891514"},{"name":"access_token","type":"text","value":"93f94aab-c859-4289-85fe-5b7f409d82bc"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:04:32-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs"},{"name":"smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}"}],"requests":[{"id":"2f4749dc-aa73-48fc-802d-9bb8c5836c53","direction":"outgoing","index":141872,"result_id":"45884810-fd70-4f76-a3d9-d6591fd3a46a","status":200,"timestamp":"2026-05-22T21:04:32.564-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.582-04:00"},{"id":"52c80c0d-b587-497d-babe-09f920afd537","created_at":"2026-05-22T21:04:32.584-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"2f4749dc-aa73-48fc-802d-9bb8c5836c53","direction":"outgoing","index":141872,"result_id":"45884810-fd70-4f76-a3d9-d6591fd3a46a","status":200,"timestamp":"2026-05-22T21:04:32.564-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.584-04:00"},{"id":"c2e96f3d-1219-41ce-9273-3cafff2c81aa","created_at":"2026-05-22T21:04:32.586-04:00","inputs":[{"name":"ehr_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs","type":"text"},{"name":"smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a435eb43-ba68-49c5-b71b-a348deb2e66c\",\"refresh_token\":\"c4393f5a-7049-420d-87ba-ebbea4586217\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2-smart_token_refresh","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.586-04:00"},{"id":"ab9e2e66-69b5-4a09-816d-6050e7050188","created_at":"2026-05-22T21:04:32.589-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"EHR Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"fa5b1d65-1361-4eab-a11c-242763f598e7\",\"refresh_token\":\"76cc25e7-4b7c-4e63-aaf8-134cb48580b3\",\"issue_time\":\"2026-05-22T21:04:17-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_smart_app_launch-us_core_smart_ehr_launch_stu2","test_run_id":"6f5459c4-bd43-4a10-b448-b39acc7e48c1","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:32.589-04:00"},{"id":"f958d649-0698-4905-a743-64f92e20d066","created_at":"2026-05-22T21:04:36.856-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/r4 accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-standalone_auth_tls","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:36.856-04:00"},{"id":"ae649f1c-79c6-4356-8d06-c6fdabd51db6","created_at":"2026-05-22T21:04:37.695-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CapabilityStatement: CapabilityStatement.rest[0].security.extension[0]: The extension http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris|5.3.0 is deprecated with the note: 'This is now handled with the .well-known/smart-configuration JSON file.'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[3].supportedProfile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[21]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[22]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-survey'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[24]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[25]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-test'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[26]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[34]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-treatment-intervention-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[35]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-care-experience-preference'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].resource[16].supportedProfile[36]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-average-blood-pressure'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement.rest[0].operation[0].definition: A definition could not be found for Canonical URL 'https://inferno.healthit.gov/reference-server/OperationDefinition/-s-get-resource-counts'","type":"info"},{"message":"CapabilityStatement: CapabilityStatement: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[{"id":"0a705acc-f60f-417c-87f0-3a8adc69be0c","direction":"outgoing","index":141873,"result_id":"ae649f1c-79c6-4356-8d06-c6fdabd51db6","status":200,"timestamp":"2026-05-22T21:04:37.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_conformance_support","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.695-04:00"},{"id":"05325861-e68e-4b60-9bb5-6f10afb5efe5","created_at":"2026-05-22T21:04:37.868-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_fhir_version","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.868-04:00"},{"id":"e02fec7f-e2db-41c7-b896-e1af1fae91fd","created_at":"2026-05-22T21:04:37.881-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0a705acc-f60f-417c-87f0-3a8adc69be0c","direction":"outgoing","index":141873,"result_id":"ae649f1c-79c6-4356-8d06-c6fdabd51db6","status":200,"timestamp":"2026-05-22T21:04:37.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_json_support","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.881-04:00"},{"id":"962ca2ee-9ab4-4205-b777-c25df2b73305","created_at":"2026-05-22T21:04:37.890-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0a705acc-f60f-417c-87f0-3a8adc69be0c","direction":"outgoing","index":141873,"result_id":"ae649f1c-79c6-4356-8d06-c6fdabd51db6","status":200,"timestamp":"2026-05-22T21:04:37.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_profile_support","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.890-04:00"},{"id":"aff11cd4-886e-4726-be54-9634bf73f6f2","created_at":"2026-05-22T21:04:37.899-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0a705acc-f60f-417c-87f0-3a8adc69be0c","direction":"outgoing","index":141873,"result_id":"ae649f1c-79c6-4356-8d06-c6fdabd51db6","status":200,"timestamp":"2026-05-22T21:04:37.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_instantiate","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.899-04:00"},{"id":"b03cc3c7-6911-4a44-af62-2f057ce606dc","created_at":"2026-05-22T21:04:37.902-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_capability_statement","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:37.902-04:00"},{"id":"75be92df-ed37-4c4c-b567-4c8adfa9d6aa","created_at":"2026-05-22T21:04:38.378-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4b2e0985-dfa4-43cd-bc82-3a0f1f3e6d5d","direction":"outgoing","index":141874,"result_id":"75be92df-ed37-4c4c-b567-4c8adfa9d6aa","status":200,"timestamp":"2026-05-22T21:04:38.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85","verb":"get"},{"id":"d4b34ab1-4a7b-408b-bd3d-61651785ccd5","direction":"outgoing","index":141875,"result_id":"75be92df-ed37-4c4c-b567-4c8adfa9d6aa","status":200,"timestamp":"2026-05-22T21:04:38.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/_search","verb":"post"},{"id":"039be50f-2d70-4817-b005-4cd9b503cebc","direction":"outgoing","index":141876,"result_id":"75be92df-ed37-4c4c-b567-4c8adfa9d6aa","status":200,"timestamp":"2026-05-22T21:04:38.416-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355","verb":"get"},{"id":"f55b587a-0be8-400c-9cf6-0fb7f9798997","direction":"outgoing","index":141877,"result_id":"75be92df-ed37-4c4c-b567-4c8adfa9d6aa","status":200,"timestamp":"2026-05-22T21:04:38.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:38.378-04:00"},{"id":"b39af422-6052-4891-9c99-fc3b07aee91a","created_at":"2026-05-22T21:04:38.684-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"76ecb342-b75e-4229-a4b2-1e8b1cc7e920","direction":"outgoing","index":141878,"result_id":"b39af422-6052-4891-9c99-fc3b07aee91a","status":200,"timestamp":"2026-05-22T21:04:38.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=d831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"},{"id":"960829dd-9f4a-45d6-8a71-51752e860ad5","direction":"outgoing","index":141879,"result_id":"b39af422-6052-4891-9c99-fc3b07aee91a","status":200,"timestamp":"2026-05-22T21:04:38.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?identifier=https://github.com/synthetichealth/synthea%7Cd831ec91-c7a3-4a61-9312-7ff0c4a32134","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:38.684-04:00"},{"id":"dc24c777-6fa7-4d3a-a231-ac6b8fa90051","created_at":"2026-05-22T21:04:38.835-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cd6d9d2b-b107-4cfb-bfd3-22a23e354749","direction":"outgoing","index":141880,"result_id":"dc24c777-6fa7-4d3a-a231-ac6b8fa90051","status":200,"timestamp":"2026-05-22T21:04:38.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:38.835-04:00"},{"id":"f5dc7310-9e29-4eda-8ad1-91138210c6a7","created_at":"2026-05-22T21:04:38.968-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1f86b002-a93b-4ff1-9337-3e716aea9d17","direction":"outgoing","index":141881,"result_id":"f5dc7310-9e29-4eda-8ad1-91138210c6a7","status":200,"timestamp":"2026-05-22T21:04:38.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_family_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:38.968-04:00"},{"id":"034c0be2-0a44-42b4-b1f4-f5829a4a0fbf","created_at":"2026-05-22T21:04:39.107-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"66a8b5b7-f4b2-4f6b-a339-fd0173e17144","direction":"outgoing","index":141882,"result_id":"034c0be2-0a44-42b4-b1f4-f5829a4a0fbf","status":200,"timestamp":"2026-05-22T21:04:39.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?family=Bosco882\u0026gender=male","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_family_gender_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:39.107-04:00"},{"id":"29ac1ea0-b596-4f19-98e5-cb587ba83359","created_at":"2026-05-22T21:04:39.249-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8293f0a8-eaf9-4e97-b21f-018efdf379e6","direction":"outgoing","index":141883,"result_id":"29ac1ea0-b596-4f19-98e5-cb587ba83359","status":200,"timestamp":"2026-05-22T21:04:39.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?birthdate=1940-03-29\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:39.249-04:00"},{"id":"c8ba318b-8e92-479a-b356-07a4a3959876","created_at":"2026-05-22T21:04:39.385-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"afde4b53-50ab-4cc7-bdc5-e8f1ce4ae040","direction":"outgoing","index":141884,"result_id":"c8ba318b-8e92-479a-b356-07a4a3959876","status":200,"timestamp":"2026-05-22T21:04:39.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?gender=male\u0026name=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:39.385-04:00"},{"id":"4fbfac12-a126-4b3f-9c44-3c9a6a9f53fc","created_at":"2026-05-22T21:04:39.520-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"76c8d744-c895-4b54-8f4e-bc4b7d6bb43b","direction":"outgoing","index":141885,"result_id":"4fbfac12-a126-4b3f-9c44-3c9a6a9f53fc","status":200,"timestamp":"2026-05-22T21:04:39.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?death-date=1977-07-14T04:17:45-04:00\u0026family=Bosco882","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_death_date_family_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:39.520-04:00"},{"id":"be1a4761-ccf3-4d02-acfc-18c20839fae0","created_at":"2026-05-22T21:04:39.653-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3f9c58d2-8e0e-4c90-a46e-abfcb37b064c","direction":"outgoing","index":141886,"result_id":"be1a4761-ccf3-4d02-acfc-18c20839fae0","status":200,"timestamp":"2026-05-22T21:04:39.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:39.653-04:00"},{"id":"ccb0ee41-d2c4-4126-b924-a6d3928b52a7","created_at":"2026-05-22T21:04:40.127-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e988a393-0811-423d-a31a-33f9c10c877f","direction":"outgoing","index":141887,"result_id":"ccb0ee41-d2c4-4126-b924-a6d3928b52a7","status":200,"timestamp":"2026-05-22T21:04:40.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=85\u0026_revinclude=Provenance:target","verb":"get"},{"id":"7ca0ca1a-36b6-42e3-9923-0758f44c8663","direction":"outgoing","index":141888,"result_id":"ccb0ee41-d2c4-4126-b924-a6d3928b52a7","status":200,"timestamp":"2026-05-22T21:04:40.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=355\u0026_revinclude=Provenance:target","verb":"get"},{"id":"b6c5d1cf-3894-49de-9ad2-1d7df28d450f","direction":"outgoing","index":141889,"result_id":"ccb0ee41-d2c4-4126-b924-a6d3928b52a7","status":200,"timestamp":"2026-05-22T21:04:40.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient?_id=907\u0026_revinclude=Provenance:target","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:40.127-04:00"},{"id":"2630cc18-df27-4b37-bccc-70d1a5ffc2cb","created_at":"2026-05-22T21:04:42.591-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Patient/85: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"},{"message":"Patient/355: Patient.identifier[2].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#SS)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:42.591-04:00"},{"id":"4b9876e7-3e63-4221-aefe-bd515cf49494","created_at":"2026-05-22T21:04:42.605-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:42.605-04:00"},{"id":"c7bbe5a7-b981-499d-891d-7ca7c7bfad93","created_at":"2026-05-22T21:04:42.606-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_patient","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:42.606-04:00"},{"id":"6782917f-8c79-4cfe-8b94-58bf363b4515","created_at":"2026-05-22T21:04:43.265-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"71ef89b6-a23f-4db2-a558-e28b72f2655a","direction":"outgoing","index":141890,"result_id":"6782917f-8c79-4cfe-8b94-58bf363b4515","status":200,"timestamp":"2026-05-22T21:04:43.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=85","verb":"get"},{"id":"ac86a87b-2041-4ca7-bde5-92c92bb82de0","direction":"outgoing","index":141891,"result_id":"6782917f-8c79-4cfe-8b94-58bf363b4515","status":200,"timestamp":"2026-05-22T21:04:43.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=355","verb":"get"},{"id":"df779c11-59f6-4965-9caa-745f140123f3","direction":"outgoing","index":141892,"result_id":"6782917f-8c79-4cfe-8b94-58bf363b4515","status":200,"timestamp":"2026-05-22T21:04:43.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/_search","verb":"post"},{"id":"49f4419f-270f-432c-aba8-885cb4f6e476","direction":"outgoing","index":141893,"result_id":"6782917f-8c79-4cfe-8b94-58bf363b4515","status":200,"timestamp":"2026-05-22T21:04:43.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=Patient/355","verb":"get"},{"id":"cf04dbaa-22ec-491b-a65a-d2d097dbb5fa","direction":"outgoing","index":141894,"result_id":"6782917f-8c79-4cfe-8b94-58bf363b4515","status":200,"timestamp":"2026-05-22T21:04:43.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:43.265-04:00"},{"id":"9c363373-e70e-4776-a438-6439505f7857","created_at":"2026-05-22T21:04:43.578-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d7086cd1-e5ca-4a58-8b7d-1558833117cb","direction":"outgoing","index":141895,"result_id":"9c363373-e70e-4776-a438-6439505f7857","status":200,"timestamp":"2026-05-22T21:04:43.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=inactive\u0026patient=355","verb":"get"},{"id":"1e443942-a3f5-4255-8160-daf6daf2555a","direction":"outgoing","index":141896,"result_id":"9c363373-e70e-4776-a438-6439505f7857","status":200,"timestamp":"2026-05-22T21:04:43.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?clinical-status=http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical%7Cinactive\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_clinical_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:43.578-04:00"},{"id":"e54470a9-b88c-4899-8bbc-1a5758edb089","created_at":"2026-05-22T21:04:43.715-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4170dcfd-bd9e-4b8e-8dea-c250076fa59e","direction":"outgoing","index":141897,"result_id":"e54470a9-b88c-4899-8bbc-1a5758edb089","status":200,"timestamp":"2026-05-22T21:04:43.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:43.715-04:00"},{"id":"5dcabf11-c178-4b02-af19-88b82d0c3fda","created_at":"2026-05-22T21:04:44.278-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c1bab1a6-d031-4846-bfc8-02b5b917873e","direction":"outgoing","index":141898,"result_id":"5dcabf11-c178-4b02-af19-88b82d0c3fda","status":200,"timestamp":"2026-05-22T21:04:44.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"ad550854-86f2-4005-8085-32960ea6ad1c","direction":"outgoing","index":141899,"result_id":"5dcabf11-c178-4b02-af19-88b82d0c3fda","status":200,"timestamp":"2026-05-22T21:04:44.296-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"1f10767f-d4e6-4b35-b4e7-988615cfe199","direction":"outgoing","index":141900,"result_id":"5dcabf11-c178-4b02-af19-88b82d0c3fda","status":200,"timestamp":"2026-05-22T21:04:44.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4/AllergyIntolerance?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:44.278-04:00"},{"id":"b1c49be7-5683-4f51-96f4-558c5852e6ad","created_at":"2026-05-22T21:04:48.996-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300916003)","type":"warning"},{"message":"AllergyIntolerance/0310eb5c-9cbb-4be4-89b4-8169283ae2f1: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419474003)","type":"warning"},{"message":"AllergyIntolerance/21868f9a-c636-4393-8e74-fcf727a69b5f: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232350006)","type":"warning"},{"message":"AllergyIntolerance/15cf649c-ebbb-4ff1-b39b-776c58e0a0cf: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#232347008)","type":"warning"},{"message":"AllergyIntolerance/96799af4-4fcc-4cab-b2eb-9f24171d7c63: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#418689008)","type":"warning"},{"message":"AllergyIntolerance/afb402c0-5dad-4520-9b21-32dd09fb179b: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#419263009)","type":"warning"},{"message":"AllergyIntolerance/7e6c0cd2-570c-4772-bcbf-87f273c069bd: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#714035009)","type":"warning"},{"message":"AllergyIntolerance/d5438498-979e-4e46-8b27-c3e596731795: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#300913006)","type":"warning"},{"message":"AllergyIntolerance/1e5af494-67fd-41e9-9a6a-ff9ce2a1cedc: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#417532002)","type":"warning"},{"message":"AllergyIntolerance/784a39f0-854a-41db-aaf8-515dc0398233: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance.code: None of the codings provided are in the value set 'Common substances for allergy and intolerance documentation including refutations' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1186.8|20210622), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#91935009)","type":"warning"},{"message":"AllergyIntolerance/6215ebff-9c6b-4e4f-95bc-1cceb206019e: AllergyIntolerance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:48.996-04:00"},{"id":"4bb06858-9839-42f4-a498-33855c3d6def","created_at":"2026-05-22T21:04:49.034-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:49.034-04:00"},{"id":"b2e0f682-7fde-42d0-8890-df2aa09c5922","created_at":"2026-05-22T21:04:49.222-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4bf2ced2-6401-4190-9cd4-f2716e1ac166","direction":"outgoing","index":141901,"result_id":"b2e0f682-7fde-42d0-8890-df2aa09c5922","status":200,"timestamp":"2026-05-22T21:04:49.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:49.222-04:00"},{"id":"b3b6337f-d78f-47ab-b204-cf5c46a74094","created_at":"2026-05-22T21:04:49.243-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_allergy_intolerance","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:49.243-04:00"},{"id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","created_at":"2026-05-22T21:04:50.889-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5d45e5bc-a488-47bb-9bcf-c78903de7b0c","direction":"outgoing","index":141902,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85","verb":"get"},{"id":"4e1d29f5-0eba-49e3-9734-ce457c98de76","direction":"outgoing","index":141903,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/_search","verb":"post"},{"id":"a0c6a13b-427b-47a5-bc64-87eeb34379fa","direction":"outgoing","index":141904,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=Patient/85","verb":"get"},{"id":"b5c355fc-64c6-4a10-8a7a-89346d0d22bf","direction":"outgoing","index":141905,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85","verb":"get"},{"id":"67d981a6-cf05-446f-a389-0124c7502065","direction":"outgoing","index":141906,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355","verb":"get"},{"id":"de0522e7-3638-4d00-b279-07a073aa5553","direction":"outgoing","index":141907,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=48b809b5-54ed-47af-a02e-3d759c217ae8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53a7fe58-3368-4d8d-ae05-2d1104430a50","direction":"outgoing","index":141908,"result_id":"c3fa5b1f-5aab-469f-acef-e15d84d52542","status":200,"timestamp":"2026-05-22T21:04:50.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:50.889-04:00"},{"id":"2b2dbace-14ad-47f4-b41b-45ff36e8d95f","created_at":"2026-05-22T21:04:51.571-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6b307eb5-0c91-4d16-8db1-cbc42bc1946e","direction":"outgoing","index":141909,"result_id":"2b2dbace-14ad-47f4-b41b-45ff36e8d95f","status":200,"timestamp":"2026-05-22T21:04:51.574-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"7f9be1a0-11bf-4b74-b8c5-239a6df53486","direction":"outgoing","index":141910,"result_id":"2b2dbace-14ad-47f4-b41b-45ff36e8d95f","status":200,"timestamp":"2026-05-22T21:04:51.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026patient=85\u0026status=completed","verb":"get"},{"id":"4bfc53d6-2130-4e85-a3a7-ac9743ec2766","direction":"outgoing","index":141911,"result_id":"2b2dbace-14ad-47f4-b41b-45ff36e8d95f","status":200,"timestamp":"2026-05-22T21:04:51.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=355\u0026status=active","verb":"get"},{"id":"aa02fd20-8736-43c3-80d0-e96d0de40024","direction":"outgoing","index":141912,"result_id":"2b2dbace-14ad-47f4-b41b-45ff36e8d95f","status":200,"timestamp":"2026-05-22T21:04:51.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:51.571-04:00"},{"id":"9b54ee66-c308-4f95-9fdc-995243c93237","created_at":"2026-05-22T21:04:52.764-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7a777606-c4fc-4c3a-93e9-07ac226c8dad","direction":"outgoing","index":141913,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"e1d23826-6365-42ec-a37c-bbc592b552b4","direction":"outgoing","index":141914,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"5fbd47e9-ca1d-4402-a9df-701556f3ef10","direction":"outgoing","index":141915,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"4adedaa1-e433-4835-8788-ee770ecfadf3","direction":"outgoing","index":141916,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"debd76cd-1c84-4738-9ed9-be4d61d31851","direction":"outgoing","index":141917,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"ea7f0f48-0a35-48a7-ac7b-fe3dcfa15009","direction":"outgoing","index":141918,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=completed","verb":"get"},{"id":"4c79fd87-8a5b-4d3a-a2ca-340c0dc161d1","direction":"outgoing","index":141919,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355\u0026status=active","verb":"get"},{"id":"3dcf55b4-71eb-44df-b1f1-651a180627b4","direction":"outgoing","index":141920,"result_id":"9b54ee66-c308-4f95-9fdc-995243c93237","status":200,"timestamp":"2026-05-22T21:04:52.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_status_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:52.764-04:00"},{"id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","created_at":"2026-05-22T21:04:54.659-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3e589a39-8606-48e4-b605-5cac021f1e7e","direction":"outgoing","index":141921,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"47f6ebb8-8b3a-4c72-b7af-546e1a2ac028","direction":"outgoing","index":141922,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"ee0da87d-428e-496e-b224-021a667c6f76","direction":"outgoing","index":141923,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=ge1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"59e6423c-f9e0-45e1-9438-7b790549fb9d","direction":"outgoing","index":141924,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=lt1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"52354453-56bc-4d50-af86-0324e270e57b","direction":"outgoing","index":141925,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=le1946-11-24T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"5db2418c-d7d5-4a30-946b-01b899cc7e03","direction":"outgoing","index":141926,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=http://hl7.org/fhir/us/core/CodeSystem/careplan-category%7Cassess-plan\u0026date=gt1946-11-22T01:11:45-05:00\u0026patient=85","verb":"get"},{"id":"c85f3f57-964c-437a-8fc3-991722e6ef9d","direction":"outgoing","index":141927,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?category=assess-plan\u0026date=gt1941-10-01T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"05bf3bc2-2f3b-4f4d-bd72-7df595715370","direction":"outgoing","index":141928,"result_id":"fa0404f5-22b4-4dd8-8e34-c05788fe3367","status":200,"timestamp":"2026-05-22T21:04:54.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fd3d5c9a-394d-4ab7-8426-6f1413b42229\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:54.659-04:00"},{"id":"842b5f8e-a27e-44b5-afec-09274433d819","created_at":"2026-05-22T21:04:54.880-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"241b436b-15c9-4db9-9b99-0dc5d89178a7","direction":"outgoing","index":141929,"result_id":"842b5f8e-a27e-44b5-afec-09274433d819","status":200,"timestamp":"2026-05-22T21:04:54.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:54.880-04:00"},{"id":"6db924b7-cb37-4f49-9026-509daf40ce35","created_at":"2026-05-22T21:04:56.172-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e061cafd-562d-45dc-b41b-116cc6160c7e","direction":"outgoing","index":141930,"result_id":"6db924b7-cb37-4f49-9026-509daf40ce35","status":200,"timestamp":"2026-05-22T21:04:56.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=85","verb":"get"},{"id":"b834daee-13d6-483e-b9b8-575adcc64285","direction":"outgoing","index":141931,"result_id":"6db924b7-cb37-4f49-9026-509daf40ce35","status":200,"timestamp":"2026-05-22T21:04:56.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=355","verb":"get"},{"id":"49f4dcf9-5227-45fe-a0b1-a3e300608a8f","direction":"outgoing","index":141932,"result_id":"6db924b7-cb37-4f49-9026-509daf40ce35","status":200,"timestamp":"2026-05-22T21:04:56.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1c2a489-619b-47a3-be08-f29e3fe7e650\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de99799-9fa8-40b5-93e4-a8353051e82c","direction":"outgoing","index":141933,"result_id":"6db924b7-cb37-4f49-9026-509daf40ce35","status":200,"timestamp":"2026-05-22T21:04:56.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CarePlan?_revinclude=Provenance:target\u0026category=assess-plan\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:04:56.172-04:00"},{"id":"1b5f37fe-b00f-4749-bd90-f3ce69106581","created_at":"2026-05-22T21:05:03.974-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CarePlan/a99b1402-7e5a-471d-8eda-55e9de888fd9: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/a14e6733-a6ad-4ec7-9b94-e7074d4da33d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/87d6957e-b590-4cf7-98d4-8f6f93d7edb1: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/eae3ca84-343e-4a4d-8110-8afbca8c5856: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/27fbc542-e915-4d44-a354-0aa7d11fc66d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/74be3b68-33d6-48b2-ae91-209fa97a8d3c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/26d82e19-7df7-4644-94b9-55f65aee30df: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/7e5a0802-84c6-40bb-9a60-9d11831b5364: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/e5052c5e-1f0d-496c-ad85-b8f883bb9c9c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/21abdeca-16e3-4a41-8bfa-64a2baabb98b: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/253dc66f-63f3-4832-a2f0-23d2ed6b454d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/fb688a3e-dec8-408a-8b1f-d7c83fb6bc79: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/900456a8-8a01-433d-aa77-9d39b98d90bd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/1762e7c8-8a49-4820-a83d-57bbf17ea7c5: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/665a5737-e4fe-4330-aa38-2dfb7259df60: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/0ea04600-4f5d-43e0-b1a9-d38ce00c5526: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/45fa22bc-cc22-4b4a-9204-7945a26c6cbd: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/ff2d93c5-1f9b-4720-b001-9b83da1d2e0c: CarePlan.category[1].coding[0]: The concept '698360004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/b5188811-407c-4c3f-923b-d23a95393a42: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/30c206f5-aa7f-4250-b470-f811431de621: CarePlan.category[1].coding[0]: The concept '395082007' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CarePlan/aa4e1578-42f0-4e30-b5d5-fefd81d54d6a: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/d3031acb-6664-4238-ae88-b575116f6e6d: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/8d1030ea-715b-454f-9f6d-01d974b3233c: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/bf7ed81b-34b8-42d4-8241-798b3f9fc006: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/acc64cae-50ef-4d81-9515-073cb234bb59: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"},{"message":"CarePlan/f8bfe708-93be-4d43-b368-b45f41f11034: CarePlan.text.status: Reference to draft CodeSystem http://hl7.org/fhir/narrative-status|4.0.1","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:03.974-04:00"},{"id":"ce467f9d-82ca-4faf-8a58-64b5e61bbc75","created_at":"2026-05-22T21:05:04.019-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:04.019-04:00"},{"id":"41604195-e1fd-43cb-9cee-512efaa4b9df","created_at":"2026-05-22T21:05:04.185-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"32412688-91d2-4be6-8796-bd80ad63cb06","direction":"outgoing","index":141934,"result_id":"41604195-e1fd-43cb-9cee-512efaa4b9df","status":200,"timestamp":"2026-05-22T21:05:04.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:04.185-04:00"},{"id":"11791be1-a8b4-4c02-9c84-b6b8806be000","created_at":"2026-05-22T21:05:04.208-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_plan","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:04.208-04:00"},{"id":"38ce3853-975d-4a43-b838-13ab9d0adb94","created_at":"2026-05-22T21:05:07.059-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9b66e349-b01b-4b49-906c-be86c69fdd47","direction":"outgoing","index":141935,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.064-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=proposed","verb":"get"},{"id":"3973c98d-159a-4234-a3ea-6477900be51e","direction":"outgoing","index":141936,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=active","verb":"get"},{"id":"517f97e6-6e26-4045-84b4-eb9f43615905","direction":"outgoing","index":141937,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/_search","verb":"post"},{"id":"d34f42cb-58e6-4f4a-a8f0-c9175a9d8e82","direction":"outgoing","index":141938,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=Patient/85\u0026status=active","verb":"get"},{"id":"aef79ced-f57e-4d79-babe-f003a617191a","direction":"outgoing","index":141939,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=suspended","verb":"get"},{"id":"5fa86780-7675-466b-9833-47f169afd69f","direction":"outgoing","index":141940,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=inactive","verb":"get"},{"id":"a16c7037-5d51-45cc-b1ab-e5982340b0c5","direction":"outgoing","index":141941,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026status=entered-in-error","verb":"get"},{"id":"c9a6a688-7a46-4af3-87ca-9b5bfd930995","direction":"outgoing","index":141942,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=proposed","verb":"get"},{"id":"ebacb0c9-0391-48e2-83ea-4cad6de066da","direction":"outgoing","index":141943,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=active","verb":"get"},{"id":"dc159a88-1729-45c3-a609-c32d819517bb","direction":"outgoing","index":141944,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=suspended","verb":"get"},{"id":"c73e1344-e05f-4c3c-b74f-cb20861f8d3c","direction":"outgoing","index":141945,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=inactive","verb":"get"},{"id":"424642c3-485a-4376-858a-76798171b616","direction":"outgoing","index":141946,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6ef7e2ce-4306-4800-a9fb-0397345be1bf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2b37fb5-92db-4213-9efc-162f50181994","direction":"outgoing","index":141947,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=355\u0026status=entered-in-error","verb":"get"},{"id":"748e2a88-df5b-46d9-b6a2-e9ffc50e4cb4","direction":"outgoing","index":141948,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=proposed","verb":"get"},{"id":"6fabd457-fd3f-4414-b1db-97944b0753c1","direction":"outgoing","index":141949,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=active","verb":"get"},{"id":"f32ebfb5-84b9-4b36-a821-5e2747e98d63","direction":"outgoing","index":141950,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=suspended","verb":"get"},{"id":"0f7da8f6-83cf-4155-9e12-04fac146c377","direction":"outgoing","index":141951,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=inactive","verb":"get"},{"id":"85705184-c542-471c-93e1-a39671b3f955","direction":"outgoing","index":141952,"result_id":"38ce3853-975d-4a43-b838-13ab9d0adb94","status":200,"timestamp":"2026-05-22T21:05:07.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:07.059-04:00"},{"id":"02337aca-150e-4646-82fb-5bc553fb3cbe","created_at":"2026-05-22T21:05:07.563-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"69e44743-db83-4ee2-965c-235417663271","direction":"outgoing","index":141953,"result_id":"02337aca-150e-4646-82fb-5bc553fb3cbe","status":400,"timestamp":"2026-05-22T21:05:07.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003","verb":"get"},{"id":"1a7cdab4-f2b3-4056-a5a6-b9a21755754c","direction":"outgoing","index":141954,"result_id":"02337aca-150e-4646-82fb-5bc553fb3cbe","status":400,"timestamp":"2026-05-22T21:05:07.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_role_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:07.563-04:00"},{"id":"f260d6d6-ae06-468c-a21b-677d4c2faa68","created_at":"2026-05-22T21:05:07.815-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0594a351-9062-4e9a-924d-1b7e4f2f9589","direction":"outgoing","index":141955,"result_id":"f260d6d6-ae06-468c-a21b-677d4c2faa68","status":400,"timestamp":"2026-05-22T21:05:07.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003","verb":"get"},{"id":"6acdb276-3cd8-468d-a844-949940ff3d6e","direction":"outgoing","index":141956,"result_id":"f260d6d6-ae06-468c-a21b-677d4c2faa68","status":400,"timestamp":"2026-05-22T21:05:07.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?patient=85\u0026role=116154003\u0026status=proposed","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_role_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:07.815-04:00"},{"id":"8dd26d9f-f51b-467c-8e2f-6856014033b6","created_at":"2026-05-22T21:05:07.952-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"864ed73e-baeb-4fe5-aabf-61a9b93c2bab","direction":"outgoing","index":141957,"result_id":"8dd26d9f-f51b-467c-8e2f-6856014033b6","status":200,"timestamp":"2026-05-22T21:05:07.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:07.952-04:00"},{"id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","created_at":"2026-05-22T21:05:10.684-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55c30ce9-51e1-4104-8852-fc75cdbcb0ad","direction":"outgoing","index":141958,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=proposed","verb":"get"},{"id":"8c478843-ce40-4480-996a-eff4feca8cbb","direction":"outgoing","index":141959,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=active","verb":"get"},{"id":"5050e757-f88c-409f-8e93-2d245238e052","direction":"outgoing","index":141960,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=suspended","verb":"get"},{"id":"a360d6fb-94e7-44c9-834f-1ee38fcbe669","direction":"outgoing","index":141961,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.737-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=inactive","verb":"get"},{"id":"e2344a86-5ce5-4898-a631-bde9ce6d6a35","direction":"outgoing","index":141962,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=85\u0026status=entered-in-error","verb":"get"},{"id":"2f077d8c-9dd5-41d5-9457-9431f5a8810a","direction":"outgoing","index":141963,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=proposed","verb":"get"},{"id":"f2c61013-39d2-43e2-bf40-42de13011824","direction":"outgoing","index":141964,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=active","verb":"get"},{"id":"a3997cd4-b697-4218-84a8-20af49c2c242","direction":"outgoing","index":141965,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=suspended","verb":"get"},{"id":"0c16b74f-2e32-414f-bbb5-f88ebdc6968a","direction":"outgoing","index":141966,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=inactive","verb":"get"},{"id":"ce461de3-dc63-4531-8d4a-0d85677da4b0","direction":"outgoing","index":141967,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=716ee4e5-1225-45f4-a93e-801dbfd177cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65fb3894-1298-4ad7-a9e7-25d98bd5ceca","direction":"outgoing","index":141968,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=355\u0026status=entered-in-error","verb":"get"},{"id":"22babc12-58c8-4bd2-b05b-93c2643b0591","direction":"outgoing","index":141969,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=proposed","verb":"get"},{"id":"fc4ec34e-592c-4aaa-9eb7-a48d3dcd985a","direction":"outgoing","index":141970,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=active","verb":"get"},{"id":"0266e3a4-e9c0-451f-aad1-4f1750ede05f","direction":"outgoing","index":141971,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=suspended","verb":"get"},{"id":"a44eddf8-972d-4392-abee-247e99eca42c","direction":"outgoing","index":141972,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=inactive","verb":"get"},{"id":"83ee9c9b-a37a-4516-8609-0f154a50fbfa","direction":"outgoing","index":141973,"result_id":"26ee08d2-a6bb-4f1a-97c9-4d9cb8510257","status":200,"timestamp":"2026-05-22T21:05:10.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/CareTeam?_revinclude=Provenance:target\u0026patient=907\u0026status=entered-in-error","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:10.684-04:00"},{"id":"84f137df-13c2-4bba-aef0-cb9c812829d2","created_at":"2026-05-22T21:05:15.389-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7e65a939-4dad-4293-aa72-a5f83405d5f6: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/02f74b4f-0781-46a1-bc2e-e89e75f48487: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/66d4f50e-5924-4f0e-a9cd-1f002c51cb8a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/1257c835-91e8-4cf2-b638-66e8e9d4621d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b1379591-410c-479e-aac9-fd2603d49ed9: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/cb62fb09-9917-45aa-9969-9f2e0471ab0a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e5b2cfc2-07ba-4eb8-a78f-262a0cceeb4b: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam.reasonCode[0].coding[0]: The concept '15777000' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"CareTeam/0084020c-4728-40b0-afa9-793790856c49: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/3a11ccd7-45c6-43c6-b87e-79ec0237d431: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b4d52623-a241-4830-ab71-c8c10392b673: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/e011e9cb-77f0-4c3a-a6a8-63d77c204782: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8f51c32e-f4d6-4c90-b988-c54dc91c178a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/9acbde9b-88f3-414e-b5d1-5f233a01103d: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/37a5ceb7-2202-4bb7-b6b6-fc5ae80c4146: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/8dc70c48-2183-4a78-9db7-6296d4a779ce: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/2fcf7474-23ff-44e3-b7f5-dfe8b089a8c1: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d86356cf-30d7-457d-9b3a-eade560b0d3f: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/0dee0a76-7eef-41f5-945f-5c1ea9a51d3a: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/23ddfad1-56de-47d0-9b11-531137fd56e3: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/d14ab6be-920a-468a-b942-f8ff95d80205: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/643a25cf-d7f0-4620-b4ce-272591550e93: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/c3be1075-36a4-465c-a0fc-9c7cea151cc0: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/7db25b2d-961f-4c76-a80b-b0677d96c3e5: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/aa5c2e8e-a483-48ba-9d92-499c7889f297: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[1].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#223366009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam.participant[2].role[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://snomed.info/sct#224891009)","type":"warning"},{"message":"CareTeam/b3097da6-cf95-4060-bb9a-f38fe3e27973: CareTeam: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:15.389-04:00"},{"id":"0b300db4-722b-4fcc-a5be-a267bac63a66","created_at":"2026-05-22T21:05:15.487-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:15.487-04:00"},{"id":"2dece5fe-48e1-40ca-81d7-299494dc29b5","created_at":"2026-05-22T21:05:15.914-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ebb0738e-2fa6-444c-b80b-4c1b2d12a025","direction":"outgoing","index":141974,"result_id":"2dece5fe-48e1-40ca-81d7-299494dc29b5","status":200,"timestamp":"2026-05-22T21:05:15.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"3d86ee67-6c9c-4556-bfd6-2984da319d23","direction":"outgoing","index":141975,"result_id":"2dece5fe-48e1-40ca-81d7-299494dc29b5","status":200,"timestamp":"2026-05-22T21:05:15.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"},{"id":"588e27ae-ea49-49e0-baa3-e8a44b26d247","direction":"outgoing","index":141976,"result_id":"2dece5fe-48e1-40ca-81d7-299494dc29b5","status":200,"timestamp":"2026-05-22T21:05:15.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:15.914-04:00"},{"id":"d7b723ef-e2ce-48c1-8db1-58d01fb48fa5","created_at":"2026-05-22T21:05:15.968-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_care_team","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:15.968-04:00"},{"id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","created_at":"2026-05-22T21:05:18.229-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fe2db488-7bad-4d57-a0df-efb60bb57d68","direction":"outgoing","index":141977,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b70e0d34-fb85-43e9-87b0-988d1f4b5af5","direction":"outgoing","index":141978,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"55b2339a-b938-4b0b-a508-5e3dc8c2374b","direction":"outgoing","index":141979,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"17dc4d26-505e-4fac-9882-4916d0e45318","direction":"outgoing","index":141980,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8adaa43a-f744-48fc-9029-8ac05d0db5c2","direction":"outgoing","index":141981,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"0b8f0eed-4e4e-45e2-8b33-907eea2dbbbd","direction":"outgoing","index":141982,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b736de7-c029-4941-9a25-ee9f128fb7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb240da-e95a-45fa-8e41-4ac4c4a0158d","direction":"outgoing","index":141983,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"fea155a9-6a7b-4e09-a493-ff85f70acbd7","direction":"outgoing","index":141984,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a2c6a2-af34-4878-99a4-861b9ad48f5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c2bf07-11b2-4fa4-a57f-1720eceb39fe","direction":"outgoing","index":141985,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"64f7fced-f070-4007-9abb-e8cb2213082f","direction":"outgoing","index":141986,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fd84ce6-9675-417a-8d81-7a6f3d2efc94","direction":"outgoing","index":141987,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dd99a78-596e-4428-a702-8173ec63a55f","direction":"outgoing","index":141988,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:18.229-04:00"},{"id":"417b5cb5-204e-4806-af21-703fc1194d3f","created_at":"2026-05-22T21:05:20.495-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7515ea90-92dd-43cd-ab2e-e5772efcd7fe","direction":"outgoing","index":141989,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"7a6cb487-bf0a-4879-8e57-6331a1f76731","direction":"outgoing","index":141990,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc4adcaa-9fc7-4c11-aa79-7c05d5974623","direction":"outgoing","index":141991,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"d6743b28-14ea-49bc-8638-9b84e1cdad69","direction":"outgoing","index":141992,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e351070-62fb-4cab-b90f-869d03f29ed4","direction":"outgoing","index":141993,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13b72625-5001-4bda-b8af-fd3254452a81","direction":"outgoing","index":141994,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a53376f5-20cf-43a8-a28d-7cea03db5be3","direction":"outgoing","index":141995,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:20.495-04:00"},{"id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","created_at":"2026-05-22T21:05:22.684-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"7b624b98-b115-46b1-91cc-712c44cf1d48","direction":"outgoing","index":141996,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"7dbb7458-0112-42e1-ab4a-a45c1857fb6d","direction":"outgoing","index":141997,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c5840fe3-e371-4316-a92d-801f51ec26c8","direction":"outgoing","index":141998,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccaf1278-7b7a-4a60-92bb-0f83b24d2e5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"480c788b-9ade-4fce-afc8-6b2947c9c859","direction":"outgoing","index":141999,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c0759d02-85ba-4287-b480-bf9b9312cd01","direction":"outgoing","index":142000,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cff6ea9a-8a17-4278-aa71-eba2e41df0c3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87adc814-45b1-4606-beaa-fc02d4bdefba","direction":"outgoing","index":142001,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"5990a97a-d962-41e6-9ba6-36bb4ec06a92","direction":"outgoing","index":142002,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"ff6a0751-f8c0-4d6c-bfb7-a1913384a837","direction":"outgoing","index":142003,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_recorded_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:22.684-04:00"},{"id":"7bc40e36-582a-44fe-a9a4-e189c59d5a9a","created_at":"2026-05-22T21:05:22.814-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `asserted-date`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_asserted_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:22.814-04:00"},{"id":"cbaef670-08be-479d-8522-2656dac3b209","created_at":"2026-05-22T21:05:24.303-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fba58db2-a383-46e8-9df3-8300854191d2","direction":"outgoing","index":142004,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"fdd033a5-9825-442a-9200-cc187af09ee9","direction":"outgoing","index":142005,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2041af2d-4703-45ae-a519-3aaa5c843922\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d92f61e4-ef25-442c-a731-18cd82956bb8","direction":"outgoing","index":142006,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"61b43448-3645-4292-9690-9214276bdd20","direction":"outgoing","index":142007,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2c4f8755-3892-430e-9dd5-fdb5a4e511ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea2842b4-7e33-4add-9021-922086285161","direction":"outgoing","index":142008,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"75b399aa-4914-473c-8e7f-bacb0a112de5","direction":"outgoing","index":142009,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db86eb51-57a0-4f26-b059-1f565c7221fb","direction":"outgoing","index":142010,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_clinical_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:24.303-04:00"},{"id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","created_at":"2026-05-22T21:05:26.752-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b7ec9f63-18ab-4fa2-9609-5e8266fecf88","direction":"outgoing","index":142011,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7fcd5c4b-1c9d-40c6-bc40-5fa9b6b67910","direction":"outgoing","index":142012,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"16cb25a1-e22b-4e54-8737-d05a1c3b3964","direction":"outgoing","index":142013,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=faa0bf4f-3ee1-427e-8a14-e8ab90035551\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"303d412a-5f02-4ed4-8433-113b82fdef4b","direction":"outgoing","index":142014,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"6f5bba5b-af5f-4c70-afff-0da53be81c2d","direction":"outgoing","index":142015,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9248228f-7f91-4240-8319-a7f579a3a917\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e731a25-7357-4a59-af86-b7bbeaa264e5","direction":"outgoing","index":142016,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"cadb1dca-71ee-4157-a93e-a4b8a98b2a54","direction":"outgoing","index":142017,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"fc4db21d-a586-45a6-950c-c801f8609327","direction":"outgoing","index":142018,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_onset_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:26.752-04:00"},{"id":"80895868-396a-4236-8d9e-661e6a6cfa3e","created_at":"2026-05-22T21:05:27.904-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c1ab64d4-2909-4f7f-8025-4fc0d069fbdd","direction":"outgoing","index":142019,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"475753a0-9ca3-4536-b2e8-d947ce9c226f","direction":"outgoing","index":142020,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"3e6d28b2-0d82-47a6-9195-4d4fd70897da","direction":"outgoing","index":142021,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0734047-36ec-400f-a5ae-545cedb8bfba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5274fdae-123e-4ff7-85c6-606a97bbad32","direction":"outgoing","index":142022,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"bcec1dc4-c8f1-49c8-872c-ccaa3577d544","direction":"outgoing","index":142023,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1513088c-90f3-4e42-8b84-f4cac466c6ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"653ad080-1cdb-4122-bef6-6e3b2357b497","direction":"outgoing","index":142024,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2f1120cb-9f53-4695-9c48-171247557112","direction":"outgoing","index":142025,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"1f703794-6565-4ed4-a562-ad6706e9b395","direction":"outgoing","index":142026,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_abatement_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:27.904-04:00"},{"id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","created_at":"2026-05-22T21:05:29.506-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"da51872a-14f2-44ae-99d6-a1b6444a78d7","direction":"outgoing","index":142027,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"ef49fbe1-4d02-4b5c-bcc5-8e5a25c050bf","direction":"outgoing","index":142028,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3865b2c-5503-4e5c-8a4c-a83b13c542a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56201d15-8f97-4ed2-958b-0d6d0d81ba8c","direction":"outgoing","index":142029,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"7c89696d-f71b-49a1-a631-98cd29e81ae2","direction":"outgoing","index":142030,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28ba7ec7-d03b-4d39-93b7-5494615c3ff6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2d12db0-e60d-4b6b-9b82-d47daddaef28","direction":"outgoing","index":142031,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"11e0df16-a4d6-4556-8cc4-06e795e12c2e","direction":"outgoing","index":142032,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5c0c1a3-e222-4218-86dc-6d287fb44f0e","direction":"outgoing","index":142033,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_clinical_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:29.506-04:00"},{"id":"0d337723-3133-4220-9829-7479b2993534","created_at":"2026-05-22T21:05:29.954-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f2b3b40b-6f8e-475a-b68a-3a44681f602c","direction":"outgoing","index":142034,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5f885a58-cebb-4fe6-9574-4864cc221ebb","direction":"outgoing","index":142035,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5ac13dff-371c-4ef9-b708-1c7354321e04","direction":"outgoing","index":142036,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_encounter_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:29.954-04:00"},{"id":"45d53901-487b-4e91-99d5-4d8c84e242be","created_at":"2026-05-22T21:05:30.375-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ee2f7825-9fff-4c3c-9ce0-53e7bc9a424e","direction":"outgoing","index":142037,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"8cf11ea1-34a5-41cf-ba2b-b283b266e526","direction":"outgoing","index":142038,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"d0bac533-a7ef-46a0-be1d-c3ff350b5b80","direction":"outgoing","index":142039,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:30.375-04:00"},{"id":"5fddc129-6612-46b6-aa9f-17191f0616c9","created_at":"2026-05-22T21:05:30.537-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cfd53e86-85a9-4820-a69c-c1ece7f79b67","direction":"outgoing","index":142040,"result_id":"5fddc129-6612-46b6-aa9f-17191f0616c9","status":200,"timestamp":"2026-05-22T21:05:30.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:30.537-04:00"},{"id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","created_at":"2026-05-22T21:05:32.079-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a6c4bb3a-a2db-462b-8e2d-61fa3fc8bb6d","direction":"outgoing","index":142041,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"85c3895d-8c4f-4391-a52c-76afcbcc937d","direction":"outgoing","index":142042,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b305eddd-e3d3-4c8b-8506-ad3fd2e5e69b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9526251e-96c5-4d8c-b5a0-6736ea6ae915","direction":"outgoing","index":142043,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"129a5927-a020-4c19-81a7-991d0545c07e","direction":"outgoing","index":142044,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=66094963-5763-4b6c-a378-3ced5e07685d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58332013-07b1-4e47-b8e6-814ab382181c","direction":"outgoing","index":142045,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=66094963-5763-4b6c-a378-3ced5e07685d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c78e5564-0bbe-47f2-aee9-3bb0de3e3477","direction":"outgoing","index":142046,"result_id":"6758f21e-b355-49b9-b37a-d8e6724a3b42","status":200,"timestamp":"2026-05-22T21:05:32.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=encounter-diagnosis\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:32.079-04:00"},{"id":"9770e226-ee23-4ca6-ac9e-3cdde8fe4e06","created_at":"2026-05-22T21:05:37.495-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/17680f31-4540-403d-9c0d-8edd7c782bae: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7d637f54-ae84-489f-bf03-30179c37ce13: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/052bd88d-9038-4a64-bd1c-22f776de3a3c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c11cc665-85b4-443f-aab9-930f3043e5f3: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/bf005782-a88f-49a7-aa2b-8e6f7ab84277: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01f38889-f51a-4b9d-97cb-17e5183c29e6: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ba3f467a-6a22-482c-89a5-79f14bbeb570: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e0f6b7da-3944-459b-9ab3-24f8bcb957ca: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c28fb19f-e005-4123-bdc1-2382d8e53213: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/4866099e-5e19-4703-9ac7-97a83fb217f0: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/44f86e46-7872-48dc-955e-bab519e4daab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d247152c-4263-4c2e-8f01-f7e8bd3e4b48: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/abaabcc8-85a2-44ef-b4fd-794589bb7621: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/3c6ea831-ad68-475f-a0f3-a71b9346ead2: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/61fe3daf-e8d7-401f-bf8a-ba5ba8e1a69c: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0a84d3b9-6a07-476d-923c-1db3c91e3f04: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5692d456-ccdb-496b-bbcc-ddea0ba8810a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/82b14cbe-4b6f-4636-b3b3-f68c7af98d75: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/937453d6-f386-4733-a958-94b2ba17e517: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cd62d0be-1dad-452d-bb1f-752cd203c1ff: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5031088e-e0bd-403e-913f-016089a27aa1: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d4608775-df8e-4791-9efe-3b2ead565c2b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/c7a4b448-e11c-477d-8af6-acce7fcb9496: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/7fa3ef09-30f7-4f27-b65a-3b8b0e790d9e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/036acec3-e479-4adb-8ddb-ebdfc9b8008e: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/626b0cbd-0e63-40af-abea-7ac607584f7b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/8aca5063-984a-4fcd-8e1b-5bb284602300: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbd645c6-d875-4f53-bc04-15dc069b0eb7: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/2512e4c3-732e-49b5-b387-001ba0a04163: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/cdc953a0-e51b-4ddf-b21f-42975fd8215b: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/b1106a3e-cbbe-493f-a02a-02c51713a3bb: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/65bcd71c-2ff8-49ac-ac78-08342556cb7d: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/fbdf78ff-e1db-43ec-afb8-d0fddcd01283: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/d78ca757-6300-437f-8162-5f695c7b4a9a: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/01670ee3-e26e-4318-b0ee-3fa9edfcc510: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/5fbe8abb-56ff-4c26-86e4-2a6b52337f77: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/dbafc0a1-a91b-444f-ad20-2beb202a10ab: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/e1779151-42e9-4887-96d5-ba857e79500f: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition'","type":"info"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/ac059b8d-2c50-41e6-9c55-9fa4e4d72756: Condition.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:37.495-04:00"},{"id":"e697b263-14ec-4313-94c4-6149976b860a","created_at":"2026-05-22T21:05:37.654-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:37.654-04:00"},{"id":"7782c11c-1f8a-4ad8-8e19-68621148bdf5","created_at":"2026-05-22T21:05:38.763-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"60749a98-48b7-47d8-af96-64b69389bad2","direction":"outgoing","index":142047,"result_id":"7782c11c-1f8a-4ad8-8e19-68621148bdf5","status":200,"timestamp":"2026-05-22T21:05:38.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:38.763-04:00"},{"id":"9efffdce-1fdd-4807-ba13-5eb37ed14798","created_at":"2026-05-22T21:05:38.792-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:38.792-04:00"},{"id":"6c08e44d-9140-42a1-8189-60948d29be22","created_at":"2026-05-22T21:05:39.843-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c67a7836-6852-44c0-8dfc-5c09de709ac1","direction":"outgoing","index":142048,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"bc9a20af-3297-43ad-8c06-dc84ed6c426a","direction":"outgoing","index":142049,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"de9393f8-ff98-4e55-a055-9fb31c57b240","direction":"outgoing","index":142050,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"ef1504c6-7a0f-403b-b26a-4097551f8e1c","direction":"outgoing","index":142051,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/_search","verb":"post"},{"id":"8a3c808a-8d32-41b3-997f-be8b622bc978","direction":"outgoing","index":142052,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"2021775a-acf4-4690-ac04-1a3c8d93f742","direction":"outgoing","index":142053,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"a0960115-fa0f-49d8-91b7-07716ac1b274","direction":"outgoing","index":142054,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a1678bf1-b514-43cd-8c27-754c47de40d7","direction":"outgoing","index":142055,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"0e25f673-8444-4a42-abda-c0c3d674cb86","direction":"outgoing","index":142056,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:39.843-04:00"},{"id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","created_at":"2026-05-22T21:05:40.943-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b53bd588-39fd-4789-9781-1ddd3f5fcfe1","direction":"outgoing","index":142057,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"0de289ae-a788-4b6f-bc26-bead5f1275d3","direction":"outgoing","index":142058,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd21f4c4-8282-4ee6-b5ba-5204127a8519","direction":"outgoing","index":142059,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"804a5d89-82a8-48d2-a2cd-abeb6f33fc74","direction":"outgoing","index":142060,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ff5046f-506a-4fc9-be87-9c6a9965e799","direction":"outgoing","index":142061,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a97b7f98-6b90-427a-b11b-e688d724c1f5","direction":"outgoing","index":142062,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9a68b82c-6478-4090-9b80-df4a404bc9de","direction":"outgoing","index":142063,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:40.943-04:00"},{"id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","created_at":"2026-05-22T21:05:43.456-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"dbd1769a-9272-450a-b241-3a2d7c294fd7","direction":"outgoing","index":142064,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"b7c39ab5-de0e-449c-846a-7e0da463479d","direction":"outgoing","index":142065,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"51aa1216-6cc4-493f-b52e-b43a93038b12","direction":"outgoing","index":142066,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"0dd8b0e3-b549-4385-9926-9b93c545fbf8","direction":"outgoing","index":142067,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"aad67e2e-3f63-420b-9226-57cce0916688","direction":"outgoing","index":142068,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50861fdb-d10c-488e-8cd0-73562297d4b5","direction":"outgoing","index":142069,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"631709b7-e254-4aeb-a94a-35b9d77b2c2c","direction":"outgoing","index":142070,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"c64427b3-d770-4590-8171-50bec2d5bd11","direction":"outgoing","index":142071,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fbdd4f6-d801-46e9-82b7-651efd633353","direction":"outgoing","index":142072,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_recorded_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:43.456-04:00"},{"id":"1ff0fd9d-c0dc-479c-a530-745021831379","created_at":"2026-05-22T21:05:44.195-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e2a3a3b1-3885-4a39-970f-9c3a3c8be983","direction":"outgoing","index":142073,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"f9ff5f70-c04b-48a1-87db-58acaba3ab0b","direction":"outgoing","index":142074,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"37eacfac-1fe8-4b9e-a4cc-93d8cc2afd45","direction":"outgoing","index":142075,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"7033828d-b9f3-4179-9908-50b7d19fcaf4","direction":"outgoing","index":142076,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e4a068a4-d054-4260-9404-c700536f8db4","direction":"outgoing","index":142077,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_asserted_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:44.195-04:00"},{"id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","created_at":"2026-05-22T21:05:44.498-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"38738fde-bc49-4774-bbb0-125915897b27","direction":"outgoing","index":142078,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"318c2b8d-e45b-4cce-9b43-68bc3efa62c1","direction":"outgoing","index":142079,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_clinical_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:44.498-04:00"},{"id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","created_at":"2026-05-22T21:05:47.019-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c10696c6-0320-418a-87c7-5fb4594469f8","direction":"outgoing","index":142080,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b15ae07-9f72-441c-93e1-25ffa4997d64","direction":"outgoing","index":142081,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"03eb08c0-5c8c-4484-aa2d-1dde8be4426f","direction":"outgoing","index":142082,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"650a79dd-a6e9-4adb-9f33-704f2cda7d53","direction":"outgoing","index":142083,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"364cd213-484a-40f7-a160-65b91cb9738a","direction":"outgoing","index":142084,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26f93c4b-7bb0-44ff-bba3-6787dff3b3ae","direction":"outgoing","index":142085,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f8785f1-17dd-4860-92e9-d5e6f603d4e1","direction":"outgoing","index":142086,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"68c46253-9124-472f-bd2f-a36f9ca85dba","direction":"outgoing","index":142087,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f6e0ff7-b283-4b75-b91d-2b6f2bd6e796","direction":"outgoing","index":142088,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_onset_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:47.019-04:00"},{"id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","created_at":"2026-05-22T21:05:49.189-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ea4f0c92-5007-4344-a6b6-7f927ce3dc1a","direction":"outgoing","index":142089,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"a1827f7c-2de1-4caf-93c0-bdaa7539398d","direction":"outgoing","index":142090,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"6598d5d8-b497-4a18-bf5d-59ec0a3001c7","direction":"outgoing","index":142091,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"182697c0-48ea-4e54-96f1-d8e1dcd4d0e1","direction":"outgoing","index":142092,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"4790c427-0a27-46f1-8cc2-1160962ab1f4","direction":"outgoing","index":142093,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0f48f57-3bfb-4246-8d4a-e2c725c58065\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d1b2b53b-a5df-41aa-9207-2ca9228ac28e","direction":"outgoing","index":142094,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"50bd9b11-60cf-4ee3-8fec-d7fa507be805","direction":"outgoing","index":142095,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6641717-2448-4c18-a234-10a767654283\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_abatement_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:49.189-04:00"},{"id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","created_at":"2026-05-22T21:05:50.641-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ff3fe17f-af15-4200-b9cc-e74233f96f3f","direction":"outgoing","index":142096,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"7796aa10-0a89-4034-8acc-32a26751c53a","direction":"outgoing","index":142097,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5092c47-92cf-4d99-a0de-e1d4e4975c81","direction":"outgoing","index":142098,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b55e4778-6cee-4aa0-b223-36cc7537a8b6","direction":"outgoing","index":142099,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"547ae386-6b4c-4cc6-8cfb-3ecaee996c86","direction":"outgoing","index":142100,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54b0fd4c-0919-4945-8326-5b3d50d2486d","direction":"outgoing","index":142101,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_clinical_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:50.641-04:00"},{"id":"61b6b6cf-e56c-4dbf-a429-afea7153ab8c","created_at":"2026-05-22T21:05:50.738-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `category`, `encounter`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_encounter_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:50.738-04:00"},{"id":"a683ccda-d09c-41dd-a899-281b5283d8c8","created_at":"2026-05-22T21:05:50.973-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"70f26b34-c502-47a7-8e61-3b2019c3d88e","direction":"outgoing","index":142102,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"374abb8f-73ff-45f7-aaf0-e05aa8a61863","direction":"outgoing","index":142103,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:50.973-04:00"},{"id":"273c5709-ab8d-4806-a338-18817411633e","created_at":"2026-05-22T21:05:51.114-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"25cac251-12ae-4e4b-b33f-25fd96001b8a","direction":"outgoing","index":142104,"result_id":"273c5709-ab8d-4806-a338-18817411633e","status":200,"timestamp":"2026-05-22T21:05:51.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:51.114-04:00"},{"id":"08752506-be84-488b-a116-ec56763520a8","created_at":"2026-05-22T21:05:51.951-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2e247227-0a90-4a5c-89cb-70b8ea1ce416","direction":"outgoing","index":142105,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:51.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=85","verb":"get"},{"id":"c521636d-02b8-44de-a8cf-ee4b75b72ead","direction":"outgoing","index":142106,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:51.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=85","verb":"get"},{"id":"345632a6-1172-4ea1-9b24-7ca93569c0b3","direction":"outgoing","index":142107,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:51.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=355","verb":"get"},{"id":"04c62971-4deb-465f-9a61-5c72e3bd3330","direction":"outgoing","index":142108,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:51.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=355","verb":"get"},{"id":"ab6460b7-87b1-4725-9030-c7cf4d6de710","direction":"outgoing","index":142109,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:52.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=problem-list-item\u0026patient=907","verb":"get"},{"id":"cec776b3-0f34-4dbf-bd27-44efa42d55a0","direction":"outgoing","index":142110,"result_id":"08752506-be84-488b-a116-ec56763520a8","status":200,"timestamp":"2026-05-22T21:05:52.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?_revinclude=Provenance:target\u0026category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:51.951-04:00"},{"id":"4526841b-ac87-42c2-af3f-efcf6069e8f4","created_at":"2026-05-22T21:05:52.942-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/condition-category|0.5.0","type":"info"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition.category[1]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/us-core-tags#sdoh, http://hl7.org/fhir/us/core/CodeSystem/us-core-category#sdoh)","type":"warning"},{"message":"Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition.category[0]: None of the codings provided are in the value set 'Condition Category Codes' (http://hl7.org/fhir/ValueSet/condition-category|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/us/core/CodeSystem/condition-category#health-concern)","type":"warning"},{"message":"Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d: Condition: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:52.942-04:00"},{"id":"1eeb04a1-12f8-488d-a6d3-81aad3ee7a3d","created_at":"2026-05-22T21:05:52.958-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:52.958-04:00"},{"id":"e5f544ca-b47e-4c3a-b88b-86d5617b5e8d","created_at":"2026-05-22T21:05:52.963-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:52.963-04:00"},{"id":"05f543c1-0914-4c31-aba4-20850c65dc07","created_at":"2026-05-22T21:05:52.964-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:52.964-04:00"},{"id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","created_at":"2026-05-22T21:05:53.546-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"647db7e9-5851-462d-b8c1-16478429b582","direction":"outgoing","index":142111,"result_id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","status":200,"timestamp":"2026-05-22T21:05:53.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=85","verb":"get"},{"id":"c6f5a365-5904-4e8a-b65b-359ab2ecba93","direction":"outgoing","index":142112,"result_id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","status":200,"timestamp":"2026-05-22T21:05:53.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/_search","verb":"post"},{"id":"f86b176f-7aad-493d-8449-e44683694a80","direction":"outgoing","index":142113,"result_id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","status":200,"timestamp":"2026-05-22T21:05:53.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=Patient/85","verb":"get"},{"id":"a8b1106a-bce5-470c-b32c-6cb9c2bf84fc","direction":"outgoing","index":142114,"result_id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","status":200,"timestamp":"2026-05-22T21:05:53.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=355","verb":"get"},{"id":"d62adb37-925c-41fe-a31b-569460fc153d","direction":"outgoing","index":142115,"result_id":"c5de1736-6af7-413e-ae15-760a7ffeca9f","status":200,"timestamp":"2026-05-22T21:05:53.609-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:53.546-04:00"},{"id":"24b03fb8-f347-403b-aaa3-6b6ecc8dc272","created_at":"2026-05-22T21:05:53.738-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4c350472-feb8-44a1-b4e3-2b2ad8b0564b","direction":"outgoing","index":142116,"result_id":"24b03fb8-f347-403b-aaa3-6b6ecc8dc272","status":200,"timestamp":"2026-05-22T21:05:53.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:53.738-04:00"},{"id":"21adeeb5-509c-4835-bd09-960c24336738","created_at":"2026-05-22T21:05:54.131-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3b0a6520-a29e-49bf-9215-4753cf3e9c66","direction":"outgoing","index":142117,"result_id":"21adeeb5-509c-4835-bd09-960c24336738","status":200,"timestamp":"2026-05-22T21:05:54.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"e1fdec40-613d-44e8-a28f-61323d36f768","direction":"outgoing","index":142118,"result_id":"21adeeb5-509c-4835-bd09-960c24336738","status":200,"timestamp":"2026-05-22T21:05:54.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"911fc61b-c4ae-4a04-8825-4113b28bbc58","direction":"outgoing","index":142119,"result_id":"21adeeb5-509c-4835-bd09-960c24336738","status":200,"timestamp":"2026-05-22T21:05:54.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Coverage?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:54.131-04:00"},{"id":"09d026a1-39b5-4f5e-8aae-e9ae5a34afba","created_at":"2026-05-22T21:05:56.647-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.identifier[0].type: None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v2-0203#MB)","type":"warning"},{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage.type.coding[0].system: A definition for CodeSystem 'https://nahdo.org/sopt' could not be found, so the code cannot be validated","type":"warning"},{"message":"Coverage/e947dddf-6246-4b0b-9fe4-1a31256e7845: Coverage: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:56.647-04:00"},{"id":"3cb8a5c9-5c4a-43e1-a9d9-dbafd96d48ff","created_at":"2026-05-22T21:05:56.658-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:56.658-04:00"},{"id":"f9ce6eab-d643-4554-9a29-f83b1b2a4d90","created_at":"2026-05-22T21:05:56.805-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a4707491-a4fc-4a9f-af8c-0cf447d8ef59","direction":"outgoing","index":142120,"result_id":"f9ce6eab-d643-4554-9a29-f83b1b2a4d90","status":200,"timestamp":"2026-05-22T21:05:56.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:56.805-04:00"},{"id":"d952749a-5531-4e77-89c4-a3051461797a","created_at":"2026-05-22T21:05:56.826-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_coverage","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:56.826-04:00"},{"id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","created_at":"2026-05-22T21:05:57.402-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"35e1370a-ec02-4455-b806-107de5796ac5","direction":"outgoing","index":142121,"result_id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","status":200,"timestamp":"2026-05-22T21:05:57.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=85","verb":"get"},{"id":"a61e4f06-8878-4c5d-98ab-fe626e478bb9","direction":"outgoing","index":142122,"result_id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","status":200,"timestamp":"2026-05-22T21:05:57.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355","verb":"get"},{"id":"64f991ef-7c50-4e41-b2f2-48d7f0f9ab3f","direction":"outgoing","index":142123,"result_id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","status":200,"timestamp":"2026-05-22T21:05:57.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/_search","verb":"post"},{"id":"0600e067-189b-4b25-836f-f357e57053dd","direction":"outgoing","index":142124,"result_id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","status":200,"timestamp":"2026-05-22T21:05:57.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=Patient/355","verb":"get"},{"id":"32d19513-ea75-478a-b4e7-3d786f6cd3d0","direction":"outgoing","index":142125,"result_id":"8a9f0488-0b9a-4905-bdf5-b1564d261370","status":200,"timestamp":"2026-05-22T21:05:57.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:57.402-04:00"},{"id":"0dc26d2c-55a8-49fb-81d1-3db7e917c6b4","created_at":"2026-05-22T21:05:57.737-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"9350c2d0-4483-4027-b93e-196a2c6445bd","direction":"outgoing","index":142126,"result_id":"0dc26d2c-55a8-49fb-81d1-3db7e917c6b4","status":200,"timestamp":"2026-05-22T21:05:57.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=72506001","verb":"get"},{"id":"0813ca31-6cce-4a25-816b-88e22df17a3a","direction":"outgoing","index":142127,"result_id":"0dc26d2c-55a8-49fb-81d1-3db7e917c6b4","status":200,"timestamp":"2026-05-22T21:05:57.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026type=http://snomed.info/sct%7C72506001","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_type_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:57.737-04:00"},{"id":"3f75b63b-c1e2-45ab-9932-82cc717ce022","created_at":"2026-05-22T21:05:58.013-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","value":null,"type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"96feb5aa-6511-4e24-a5b6-d10ef0dabb00","direction":"outgoing","index":142128,"result_id":"3f75b63b-c1e2-45ab-9932-82cc717ce022","status":200,"timestamp":"2026-05-22T21:05:58.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active","verb":"get"},{"id":"fe164d60-aad7-450b-a7fa-3823e5148ae2","direction":"outgoing","index":142129,"result_id":"3f75b63b-c1e2-45ab-9932-82cc717ce022","status":200,"timestamp":"2026-05-22T21:05:58.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?patient=355\u0026status=active,inactive,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.013-04:00"},{"id":"a87bb4f2-fa9d-4f97-9dca-8c633dfb973c","created_at":"2026-05-22T21:05:58.153-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cdd32282-b58b-472f-bd4e-907959e7e34c","direction":"outgoing","index":142130,"result_id":"a87bb4f2-fa9d-4f97-9dca-8c633dfb973c","status":200,"timestamp":"2026-05-22T21:05:58.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.153-04:00"},{"id":"e0b90d8e-4096-4081-bfc1-c88b7237c4b9","created_at":"2026-05-22T21:05:58.564-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"92d4b847-3993-40fa-92b4-f532a63d15ac","direction":"outgoing","index":142131,"result_id":"e0b90d8e-4096-4081-bfc1-c88b7237c4b9","status":200,"timestamp":"2026-05-22T21:05:58.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"18982b41-ebc5-4752-843e-99a17c79436e","direction":"outgoing","index":142132,"result_id":"e0b90d8e-4096-4081-bfc1-c88b7237c4b9","status":200,"timestamp":"2026-05-22T21:05:58.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"508eb265-d0f3-4cef-a048-c8b81ca83011","direction":"outgoing","index":142133,"result_id":"e0b90d8e-4096-4081-bfc1-c88b7237c4b9","status":200,"timestamp":"2026-05-22T21:05:58.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Device?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.564-04:00"},{"id":"09280fc6-4d0c-4b05-842d-49180b260b28","created_at":"2026-05-22T21:05:58.824-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Device/2f8337e5-ab2e-4dea-8882-79b6ef79e673: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Device/68143928-c7b4-4a7e-93d3-a54ee06784d4: Device: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.824-04:00"},{"id":"1bc0f4b2-7559-4201-b7b0-eaf21fa4471f","created_at":"2026-05-22T21:05:58.835-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.835-04:00"},{"id":"ad81309c-c378-4188-b8fb-d52edc3f36d9","created_at":"2026-05-22T21:05:58.838-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.838-04:00"},{"id":"0084dff0-c78a-4047-b45f-ee527a375b9f","created_at":"2026-05-22T21:05:58.840-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_device","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:05:58.840-04:00"},{"id":"6c258936-4710-4136-9878-a3aa927b7149","created_at":"2026-05-22T21:06:00.592-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bcd1323e-fbe3-4b87-9626-39959dcfc3f2","direction":"outgoing","index":142134,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=85","verb":"get"},{"id":"363437cf-ab13-47b2-bb37-ba85387b8856","direction":"outgoing","index":142135,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"cb9f15f9-7f6a-41d7-86f3-9f9fb0ba929b","direction":"outgoing","index":142136,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=Patient/85","verb":"get"},{"id":"b527c322-9aab-479e-8193-d276b762ae1d","direction":"outgoing","index":142137,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026patient=85","verb":"get"},{"id":"fd19a4c0-79f7-438d-b27f-dca5f9a0c14a","direction":"outgoing","index":142138,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=85","verb":"get"},{"id":"8675c108-b757-4170-a9d0-2bc5ed65c36c","direction":"outgoing","index":142139,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=85","verb":"get"},{"id":"a9dca034-6eb6-438a-93a9-e2f648f389da","direction":"outgoing","index":142140,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=355","verb":"get"},{"id":"5a595ec1-7cc8-4031-8511-b7458030569c","direction":"outgoing","index":142141,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=355","verb":"get"},{"id":"552f743d-de18-49be-9781-cc2ba0dab297","direction":"outgoing","index":142142,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=355","verb":"get"},{"id":"33dffc07-3444-4dc4-9319-29366014f0d8","direction":"outgoing","index":142143,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026patient=907","verb":"get"},{"id":"5dbb6876-5d48-4e73-8fb4-55868947e4af","direction":"outgoing","index":142144,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29708-2\u0026patient=907","verb":"get"},{"id":"02629701-4900-428b-9e46-144ef1cd5994","direction":"outgoing","index":142145,"result_id":"6c258936-4710-4136-9878-a3aa927b7149","status":200,"timestamp":"2026-05-22T21:06:00.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:00.592-04:00"},{"id":"559bb79c-661a-41b1-acb0-035e21fae532","created_at":"2026-05-22T21:06:02.651-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f5a3f828-de05-4f4e-be7f-910c673e403c","direction":"outgoing","index":142146,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"d213c704-8b4b-430f-ab6e-9bc10b2664c1","direction":"outgoing","index":142147,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94ef1bd7-eb7c-4c54-9e65-342c87cf0162\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a23d8f1a-3f6c-46d1-9b0c-40ff0029a1cb","direction":"outgoing","index":142148,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"f19524ae-e610-454e-8a80-cf8f908c67bf","direction":"outgoing","index":142149,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc29cab-3987-4e45-b000-8a787965066a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d6247d2-c09e-42dd-bed5-cb36d2e6e0f0","direction":"outgoing","index":142150,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc29cab-3987-4e45-b000-8a787965066a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6cc10d1d-bac6-4697-998d-429d46dfdb27","direction":"outgoing","index":142151,"result_id":"559bb79c-661a-41b1-acb0-035e21fae532","status":200,"timestamp":"2026-05-22T21:06:02.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:02.651-04:00"},{"id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","created_at":"2026-05-22T21:06:03.649-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"74f8c72e-77c7-4620-93c1-47710c0f3b8e","direction":"outgoing","index":142152,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"89ceae9a-7b97-4757-96fd-83329b3815b9","direction":"outgoing","index":142153,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"dd1a4cb9-9736-4d2b-9818-f1a343ffd481","direction":"outgoing","index":142154,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8bd56aff-c3b4-4b32-9a85-60d08dedaa9b","direction":"outgoing","index":142155,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c4d1d5ef-dcf4-4066-87e5-3a5607f49514","direction":"outgoing","index":142156,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d648506e-1faf-4a21-8894-f36db6cc3c29","direction":"outgoing","index":142157,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"876a0e26-2d28-4b76-ae85-07f500476f59","direction":"outgoing","index":142158,"result_id":"ca922bf4-ed1a-49c6-9228-4ae427677c94","status":200,"timestamp":"2026-05-22T21:06:03.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:03.649-04:00"},{"id":"303e8970-36d1-4251-86f2-ce9134258b23","created_at":"2026-05-22T21:06:06.482-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d109f1ef-1fb5-45d1-954a-d59fdae0d95d","direction":"outgoing","index":142159,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=final","verb":"get"},{"id":"3e4e4409-eb47-49ac-a1ad-ccb127633cc1","direction":"outgoing","index":142160,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5880330-9e1a-4304-8241-b7dbb227f3f2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46195c5b-81d8-4e83-a1fb-fd12bd349d8a","direction":"outgoing","index":142161,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"9a8dcfa8-fd57-4ae4-a0a0-834662d4b109","direction":"outgoing","index":142162,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=18ceb79a-7e2b-4f20-8475-c46b6d91c1e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc5209ff-7018-4832-8aaa-28e4b8bdac0a","direction":"outgoing","index":142163,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=18ceb79a-7e2b-4f20-8475-c46b6d91c1e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99bf11f6-3e62-4631-8886-5a3e8e2fa5a6","direction":"outgoing","index":142164,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1185b077-27f4-488c-b305-d858b85b89d4","direction":"outgoing","index":142165,"result_id":"303e8970-36d1-4251-86f2-ce9134258b23","status":200,"timestamp":"2026-05-22T21:06:06.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ba9a0e8-ef85-41c5-b890-e99455608ce1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:06.482-04:00"},{"id":"61c25911-733d-4649-85d3-5a342de4af81","created_at":"2026-05-22T21:06:07.594-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"17027e93-b181-427e-83a5-e1815d50c4c5","direction":"outgoing","index":142166,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"68091fec-4e4e-4b07-a4d6-052a571d1875","direction":"outgoing","index":142167,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"87cb0f87-6b53-4ea6-9090-97f3413aac46","direction":"outgoing","index":142168,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"b14b6379-ec92-4c8d-8be6-db26384d39d0","direction":"outgoing","index":142169,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"56fb90d6-9360-47b8-8b47-7e3b80b28290","direction":"outgoing","index":142170,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c49c0d8e-d611-4405-93ba-b5d333035a48","direction":"outgoing","index":142171,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://loinc.org%7CLP29684-5\u0026date=1940-09-06T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"986ce651-011d-4213-9a72-9d6c681de199","direction":"outgoing","index":142172,"result_id":"61c25911-733d-4649-85d3-5a342de4af81","status":200,"timestamp":"2026-05-22T21:06:07.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LP29684-5\u0026date=1974-01-24T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:07.594-04:00"},{"id":"45c29094-cd5e-4b18-b098-84717e6cf457","created_at":"2026-05-22T21:06:08.084-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"13c421f0-350a-434e-85f3-a05800e17d29","direction":"outgoing","index":142173,"result_id":"45c29094-cd5e-4b18-b098-84717e6cf457","status":200,"timestamp":"2026-05-22T21:06:08.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=11506-3\u0026patient=85","verb":"get"},{"id":"3b70337d-e702-4b89-8fa5-d619e7450885","direction":"outgoing","index":142174,"result_id":"45c29094-cd5e-4b18-b098-84717e6cf457","status":200,"timestamp":"2026-05-22T21:06:08.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C11506-3\u0026patient=85","verb":"get"},{"id":"4a1611bf-6841-4249-ad00-c713dd91deb7","direction":"outgoing","index":142175,"result_id":"45c29094-cd5e-4b18-b098-84717e6cf457","status":200,"timestamp":"2026-05-22T21:06:08.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=34117-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:08.084-04:00"},{"id":"f7db156e-7bb7-4f21-85e7-5d97a617341c","created_at":"2026-05-22T21:06:08.243-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e163cc81-4ce5-46db-8fd4-7edb251b7d26","direction":"outgoing","index":142176,"result_id":"f7db156e-7bb7-4f21-85e7-5d97a617341c","status":200,"timestamp":"2026-05-22T21:06:08.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:08.243-04:00"},{"id":"9843a153-1487-43ee-9c65-b9ee61a77771","created_at":"2026-05-22T21:06:09.829-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9bd29309-1b91-4e12-985d-196b3a69a2e1","direction":"outgoing","index":142177,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=85","verb":"get"},{"id":"d7f675b4-3400-4bd2-857b-2ec91c5e628a","direction":"outgoing","index":142178,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.857-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=85","verb":"get"},{"id":"734689d8-d437-44e1-968f-300031ac9aed","direction":"outgoing","index":142179,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=85","verb":"get"},{"id":"7a81ccf0-15d7-4945-ba04-9dbc2be95ac7","direction":"outgoing","index":142180,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=355","verb":"get"},{"id":"45cdf13b-ac04-42e7-ad99-1a28b4426907","direction":"outgoing","index":142181,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=355","verb":"get"},{"id":"cf36cefe-c579-47d1-a20c-6a6cf2bf6a02","direction":"outgoing","index":142182,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=355","verb":"get"},{"id":"af0eddb3-057a-4355-8f79-2f7e04de7663","direction":"outgoing","index":142183,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29684-5\u0026patient=907","verb":"get"},{"id":"0da29ece-98b1-4460-9688-232cf2e89244","direction":"outgoing","index":142184,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP29708-2\u0026patient=907","verb":"get"},{"id":"ebb92fbd-9f42-40ad-a7a4-41b081413230","direction":"outgoing","index":142185,"result_id":"9843a153-1487-43ee-9c65-b9ee61a77771","status":200,"timestamp":"2026-05-22T21:06:09.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LP7839-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:09.829-04:00"},{"id":"f3bd8ddb-b653-43d3-90ff-ea82a66086f5","created_at":"2026-05-22T21:06:15.428-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/820cd582-e79f-4fa3-bb8c-11f18116a604: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8a388998-bf8f-4ea3-8936-75435f65fbc7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ded966f4-6756-428b-8923-712a724490f1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/0ea54944-19f8-4c7f-812c-5ef14a00438a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/09edf463-b552-45bd-b847-e3ab7dc8d520: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/e5c92ffc-def6-4ed2-843d-2c627f18c573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/ad5a736d-2365-42a0-a879-90058a68e18e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cf01719-6a1d-4055-a942-15a8856b00fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/06874bdf-780c-41f4-9e30-792d1106ae93: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98a7c46b-a871-4105-8094-b51cf7f6f5df: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7cfe19dc-597d-45ba-bbbf-ce6411d5605c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/4f5fdf5d-e07d-4b78-9abf-e7423f8f98c4: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/98c84ee0-20a5-4f77-9ed0-6e74fcb24941: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9bf20d5f-3808-4b34-863e-19720954108e: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/9f77294f-7666-45cd-999f-2e27d50e88f3: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5be1984a-87d2-401d-8a11-17add1d9cac7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/34aefc54-2a97-4d40-be04-a0c66c0a904b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/b858a57e-97aa-42d3-8638-26105830f59a: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/84887282-5a23-4ec3-a8f7-68511392beb7: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7862c4c4-3709-4c63-a5b1-1aea7a7b6d42: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/6515e52e-1b77-42bb-a947-9c07339ce5e1: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a355c7de-e947-4c76-9fc9-995d08f20603: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a959195e-f2e3-4694-8214-d6836dc5a573: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/f16400ec-fe1d-4d89-9779-61269f26c201: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8eb6e7f9-0ed7-42cc-a391-5073b70cb89b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/01881c80-a9f9-4661-b216-085c958716c6: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/d823c390-2ae8-4f55-b79b-2c9bbb27fd59: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/80114f8b-5cee-4951-9d17-1dc92f5c85da: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/a0d17b10-1bd0-42f1-9b19-a700a2de04bf: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/7f0b4eeb-3e6d-44fd-b36a-8d2a4ac0e52b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/52a8628d-14ac-4f20-926c-852cca35ea0d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/62802bb8-1920-4458-a242-eacd55b89664: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/23fd0ecb-5920-4444-8ca8-60349bf1c75d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/bf554e58-b58f-4127-85af-e6fb355522fe: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/5b2fc25c-0b10-4891-b212-e76f9e306a9c: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/904d7f75-761c-4d99-82c5-9248d1228706: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/647b691e-02d5-4a33-9cd9-16feb0ea223d: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/68530092-8d36-4b2d-b9ed-cffc6b45fb45: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/8cc833cf-e2bb-4776-853f-5920b3901b3b: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/56a07934-d6de-4191-8b36-816a08bb2cdc: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:15.428-04:00"},{"id":"f2562b15-0a5d-436e-8c98-159e1470759a","created_at":"2026-05-22T21:06:15.492-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:15.492-04:00"},{"id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","created_at":"2026-05-22T21:06:17.128-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83e3ed86-79f6-4198-bc9a-775fb035d9e0","direction":"outgoing","index":142186,"result_id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","status":200,"timestamp":"2026-05-22T21:06:17.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082","verb":"get"},{"id":"dfb9846a-8e82-44ab-86c6-b63c09979515","direction":"outgoing","index":142187,"result_id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","status":200,"timestamp":"2026-05-22T21:06:17.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"5b721f5f-de72-418a-821b-bf7bea84a3fe","direction":"outgoing","index":142188,"result_id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","status":200,"timestamp":"2026-05-22T21:06:17.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/b8051c38-c87b-4a15-9c4b-5aa50e4336cb","verb":"get"},{"id":"fe095c30-de47-4164-8767-3df3522f53b0","direction":"outgoing","index":142189,"result_id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","status":200,"timestamp":"2026-05-22T21:06:17.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"},{"id":"a487e5af-9344-406e-a433-0d599dc698c8","direction":"outgoing","index":142190,"result_id":"8986d053-daaf-44bb-b5b9-aa7954d90a45","status":200,"timestamp":"2026-05-22T21:06:17.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:17.128-04:00"},{"id":"c847d822-ed7a-477c-9fe9-dcba9299a4cc","created_at":"2026-05-22T21:06:17.239-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:17.239-04:00"},{"id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","created_at":"2026-05-22T21:06:17.998-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"56193097-c63e-43f4-b652-91fc2bca4335","direction":"outgoing","index":142191,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.006-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=85","verb":"get"},{"id":"f2104c13-4c41-40e0-9cf5-684af59c4c82","direction":"outgoing","index":142192,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=355","verb":"get"},{"id":"a2f71eb4-f88b-44da-9b28-c4b0b1d54d38","direction":"outgoing","index":142193,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/_search","verb":"post"},{"id":"8bcb3e42-3e04-4365-8aa9-986b4f4bb81c","direction":"outgoing","index":142194,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=Patient/355","verb":"get"},{"id":"20f7b343-20a6-4818-aa5f-6008fcc1d79b","direction":"outgoing","index":142195,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026patient=355","verb":"get"},{"id":"9ba08513-973e-4b47-8277-5598ca7c3e14","direction":"outgoing","index":142196,"result_id":"a9755eaf-645c-4bf1-9f86-dc0fe61c7073","status":200,"timestamp":"2026-05-22T21:06:18.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:17.998-04:00"},{"id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","created_at":"2026-05-22T21:06:19.027-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e131cc6a-8f92-4bee-8fbf-8ae2b34447e4","direction":"outgoing","index":142197,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"edbbc0cf-86fc-45cc-b770-c7ee2f04788e","direction":"outgoing","index":142198,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94ef1bd7-eb7c-4c54-9e65-342c87cf0162\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eaac0468-3d9e-4ee3-a0b9-96965271bda3","direction":"outgoing","index":142199,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"1ca7c692-7086-450d-8b96-9ca7708b018b","direction":"outgoing","index":142200,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc29cab-3987-4e45-b000-8a787965066a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae90bfdf-d18b-4818-8d46-b8a769e9186b","direction":"outgoing","index":142201,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc29cab-3987-4e45-b000-8a787965066a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"640481f3-2be6-49d9-949e-0bc624f064ee","direction":"outgoing","index":142202,"result_id":"54cd8ef6-331f-4fe6-9398-f3bce1540633","status":200,"timestamp":"2026-05-22T21:06:19.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:19.027-04:00"},{"id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","created_at":"2026-05-22T21:06:19.920-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c8e1e5fc-fa47-473c-827f-3b11b82c2878","direction":"outgoing","index":142203,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b4c1bb30-1d9c-41c8-bf39-8cbfa0cda782","direction":"outgoing","index":142204,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c4790c7c-886d-4e6a-a001-7ff591d85bcf","direction":"outgoing","index":142205,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"de66100b-503a-4d5d-ad5b-120dab507c14","direction":"outgoing","index":142206,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b4f89e72-3b0c-4c36-ab18-d923b875ac81","direction":"outgoing","index":142207,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54d7983d-3e81-497e-8cf0-57700e65921d","direction":"outgoing","index":142208,"result_id":"380bb323-8b44-449c-9738-f12ae1a7a9ec","status":200,"timestamp":"2026-05-22T21:06:19.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:19.920-04:00"},{"id":"d3b6906c-251c-4328-b488-53cd31793e42","created_at":"2026-05-22T21:06:21.413-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"34772959-37b4-4fd8-a6bd-1ea3f5de0c9c","direction":"outgoing","index":142209,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=final","verb":"get"},{"id":"7a792dd4-df29-41f8-b686-a205adb613e9","direction":"outgoing","index":142210,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=18ceb79a-7e2b-4f20-8475-c46b6d91c1e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26a59267-a4e6-479a-a3c6-0c98b64b85a5","direction":"outgoing","index":142211,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=18ceb79a-7e2b-4f20-8475-c46b6d91c1e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a392d3d0-ca82-4195-ab71-a9501a06e526","direction":"outgoing","index":142212,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355\u0026status=registered,partial,preliminary,final,amended,corrected,appended,cancelled,entered-in-error,unknown","verb":"get"},{"id":"036e59d1-0626-4976-b481-a7e3e6987ab7","direction":"outgoing","index":142213,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9b5c8c4b-16c8-403e-8ff2-b220fc2de38a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64f47998-dedd-4c78-820c-833b98d34d74","direction":"outgoing","index":142214,"result_id":"d3b6906c-251c-4328-b488-53cd31793e42","status":200,"timestamp":"2026-05-22T21:06:21.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9b5c8c4b-16c8-403e-8ff2-b220fc2de38a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:21.413-04:00"},{"id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","created_at":"2026-05-22T21:06:22.295-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1b4a70b2-c61f-4e7f-b6ec-5dc77791235d","direction":"outgoing","index":142215,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0582fabb-e97f-4ac4-9330-4dc3915d7045","direction":"outgoing","index":142216,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=gt2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d4118345-1f36-49db-9802-16a01c38ee5e","direction":"outgoing","index":142217,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=ge2017-09-27T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7660f264-d198-4393-900b-1d89ce619342","direction":"outgoing","index":142218,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=lt2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"41f86e6c-8d0f-4eb5-9a4b-e3754ba4e1f5","direction":"outgoing","index":142219,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=LAB\u0026date=le2017-09-29T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"098b0d81-bb71-46d7-aa85-23bbe01dcb53","direction":"outgoing","index":142220,"result_id":"fc0d45a8-49f4-4bac-9a02-fdbc06eb58b8","status":200,"timestamp":"2026-05-22T21:06:22.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?category=http://terminology.hl7.org/CodeSystem/v2-0074%7CLAB\u0026date=2017-09-28T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:22.295-04:00"},{"id":"86f8859b-6b0d-4883-a708-503bf527e40c","created_at":"2026-05-22T21:06:22.637-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a9e65612-0906-4a2f-97c6-41913c2e50b9","direction":"outgoing","index":142221,"result_id":"86f8859b-6b0d-4883-a708-503bf527e40c","status":200,"timestamp":"2026-05-22T21:06:22.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=51990-0\u0026patient=355","verb":"get"},{"id":"80552e62-2dd0-4d41-a786-c90ec17c7fa6","direction":"outgoing","index":142222,"result_id":"86f8859b-6b0d-4883-a708-503bf527e40c","status":200,"timestamp":"2026-05-22T21:06:22.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?code=http://loinc.org%7C51990-0\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:22.637-04:00"},{"id":"04b2eceb-0091-4db6-9dba-93deab8603df","created_at":"2026-05-22T21:06:22.777-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"56a51d4d-3dc1-4a60-9679-846cac10b217","direction":"outgoing","index":142223,"result_id":"04b2eceb-0091-4db6-9dba-93deab8603df","status":200,"timestamp":"2026-05-22T21:06:22.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:22.777-04:00"},{"id":"61169ebe-a73e-4a59-9e5f-19616fa9e2ce","created_at":"2026-05-22T21:06:23.185-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"532bd7b5-5ee3-4a51-97a1-812631575381","direction":"outgoing","index":142224,"result_id":"61169ebe-a73e-4a59-9e5f-19616fa9e2ce","status":200,"timestamp":"2026-05-22T21:06:23.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=85","verb":"get"},{"id":"fcd5fd48-565d-4eb0-91db-422f99139702","direction":"outgoing","index":142225,"result_id":"61169ebe-a73e-4a59-9e5f-19616fa9e2ce","status":200,"timestamp":"2026-05-22T21:06:23.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=355","verb":"get"},{"id":"8e8cc75e-55cb-49ac-8728-d12d5d369858","direction":"outgoing","index":142226,"result_id":"61169ebe-a73e-4a59-9e5f-19616fa9e2ce","status":200,"timestamp":"2026-05-22T21:06:23.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?_revinclude=Provenance:target\u0026category=LAB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:23.185-04:00"},{"id":"9105a6f3-8757-4bd2-a17f-e5ecb443c19e","created_at":"2026-05-22T21:06:23.511-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DiagnosticReport/821704d7-dbba-4c5d-a17f-d573956cb779: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DiagnosticReport/c9d5e80f-442e-41f3-ae87-c91abb363857: DiagnosticReport: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:23.511-04:00"},{"id":"7652e081-23b4-4d66-8793-efe4560e617d","created_at":"2026-05-22T21:06:23.527-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:23.527-04:00"},{"id":"fe07a4ea-4045-420e-834a-a0b495c89c4d","created_at":"2026-05-22T21:06:24.392-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ccc1bd13-a290-41be-9ea5-c76c4d0656a8","direction":"outgoing","index":142227,"result_id":"fe07a4ea-4045-420e-834a-a0b495c89c4d","status":200,"timestamp":"2026-05-22T21:06:24.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/c0dba532-8451-4688-944e-1e9526276466","verb":"get"},{"id":"8c6ba10f-fe00-408c-b881-815d27141e3f","direction":"outgoing","index":142228,"result_id":"fe07a4ea-4045-420e-834a-a0b495c89c4d","status":200,"timestamp":"2026-05-22T21:06:24.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b4904dee-b799-48ae-8b65-8f1228baedaa","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:24.392-04:00"},{"id":"49eae0c6-a76e-459e-9176-3199b3b2f8ce","created_at":"2026-05-22T21:06:24.443-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:24.443-04:00"},{"id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","created_at":"2026-05-22T21:06:28.329-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1bb5a013-7843-44cf-8986-9c291095278f","direction":"outgoing","index":142229,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"e9f4af17-029e-462f-a995-7a65b2c00440","direction":"outgoing","index":142230,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33ea1baf-a68d-4b96-8636-c9b9827baf91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"afeebedc-ad55-4ff3-9024-842383af54d8","direction":"outgoing","index":142231,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33ea1baf-a68d-4b96-8636-c9b9827baf91\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a3778113-87ed-49f0-9bbc-3670d10158e7","direction":"outgoing","index":142232,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/_search","verb":"post"},{"id":"1d6c1b37-fa63-435a-8208-4d6b912e84db","direction":"outgoing","index":142233,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33ea1baf-a68d-4b96-8636-c9b9827baf91\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dc18f1d-5716-4fe0-b293-1413bc900f34","direction":"outgoing","index":142234,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33ea1baf-a68d-4b96-8636-c9b9827baf91\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4860c1ea-2f29-4512-9e36-4860360cb0fa","direction":"outgoing","index":142235,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=Patient/85","verb":"get"},{"id":"a64e493d-4bd4-4b3f-84f8-49598a22501c","direction":"outgoing","index":142236,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0070117a-4330-4729-bc3e-c58dd09e05fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f91e7122-9d8a-4709-b77a-a996106bbb50","direction":"outgoing","index":142237,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0070117a-4330-4729-bc3e-c58dd09e05fe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4bda3e7-70fc-44a1-a3f8-85eb5aee26d4","direction":"outgoing","index":142238,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"6eb20169-9659-4157-b2ec-e1c174c289ec","direction":"outgoing","index":142239,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=825102d5-fa07-44f2-9180-a09052e3e9cf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc254eb9-b537-45b4-b183-127dd360c569","direction":"outgoing","index":142240,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=825102d5-fa07-44f2-9180-a09052e3e9cf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e92b244-a609-44f3-9d40-4787d58a6e56","direction":"outgoing","index":142241,"result_id":"de9ddb8e-92f0-46f7-9d63-fe7530d157f9","status":200,"timestamp":"2026-05-22T21:06:28.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:28.329-04:00"},{"id":"8f70d30d-4a02-4e13-9ea5-dde85b24468a","created_at":"2026-05-22T21:06:28.677-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e2aae073-057a-441d-9f24-8e7d747cc2e9","direction":"outgoing","index":142242,"result_id":"8f70d30d-4a02-4e13-9ea5-dde85b24468a","status":200,"timestamp":"2026-05-22T21:06:28.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_id=f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:28.677-04:00"},{"id":"7807bad0-b190-49c7-ba00-3982a4a14f90","created_at":"2026-05-22T21:06:29.111-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"19ebf9f2-0e95-42a6-a2e4-6a70b7178b89","direction":"outgoing","index":142243,"result_id":"7807bad0-b190-49c7-ba00-3982a4a14f90","status":200,"timestamp":"2026-05-22T21:06:29.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=11506-3","verb":"get"},{"id":"baedf66c-fcf2-4d7d-91bf-33923b1bcee7","direction":"outgoing","index":142244,"result_id":"7807bad0-b190-49c7-ba00-3982a4a14f90","status":200,"timestamp":"2026-05-22T21:06:29.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"3d6bc277-5f0d-4e53-867a-48ee3e89b76c","direction":"outgoing","index":142245,"result_id":"7807bad0-b190-49c7-ba00-3982a4a14f90","status":200,"timestamp":"2026-05-22T21:06:29.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:29.111-04:00"},{"id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","created_at":"2026-05-22T21:06:31.924-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bf79dd38-6ac4-4c35-8fa2-345742381c6f","direction":"outgoing","index":142246,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:31.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=superseded","verb":"get"},{"id":"17f40ca0-fae7-47ef-88e4-e905624ba018","direction":"outgoing","index":142247,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:31.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e427fb23-d020-4fe3-a5f3-3abd1a603f2a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fed4c861-d5d0-436d-9841-706157c10ac6","direction":"outgoing","index":142248,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:31.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026status=superseded","verb":"get"},{"id":"1c1b2133-4c9a-4fe0-af28-9d2e227db401","direction":"outgoing","index":142249,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:31.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7713bb4b-f737-437e-a427-bfe23bbc5b78\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dedc376b-eae2-4760-8792-d55c0680bc15","direction":"outgoing","index":142250,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:32.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026status=current,superseded,entered-in-error","verb":"get"},{"id":"c0c2bbd2-6237-4bf4-a0d6-b203d5c9eb35","direction":"outgoing","index":142251,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:32.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f451269-3e5f-46d3-a452-fe61c7123b31\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"61afe4d7-12e6-408f-be17-777491bfd38d","direction":"outgoing","index":142252,"result_id":"2cc0d464-bbe3-43f0-94bf-3cfb02bef18b","status":200,"timestamp":"2026-05-22T21:06:32.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f451269-3e5f-46d3-a452-fe61c7123b31\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:31.924-04:00"},{"id":"cb55d281-2a45-4b53-b479-154fa9f7989e","created_at":"2026-05-22T21:06:33.415-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"16a08f45-56a9-4297-b5cc-9ab3816f0a4c","direction":"outgoing","index":142253,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"04f8f255-5616-4610-981d-eb8179cb944f","direction":"outgoing","index":142254,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"5a06815f-1e00-4b5b-95a9-51b64ffd23c3","direction":"outgoing","index":142255,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=ge1940-09-05T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"b2808549-2ec5-4a2e-8c03-e27ee3714cb0","direction":"outgoing","index":142256,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=lt1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"9868c5cc-3895-437f-b2b1-7af28e116140","direction":"outgoing","index":142257,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=le1940-09-07T01:11:45-04:00\u0026type=11506-3","verb":"get"},{"id":"66cfb86d-1d71-4206-a6cc-e7c16a9069ee","direction":"outgoing","index":142258,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85\u0026period=gt1940-09-05T01:11:45-04:00\u0026type=http://loinc.org%7C11506-3","verb":"get"},{"id":"3b93ba73-3e34-4eda-aed3-94a36a3e0ee8","direction":"outgoing","index":142259,"result_id":"cb55d281-2a45-4b53-b479-154fa9f7989e","status":200,"timestamp":"2026-05-22T21:06:33.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355\u0026period=gt1940-09-04T19:33:18-04:00\u0026type=11488-4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_period_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:33.415-04:00"},{"id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","created_at":"2026-05-22T21:06:36.363-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"61a848af-6bee-4a9c-b43d-0bfec015333f","direction":"outgoing","index":142260,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"e21fcb6c-97a5-4fc6-a8a7-7c8953ed3982","direction":"outgoing","index":142261,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"69cf4428-a484-46cf-9aa2-5b5db5a7ea5d","direction":"outgoing","index":142262,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a72e530b-fb7b-4010-843d-cf4e69b4d014\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"644a28d9-edc9-468f-92f6-0f229e3a2802","direction":"outgoing","index":142263,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a72e530b-fb7b-4010-843d-cf4e69b4d014\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"195a10fb-0cb0-42d0-849d-9af936152f58","direction":"outgoing","index":142264,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e3644fd1-12a0-4f12-9e20-a22120142bcb","direction":"outgoing","index":142265,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.451-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eda230f7-d543-4073-99bb-9d93aa60583e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c057c861-06bd-497f-807a-4708f74aa684","direction":"outgoing","index":142266,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eda230f7-d543-4073-99bb-9d93aa60583e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"32033cfe-2825-45ec-9937-e26cb122bb8d","direction":"outgoing","index":142267,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8a66eb72-994d-49f5-a164-d9b469bd9ba1","direction":"outgoing","index":142268,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d2537f86-77e8-40ae-a33e-d6d3cdc9c9a3","direction":"outgoing","index":142269,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026date=1940-09-06T01:11:45.131-04:00\u0026patient=85","verb":"get"},{"id":"c66614eb-c212-4f3d-9bc7-641b9538192a","direction":"outgoing","index":142270,"result_id":"c72fa4a9-cf74-4a89-aa8f-fc6859a8c4a7","status":200,"timestamp":"2026-05-22T21:06:36.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026date=1940-09-05T19:33:18.715-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:36.363-04:00"},{"id":"9c5ea012-0e31-4159-8602-557d7ed02a81","created_at":"2026-05-22T21:06:39.480-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cc42e795-444c-478b-84ee-d9b928108051","direction":"outgoing","index":142271,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=85","verb":"get"},{"id":"540f6437-6ec6-4e80-b71e-6dd73322cfda","direction":"outgoing","index":142272,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2397bacb-22b1-4ae6-80c1-e5062c34d1bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42f07eee-3232-4dba-bc55-cb0ffc7b7688","direction":"outgoing","index":142273,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2397bacb-22b1-4ae6-80c1-e5062c34d1bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"123689b0-ab35-428a-8825-d7b621d26b76","direction":"outgoing","index":142274,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category%7Cclinical-note\u0026patient=85","verb":"get"},{"id":"0ce1f28d-7872-4cd5-9f6a-7754da52e0cb","direction":"outgoing","index":142275,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61b87d21-2ebc-402d-bd60-b20809bfa5fd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba165a3b-73ea-4f7d-9330-90f3d0dde439","direction":"outgoing","index":142276,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=61b87d21-2ebc-402d-bd60-b20809bfa5fd\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e441b294-ac04-4cdb-9e83-0c3f2c1f88cf","direction":"outgoing","index":142277,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?category=clinical-note\u0026patient=355","verb":"get"},{"id":"ecf939ec-c99d-43b0-9f21-7a6efa4765af","direction":"outgoing","index":142278,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a2a776d9-6b6a-479e-b055-e1861ff1d60c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59f2eb53-f6e1-44d4-80c0-794494fefc3e","direction":"outgoing","index":142279,"result_id":"9c5ea012-0e31-4159-8602-557d7ed02a81","status":200,"timestamp":"2026-05-22T21:06:39.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a2a776d9-6b6a-479e-b055-e1861ff1d60c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:39.480-04:00"},{"id":"ba02734c-4f7c-422c-8b5f-a3219afe257d","created_at":"2026-05-22T21:06:39.752-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"691dd3d5-4f85-44a6-9f83-03d17d7ca2d1","direction":"outgoing","index":142280,"result_id":"ba02734c-4f7c-422c-8b5f-a3219afe257d","status":200,"timestamp":"2026-05-22T21:06:39.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:39.752-04:00"},{"id":"f6257df3-90cd-47b2-89fa-010d3e51804d","created_at":"2026-05-22T21:06:42.178-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ffdaf7a8-bcc2-4050-b95e-7bfb53506c84","direction":"outgoing","index":142281,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"27f3fa6c-c5dc-497b-90bc-dbe6783c6ee3","direction":"outgoing","index":142282,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32a05573-f109-42af-b26d-e424f74f5712\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cee26bd0-fa53-4fcd-bacc-e0f3810c16e3","direction":"outgoing","index":142283,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=32a05573-f109-42af-b26d-e424f74f5712\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04311cca-7f4b-4764-8a21-c52dfaa62536","direction":"outgoing","index":142284,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"a8cdde5c-393a-481b-8f2e-3676642ce473","direction":"outgoing","index":142285,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=557a7972-e3be-4221-a784-1c3382a180df\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"238d6bfa-e839-4bcc-a413-1656d8b4c27d","direction":"outgoing","index":142286,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=557a7972-e3be-4221-a784-1c3382a180df\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"51edaf36-b281-463d-a8d7-22158e2745f6","direction":"outgoing","index":142287,"result_id":"f6257df3-90cd-47b2-89fa-010d3e51804d","status":200,"timestamp":"2026-05-22T21:06:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:42.178-04:00"},{"id":"5f23bc53-8603-4780-8605-5840abfbaa4d","created_at":"2026-05-22T21:06:48.721-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f8cb0246-fe7d-421b-8a3b-946fb20f821a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7df63068-cc47-4f54-b670-b47e028f1171: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3953f8e1-9a25-40e4-a8e2-4af571539ed5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cac3881b-be98-4912-946b-b2fe8b53324a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5a900f60-42cd-4f24-a171-fc2947b58769: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5c5d7704-3a51-4b08-9ba7-f3b989e5a2ec: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f5f7c56b-5241-4eb9-adac-975a91c04a33: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/7e7c97b3-06ca-4e2f-a873-d4ba3588c751: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebf372db-bd2d-497b-9979-d1dac2e2acb5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/826fb52d-d7d0-40a9-9b42-6febca5e05b0: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/3b182ebd-d422-4b52-99a1-b0e3b1d33e6c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cdf40482-3b25-4ed0-a11a-d13266ca8a6a: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/123a3d91-c0c7-4dd9-87ed-f54e1fa7f0f3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/9615c0cd-d78b-492c-8690-4d616ab772a2: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/a16e77f9-b53b-4331-b34d-aa041da31d85: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/8a1ed505-b4ec-4a7f-a6c5-3b1d121e6f13: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/b53ddae3-723d-43a6-8266-37d9bec9ee0c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/333e523a-97c4-40d2-aded-a64d23ab62af: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ebec1d3c-1bf4-4d81-a1c4-f1edb25cae7d: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/51c40a73-06b8-4c14-b76e-1b11bc2a10ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/2532e4a3-d564-42cd-8c9b-8d57007aea2c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/ab0618dd-596c-478b-a86f-83a9d1ca6f71: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/1c5d9859-e398-423e-9849-d5a152c6fd83: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0'","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-authentication-time","type":"info"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.content[0].format: The Coding provided (http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008) was not found in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable). (error message = The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds-sd:pdf:2008: 'ITI XDS-SD PDF'' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1')","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/4658c3ad-7856-4412-89bb-60651dceafad: DocumentReference.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-adi-documentreference|8.0.0' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e7f8bf13-94c7-4bd8-bc69-0c1f047a3c8e: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f84446fa-39f6-4f82-b1c7-b314b779960c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/e4f5f979-f6c3-4246-8d38-982feee77da6: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/66178406-d71f-46ae-a6b4-4106500eb94c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cbb7d25d-087e-402e-8383-c6c6811e65ce: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/249d8ffa-5eea-45d7-b48c-2b61d84c5281: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d4ab5a74-226a-4f1a-a034-75aa4e3ece05: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d1f31842-9bc1-4069-acee-c16f68cabd48: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5738c26e-44cb-4170-a9e6-39301822c29f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/55283e52-7ebd-4bfe-992f-26a61d8dbef3: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/673128c3-eb27-45fd-9c29-9224837be001: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/d18e809c-bd52-43cb-a111-d64e4330a902: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/622b0c2d-e10a-4318-88f2-ef5fcdc3c21c: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/6064cb8b-0455-4c00-b5d1-e2e777512fd8: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/5ec32255-0cb1-4864-ab92-0e032a36d875: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/11ac9b73-ccf0-48f8-86f6-dfb194e12aa5: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/cc0996bb-41ca-4bc5-a00f-946bcea27e3f: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/fb6d7b2a-289c-4615-873d-61fc6b9763fd: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/64f3c3fd-2d08-4c1e-b7c5-517ca3b669bf: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f85b6c80-6e5b-46de-8e84-e2ed115896ea: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference.content[0].format: The code provided (http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem#urn:ihe:iti:xds:2017:mimeTypeSufficient) is not in the value set 'DocumentReference Format Code Set' (http://hl7.org/fhir/ValueSet/formatcodes|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"DocumentReference/f79fa4b4-6fb2-4357-b796-ae0bcd5fa888: DocumentReference: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_extension_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:48.721-04:00"},{"id":"3a1110b0-88f5-49c0-92c7-8c826c908c71","created_at":"2026-05-22T21:06:48.853-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:48.853-04:00"},{"id":"baf347da-12c7-4895-8577-fcf56dd114f4","created_at":"2026-05-22T21:06:48.856-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:48.856-04:00"},{"id":"09db64de-1bec-4262-8bbd-d290adf35de9","created_at":"2026-05-22T21:06:48.867-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v400_document_reference_custodian_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:48.867-04:00"},{"id":"6ccdf610-0dd0-4acd-a1e4-556bf3caa762","created_at":"2026-05-22T21:06:48.869-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_document_reference","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:48.869-04:00"},{"id":"a51171be-65c0-4001-9dd8-0795f69ce805","created_at":"2026-05-22T21:06:55.970-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6f47f67f-04fd-4958-9206-771f676d4370","direction":"outgoing","index":142288,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:55.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85","verb":"get"},{"id":"4c3d2900-4bf6-4de9-af6c-6e6992864496","direction":"outgoing","index":142289,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:55.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a452e72d-124e-4c00-8979-a9d7161937f1","direction":"outgoing","index":142290,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:55.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16b6a49c-51f3-4a96-9dd6-ee9b33f1b3a1","direction":"outgoing","index":142291,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"65abbba0-f4ce-49b0-b3a5-8b953831f804","direction":"outgoing","index":142292,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cd085b7f-65b1-49de-b310-113b5d853cd1","direction":"outgoing","index":142293,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2c9cd6f-0112-4377-b364-5ede26ccb7a6","direction":"outgoing","index":142294,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/_search","verb":"post"},{"id":"82729ce7-1957-4541-8e6d-001b262dbb07","direction":"outgoing","index":142295,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53b703f2-c75e-456b-afaf-efec196d7478","direction":"outgoing","index":142296,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"892ee98c-145e-41bc-ae4a-f71d91eba650","direction":"outgoing","index":142297,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"280831a5-bba1-46fa-9a50-c632daa2ec55","direction":"outgoing","index":142298,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0973972a-754c-4f7e-bdb3-84b30b93c5c3","direction":"outgoing","index":142299,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ca605344-ab74-46a5-979c-e7c6ffce91ce\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14e57c65-82e8-4398-afe1-388b480c4c6f","direction":"outgoing","index":142300,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=Patient/85","verb":"get"},{"id":"aa828be6-3aef-4694-9fc9-c72117673fb1","direction":"outgoing","index":142301,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99cf9e3b-8e1a-4b84-b4d7-e13dbd57ac52\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c02190a4-5a61-411f-8800-225ea33a7c5b","direction":"outgoing","index":142302,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99cf9e3b-8e1a-4b84-b4d7-e13dbd57ac52\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b71ef161-58e3-4466-8cde-9cdbff6bc8ea","direction":"outgoing","index":142303,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99cf9e3b-8e1a-4b84-b4d7-e13dbd57ac52\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"591a8b6f-3b2f-4fdc-9945-9569e3703cd9","direction":"outgoing","index":142304,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99cf9e3b-8e1a-4b84-b4d7-e13dbd57ac52\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6801ef9-cde8-480b-9dd8-a837643795b5","direction":"outgoing","index":142305,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=99cf9e3b-8e1a-4b84-b4d7-e13dbd57ac52\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f300685c-0d31-405d-b048-940d90f3cc07","direction":"outgoing","index":142306,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355","verb":"get"},{"id":"fe7668ae-e60c-4b24-b00b-8a857b30f3a2","direction":"outgoing","index":142307,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1d929d34-7b23-4e2e-abc7-d13f0a51a53b","direction":"outgoing","index":142308,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d3c2082-750e-46f7-9620-f981bd6d6030","direction":"outgoing","index":142309,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea550048-69e3-492e-88a4-d6e97a597d53","direction":"outgoing","index":142310,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ecb868e-087e-4500-87da-0fc73d05ceee","direction":"outgoing","index":142311,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"442118b8-5d4c-4951-8c4d-c82818df8543","direction":"outgoing","index":142312,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8dceea9e-9db7-4564-96a7-6e9350d59f27","direction":"outgoing","index":142313,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a91a9b52-5728-41a3-8dd7-b134409b0b7d","direction":"outgoing","index":142314,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa606734-b73c-4a80-b17a-ba4fa75487b6","direction":"outgoing","index":142315,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1276200-e0e3-4d03-bdf8-6b8ce41a710e","direction":"outgoing","index":142316,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"035256da-f282-4698-b16a-fbda82c9c973","direction":"outgoing","index":142317,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c1033a-bf5c-4438-bff8-67a541f93268","direction":"outgoing","index":142318,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cdda8e0f-e4d8-4909-8b8f-af4efc08f244\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17a22b16-50bf-44c4-b128-f698baec5eba","direction":"outgoing","index":142319,"result_id":"a51171be-65c0-4001-9dd8-0795f69ce805","status":200,"timestamp":"2026-05-22T21:06:56.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:55.970-04:00"},{"id":"6b8f3500-595f-4ca4-8de8-d246cfba4c72","created_at":"2026-05-22T21:06:56.687-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1bb98b72-5c56-475d-83e8-307917ab427b","direction":"outgoing","index":142320,"result_id":"6b8f3500-595f-4ca4-8de8-d246cfba4c72","status":200,"timestamp":"2026-05-22T21:06:56.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_id=cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:56.687-04:00"},{"id":"aaac6ccf-8c2e-4047-bb55-3cfd8a0964cc","created_at":"2026-05-22T21:06:56.933-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c170eeef-f21f-4bae-9531-82299d09dd29","direction":"outgoing","index":142321,"result_id":"aaac6ccf-8c2e-4047-bb55-3cfd8a0964cc","status":200,"timestamp":"2026-05-22T21:06:56.935-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"},{"id":"47466324-82d4-4594-8f53-06863fd23936","direction":"outgoing","index":142322,"result_id":"aaac6ccf-8c2e-4047-bb55-3cfd8a0964cc","status":200,"timestamp":"2026-05-22T21:06:56.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?identifier=https://github.com/synthetichealth/synthea%7C09775519-5327-3bbf-cb95-66313dde54ee","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_identifier_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:06:56.933-04:00"},{"id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","created_at":"2026-05-22T21:07:00.167-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fc99f120-3439-4cca-8257-7ef6f88de4db","direction":"outgoing","index":142323,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=410620009","verb":"get"},{"id":"84b52acb-14fe-4762-8dfa-8581f3e8a8af","direction":"outgoing","index":142324,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f66f9b86-9150-4386-9b12-5dd5abe01c43\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c0cc177-496b-4160-91e5-e3ff06109318","direction":"outgoing","index":142325,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f66f9b86-9150-4386-9b12-5dd5abe01c43\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bda3b0c4-d5eb-44da-973b-1e6cf017f38c","direction":"outgoing","index":142326,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026type=http://snomed.info/sct%7C410620009","verb":"get"},{"id":"2af59881-25e5-4026-b494-89c7f96d3111","direction":"outgoing","index":142327,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8a6d9d81-2b8a-4093-b6c8-94ca9b762a64\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b18d230d-66ce-4e58-87e9-c810389aacdf","direction":"outgoing","index":142328,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8a6d9d81-2b8a-4093-b6c8-94ca9b762a64\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4bae2f97-2d32-4c7d-b1e8-245cc86212a8","direction":"outgoing","index":142329,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026type=410620009","verb":"get"},{"id":"01fa89d2-b426-4299-a291-906dcb9e5570","direction":"outgoing","index":142330,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ce5db05-9b89-4dd9-a6fe-6605974deff4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6df45e9c-4994-4617-a4b8-a13389b199d7","direction":"outgoing","index":142331,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1ce5db05-9b89-4dd9-a6fe-6605974deff4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"73fe1caf-a75e-44fb-b462-701936d979dc","direction":"outgoing","index":142332,"result_id":"20b47686-9ba2-4862-80d9-d6c9c995b44b","status":200,"timestamp":"2026-05-22T21:07:00.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026type=99211","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_type_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:00.167-04:00"},{"id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","created_at":"2026-05-22T21:07:06.161-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3ebfad1f-53e1-4bd7-aa94-15e2994fdcdd","direction":"outgoing","index":142333,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=85","verb":"get"},{"id":"110975b2-093e-4253-87be-63b3325a6332","direction":"outgoing","index":142334,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=338610ff-78bc-428d-8d81-284e8df2bb62\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5b13d6a-d5d9-411e-80b5-cd2b94a3490c","direction":"outgoing","index":142335,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=338610ff-78bc-428d-8d81-284e8df2bb62\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b4a0431-715e-48be-b0c9-3d0d0c4d4046","direction":"outgoing","index":142336,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=338610ff-78bc-428d-8d81-284e8df2bb62\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fecf329e-fa96-4a4c-a63b-0287239751b9","direction":"outgoing","index":142337,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=338610ff-78bc-428d-8d81-284e8df2bb62\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf4d6023-a253-441d-aa23-fcf5ba16f7dc","direction":"outgoing","index":142338,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=338610ff-78bc-428d-8d81-284e8df2bb62\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cba88369-dea3-4669-888e-62f9033c9c54","direction":"outgoing","index":142339,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CAMB\u0026patient=85","verb":"get"},{"id":"a91370e2-4c35-431a-82cc-8bc161fd0458","direction":"outgoing","index":142340,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e465af8-3315-4bfb-b453-f99d0c1d68aa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a3b5b70-fcd2-416a-b458-c6a16fbf1665","direction":"outgoing","index":142341,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e465af8-3315-4bfb-b453-f99d0c1d68aa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc811e93-069d-480a-975a-e95d67867fb5","direction":"outgoing","index":142342,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e465af8-3315-4bfb-b453-f99d0c1d68aa\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfb8ee3b-89a6-48c2-b944-93f2f8accd68","direction":"outgoing","index":142343,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e465af8-3315-4bfb-b453-f99d0c1d68aa\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a4638f61-80a1-446a-b41e-1d88d1a3438d","direction":"outgoing","index":142344,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9e465af8-3315-4bfb-b453-f99d0c1d68aa\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c91beec6-4405-47a2-ba6d-2faba74e719a","direction":"outgoing","index":142345,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=355","verb":"get"},{"id":"dfd9fe4c-b257-447f-8fa9-af829d7c9afb","direction":"outgoing","index":142346,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1d46b3fe-6037-49f7-b2a2-dd7b7464335d","direction":"outgoing","index":142347,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a279709e-8038-4264-acfe-7d8e16149b7b","direction":"outgoing","index":142348,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db16f290-c629-49a0-bf5b-7faecd8b5b7f","direction":"outgoing","index":142349,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c696248-bf05-4c22-9953-dee6b2b50b63","direction":"outgoing","index":142350,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"61242c2b-24d6-4756-9413-6736117fa8ae","direction":"outgoing","index":142351,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf4a0dec-5dcb-4bbe-a5ab-6dd957eaddd4","direction":"outgoing","index":142352,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"032c507c-4fbb-44d0-a7ec-3db09cd4aa12","direction":"outgoing","index":142353,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26b01d83-1e7d-4116-a402-9dbf5f57f858","direction":"outgoing","index":142354,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecc8cee1-7fa1-4a67-bd12-353fb02e4e35","direction":"outgoing","index":142355,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ce1c16d-53bd-4b18-9e67-605aa03d75d6","direction":"outgoing","index":142356,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03598eeb-31c2-4257-a83f-e3738098155d","direction":"outgoing","index":142357,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3139140c-5a48-4439-a481-dd07e543323a\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7ce393d-9705-4558-b0b9-c639e7db7703","direction":"outgoing","index":142358,"result_id":"32509bc7-3d54-4ba1-9a00-fba5e3ade7cd","status":200,"timestamp":"2026-05-22T21:07:06.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?class=AMB\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_class_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:06.161-04:00"},{"id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","created_at":"2026-05-22T21:07:11.185-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"4cacca0c-62a2-4ebe-bc33-10216656fae0","direction":"outgoing","index":142359,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=85\u0026status=finished","verb":"get"},{"id":"17734a59-46cb-4f92-82b7-dfb21adf1f66","direction":"outgoing","index":142360,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbbbc3a4-538b-4d7e-925b-f9d3a032c7b1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76a1352e-2396-4d75-bb0a-e1ced96dbf7d","direction":"outgoing","index":142361,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbbbc3a4-538b-4d7e-925b-f9d3a032c7b1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e6e72fc-f4cf-4add-bca4-415ce61d0621","direction":"outgoing","index":142362,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbbbc3a4-538b-4d7e-925b-f9d3a032c7b1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8593cbfb-51f9-42d9-9773-2d669ad1cdb2","direction":"outgoing","index":142363,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbbbc3a4-538b-4d7e-925b-f9d3a032c7b1\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16cceecc-6713-4c5c-ad90-8d2d6e91de8e","direction":"outgoing","index":142364,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbbbc3a4-538b-4d7e-925b-f9d3a032c7b1\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14c75f8a-0381-4b7f-bf48-4267427c9956","direction":"outgoing","index":142365,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=355\u0026status=finished","verb":"get"},{"id":"16ce6f5a-4ffd-46f6-9583-8141cc201cda","direction":"outgoing","index":142366,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ee55ad59-1b31-43a7-b5bd-c882b9f49904","direction":"outgoing","index":142367,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc06850d-2b1a-4b09-8b04-6b62ba5336ed","direction":"outgoing","index":142368,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15aafb55-be81-4b70-9a79-4bf8bf3a6ec2","direction":"outgoing","index":142369,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f896b2f-ec8c-4d03-a139-61c0c67e89fc","direction":"outgoing","index":142370,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ae8cc7a-8158-40ae-ba0a-d9736dbc50d0","direction":"outgoing","index":142371,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"300048b8-c1a8-4a27-8279-64aff769075d","direction":"outgoing","index":142372,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ffa1a1a-8659-425c-8c16-5bb00901effd","direction":"outgoing","index":142373,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93760238-6177-47c9-b0f3-b2d004a6965e","direction":"outgoing","index":142374,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76095cf1-88f2-43b4-ac77-8b1a6cd02377","direction":"outgoing","index":142375,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eda2dbd5-baf7-46ba-b5b5-e2fa6ba6f284","direction":"outgoing","index":142376,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.513-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3bd9c05-fc5a-4b6e-a7d3-104ef355880e","direction":"outgoing","index":142377,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31402dff-2282-4ce1-8d6f-ad4da93458f8\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5249d111-7bbb-477d-b10c-da1fa3ccd0cd","direction":"outgoing","index":142378,"result_id":"149cf77f-3a66-4ac9-ad22-46546da9cae2","status":200,"timestamp":"2026-05-22T21:07:11.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?patient=907\u0026status=finished","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:11.185-04:00"},{"id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","created_at":"2026-05-22T21:07:18.765-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"84e30be0-7743-4296-9c34-1dde2d98dd14","direction":"outgoing","index":142379,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"9fb0deef-f715-433f-881e-7c97bf7dba64","direction":"outgoing","index":142380,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7e148f5-6470-4e3b-8d6a-8bb142cbf474","direction":"outgoing","index":142381,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a44054b8-dbb6-40cf-b66c-8fd59d5cc4d6","direction":"outgoing","index":142382,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a250d5f5-bb0b-4884-bbc0-c4a60080c973","direction":"outgoing","index":142383,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ac1ffcd-1aaa-4dca-934d-19553dc2ea6d","direction":"outgoing","index":142384,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"afdc8631-1a64-42bd-9dc5-60aa4199beec","direction":"outgoing","index":142385,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"dba20f7a-77a6-4efe-840c-e7d11a324270","direction":"outgoing","index":142386,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"431f8f3b-9ae0-4193-b349-6d53a08e982e","direction":"outgoing","index":142387,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d28840e1-c5fe-4c3e-9be4-b232c77d2c55","direction":"outgoing","index":142388,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a621baf9-047b-44df-9fe0-3b2dd731d48d","direction":"outgoing","index":142389,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5097baf-b4d6-457e-a19a-52f8c303665d","direction":"outgoing","index":142390,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11c423bd-216b-4132-a90f-a4b81560164f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d1850fb-a6b4-4d8a-a6d9-41b83ecc8b6a","direction":"outgoing","index":142391,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=ge1940-03-28T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"e06b853b-730c-4e6a-be63-5c52d511bcf3","direction":"outgoing","index":142392,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=144ea7e7-21af-43b8-9e6d-06cd9b52bf67\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7640033-f6af-4df9-bcea-5d1c584781ce","direction":"outgoing","index":142393,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=144ea7e7-21af-43b8-9e6d-06cd9b52bf67\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bdc5991-854f-4187-babb-18b3130ec8e5","direction":"outgoing","index":142394,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=144ea7e7-21af-43b8-9e6d-06cd9b52bf67\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b52b64a5-7b57-428b-8b52-c3df22bf3c8e","direction":"outgoing","index":142395,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=144ea7e7-21af-43b8-9e6d-06cd9b52bf67\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e50eba87-599e-408f-854a-975875bc13f9","direction":"outgoing","index":142396,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=144ea7e7-21af-43b8-9e6d-06cd9b52bf67\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2ed80c9f-8283-423e-acde-564ff0edc5b5","direction":"outgoing","index":142397,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:18.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=lt1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"e6e4f5cc-28e5-4b0b-826b-c2197822936b","direction":"outgoing","index":142398,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=le1940-03-30T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2f0beef9-1410-4366-9d08-9f95ce47f3f6","direction":"outgoing","index":142399,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"28f2de80-74d4-49f2-96f9-c946aee19c0a","direction":"outgoing","index":142400,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3be692ea-b7a5-4a10-bcc0-344723be208e","direction":"outgoing","index":142401,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.041-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"edac5771-ea0a-4b02-9199-5ac09722cc53","direction":"outgoing","index":142402,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2cb4001e-14ad-43ef-aad4-131ff04abef4","direction":"outgoing","index":142403,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20a6f65b-00a7-45b1-9042-ee06c5b5ad25","direction":"outgoing","index":142404,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c54dede6-6234-4624-8cc1-5b5acebd5aee","direction":"outgoing","index":142405,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b259e788-aed8-42c6-88f5-3a161bd56ebf","direction":"outgoing","index":142406,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"06fc716c-736b-4a33-9f48-d41c064a138f","direction":"outgoing","index":142407,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1fb2df0a-2417-4afe-beda-83ce14fbbb59","direction":"outgoing","index":142408,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c7eed96-3b05-42e3-abd4-a23c51a023ad","direction":"outgoing","index":142409,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d0aca45a-31a7-4195-b552-a589599483bd","direction":"outgoing","index":142410,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c59461b8-b4dd-4980-8902-acfad8eb92fb","direction":"outgoing","index":142411,"result_id":"2d5e10d6-8064-4c65-925d-0f13e4b91c2f","status":200,"timestamp":"2026-05-22T21:07:19.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25c1e9-28aa-4415-a48c-d21e7a828135\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:18.765-04:00"},{"id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","created_at":"2026-05-22T21:07:22.369-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8c550a79-4da4-4381-913c-f766e324d319","direction":"outgoing","index":142412,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/b594895c-11cb-403f-a3bb-5729a3da4bd6\u0026patient=85","verb":"get"},{"id":"43fe3bc8-bfb1-43cb-a6cf-d3a4318e1ee0","direction":"outgoing","index":142413,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.409-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c18db773-5958-48f3-ae31-d9b345d3b590\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"02191d4a-cbdf-4cba-becd-c225b08c7627","direction":"outgoing","index":142414,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c18db773-5958-48f3-ae31-d9b345d3b590\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b5f99d3-851f-460b-9eeb-4c5c1ec88a41","direction":"outgoing","index":142415,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c18db773-5958-48f3-ae31-d9b345d3b590\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba01b5b9-98b3-45b8-99f3-e38a91a08a69","direction":"outgoing","index":142416,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?location=Location/462d8d76-453e-4644-9f58-fc7f4f1daff0\u0026patient=355","verb":"get"},{"id":"256682f9-c224-4026-97ac-ccae48ddaa95","direction":"outgoing","index":142417,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"97933eb8-cde5-4983-b106-0ff643f762ad","direction":"outgoing","index":142418,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bad46fca-4b03-4b0e-a349-89118142eb63","direction":"outgoing","index":142419,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12556cf6-464d-4fed-bca1-7eae44f17cd8","direction":"outgoing","index":142420,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c0ebc77-c20e-4c69-8def-f7c4434c632c","direction":"outgoing","index":142421,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"368580de-e4cd-458a-b85d-973618381c25","direction":"outgoing","index":142422,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b1fd8704-dcfa-47a3-a674-e47257703785","direction":"outgoing","index":142423,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95002017-e741-4d92-aad0-b38cb32e15b1","direction":"outgoing","index":142424,"result_id":"bf49b2ce-4914-41d1-bda8-c7f2fc144745","status":200,"timestamp":"2026-05-22T21:07:22.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f676e38f-b79c-41fc-909a-fe624a867170\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_location_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:22.369-04:00"},{"id":"d242743a-2cde-479a-8e7b-5b46812c4965","created_at":"2026-05-22T21:07:22.774-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"afdb1487-04ea-434a-b79a-aecea990dd9f","direction":"outgoing","index":142425,"result_id":"d242743a-2cde-479a-8e7b-5b46812c4965","status":400,"timestamp":"2026-05-22T21:07:22.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85","verb":"get"},{"id":"7992993a-5274-487f-8d0b-39f011e9e08f","direction":"outgoing","index":142426,"result_id":"d242743a-2cde-479a-8e7b-5b46812c4965","status":400,"timestamp":"2026-05-22T21:07:22.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?discharge-disposition=01\u0026patient=85\u0026status=planned","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_discharge_disposition_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:22.774-04:00"},{"id":"b7211c29-ad56-4f06-a5b2-596d76c0a93b","created_at":"2026-05-22T21:07:22.908-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c9faa549-d55c-4e2d-ace1-8a6887c1b0b4","direction":"outgoing","index":142427,"result_id":"b7211c29-ad56-4f06-a5b2-596d76c0a93b","status":200,"timestamp":"2026-05-22T21:07:22.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter/cac22925-f852-4ed3-af57-50afe02288bd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:22.908-04:00"},{"id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","created_at":"2026-05-22T21:07:28.301-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5815ae8e-f37f-48d1-8bfe-2992f8f31623","direction":"outgoing","index":142428,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"d7b30ce9-28fb-499e-993a-ad4d036c6497","direction":"outgoing","index":142429,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1b1912f-8737-4456-be72-7e1aa952540f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b14c3be-f224-4b7c-af98-00be373b1384","direction":"outgoing","index":142430,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1b1912f-8737-4456-be72-7e1aa952540f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a895392-bbbf-4b0c-a083-01cf2bebe204","direction":"outgoing","index":142431,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.355-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1b1912f-8737-4456-be72-7e1aa952540f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bdc3ac15-cb67-4352-bd59-553bd23d5466","direction":"outgoing","index":142432,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1b1912f-8737-4456-be72-7e1aa952540f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05922cc2-4ca9-45e6-bd36-d7da775ef53a","direction":"outgoing","index":142433,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1b1912f-8737-4456-be72-7e1aa952540f\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fcfa4f5-02b2-419c-aebb-06cdc20eb549","direction":"outgoing","index":142434,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"1f74c39c-52a9-4406-a72a-c2cf4f82a0e1","direction":"outgoing","index":142435,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.409-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40ba8bc1-c237-49c0-8824-f10f080d93f8","direction":"outgoing","index":142436,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d077ebc-0a46-428a-9e02-da54ee83c3e0","direction":"outgoing","index":142437,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6953ba51-e553-414f-a0ca-2571737d9149","direction":"outgoing","index":142438,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"217d76b4-3afb-4141-bb3b-16791f973bfd","direction":"outgoing","index":142439,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8485767d-ec24-40c6-aba3-be6ed3b36b39","direction":"outgoing","index":142440,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af7d1fa3-dc36-4317-8114-93b10a08eca6","direction":"outgoing","index":142441,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5600e446-ccdd-4fdc-a568-38d8140f11b6","direction":"outgoing","index":142442,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e34440f7-02da-4924-b893-a39cbf83be0e","direction":"outgoing","index":142443,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5415a618-ac55-44da-941c-36cd6d2227cc","direction":"outgoing","index":142444,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.546-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=100\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3864b0bf-99d0-48ed-b9e2-f1a8cd76e4bb","direction":"outgoing","index":142445,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=110\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bb1025e-3c46-4755-b4fb-909169727719","direction":"outgoing","index":142446,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a83a73-135e-4388-ade4-a09bf42638d2\u0026_getpagesoffset=120\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d939644e-6249-4a5d-a0ef-77c290e4c574","direction":"outgoing","index":142447,"result_id":"606b75a0-01bb-4bba-9226-1b99c1dba99a","status":200,"timestamp":"2026-05-22T21:07:28.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Encounter?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:28.301-04:00"},{"id":"f1f90159-aa3f-4023-8fec-a68391ec2f38","created_at":"2026-05-22T21:07:37.794-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-interpreter-needed","type":"info"},{"message":"Encounter/cac22925-f852-4ed3-af57-50afe02288bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5e5b858f-f92e-4d7c-856e-c134bd43ec56: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/379b7c05-5c24-43e0-8c97-dd0a46db00b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9415cbe7-83f8-4f2d-83fe-5c6a11e83082: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/51cfedff-711b-46ec-8b05-95bb595f2b04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74fc5adc-d71f-4c5b-ba69-873eac6d18aa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a316767d-8d74-4868-9bb7-cb0f188abd0e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6322878-f4ac-41c9-b570-16df56ee02e1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/797a9c89-e1ef-4fd1-aabb-e9a29d970cc4: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/de6cd984-811f-40f6-9537-6dbb9ba291cd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/37a0bfee-f59d-4eac-9738-8b65f9a1f5d2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/96a6718b-5da3-4366-b438-b4c12a8c472f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83a509ae-5545-44e3-9035-cfad7223f6e9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/659d2a6d-66fe-4305-a197-fd12a1f4969c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecc04ed1-4ed3-45db-8a42-0dd5921a6b0d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1012959a-0ee0-4b5c-9ab1-6493ebd7e1f1: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/badfe6bc-3516-42eb-b972-1b745eea352a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cd72ad5f-7382-4fdf-86ce-8b1b351cfb92: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d0484e49-909a-4f07-9ae7-5feeca76463c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e2b6fe2d-621f-4877-8f78-8d53e7ea9dd6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d223ac9a-efc5-4347-9094-26cbad475478: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/df366453-8108-4810-88aa-6d8717ed2207: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ebc9fa75-55d6-429f-b8a8-39d6a8c3fb6b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/79c35480-f71b-40cc-bd60-8e7c92471765: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0a1c672a-1d27-4d2c-ad79-0578792fbff7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1505eb53-3427-46b1-9d35-6a79869caf3f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21d6a91b-476e-4adc-b134-706054e27c27: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/21fc3b11-ed08-4039-91ac-7671e7cfdf9e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a61b68e2-82b3-47a7-85c1-60f599cdf14b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/00112d47-ecaf-458a-be6f-688b4e717f32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/73332e66-78b8-4231-be73-af231a04d117: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/708abe80-92a5-40e8-bd92-10d04887229d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4a2bae38-d759-40ea-9f98-105d86b83ef2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/08b17642-0a43-470f-b1d1-96e260df4b1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9fad80d5-9081-4323-afd5-9ab2600a215c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3270af3-de83-49f2-880a-fe1898b2a0c0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89b03e08-eeac-4571-9d38-e8d556ebaf8b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/bd6a8fea-b69c-4878-acd1-747079e01c50: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/31e49ce5-7621-43ff-a021-9251269a6aae: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2f05c1fd-2aeb-4b6d-8691-314177832de8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/069e6d0c-6dff-4962-8047-3d661ed5e55f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1a48765-ab33-4827-8fbb-dcedb9c674f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/085bd626-6ab4-4e89-a612-ab172a334680: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a37467cc-dc66-497d-84e8-bfb38aeae98e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fb28b148-9996-4ce4-895d-2f34370b3026: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae7531ae-4f59-49bc-9b2b-dda6eead7bc5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/eb28dde5-a3d5-47c7-97fd-33371853a3fe: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2798ee54-05c6-4266-806a-edd1ddef17c5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0635658-8be7-4a3c-b14d-399f0a5eb2a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4fa5ed47-a904-45c6-99c7-27ad17f85310: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/b3bdd8ce-9fdd-47bb-a1c8-68916b06413d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/35699192-0f26-4b87-9763-6513975384e2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/67a5d9d9-20b6-4eed-903b-fb0a6cad913f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e427a0b9-421f-42ed-9bc5-3301cd90dead: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/1d800a7e-d468-4b7c-be24-d3610b7e9a5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/49419f3a-cbb0-4ebc-aa88-c77451ce84ce: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9ee132ce-f187-4bb3-9427-41f12c158aef: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0438bfe3-d0f2-4afe-a366-d436de52275f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f95e44d4-0a8f-405b-bcf5-090360420bb6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c1c184f3-53bf-4e53-84b2-89c43cc2e644: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9b9d0b8b-c0f6-4b05-bc73-5c609947b416: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/093d6168-e86e-4012-8ef9-51a435f363a3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cc05b14-12e7-4a46-9688-c7e4eaf7582a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4c944688-9aa4-4df8-8369-92b10bc4ef0b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0f482898-5012-4c2e-80f9-3f762bc88023: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/81175e1a-5bb3-48df-bb9a-77058f4a612c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d4818514-a451-4f43-9b4b-82ff902cee85: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a73f8e0c-324c-4d72-b57e-ed054a3986a9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/fff69436-0508-475e-a87d-4b9949358b9b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa52854a-04f3-4c4d-a456-817b4ddf3dcd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f649e860-6104-49b2-96ec-9b219c4a49af: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f44032e1-03a6-470d-bdee-8a15621ca2c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/caf1f8c1-89f5-4e6e-bea5-ef2f6a3549e0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2da17859-7b71-41f3-87db-d050f7a56e05: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8a914105-4a39-4ab3-b8f4-28dd00f52138: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aa91418a-20ed-4670-b485-1dd4d42b0f04: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/388a34a1-6ac5-40a0-8d09-063b879faa95: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d6efd83d-257c-4209-81b7-f024f288e8a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1394880a-8569-4e55-8bf5-03ea3fa7e0cb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c616bb9-71ce-46f7-9455-1c7b728c3ffa: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f965a9f-8ae7-410d-a3b7-9b6baee58716: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/c6a00714-97a4-447a-b2f9-2cce2c9f2cdd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b75cfb35-a38b-4e9e-8142-9dae883c39b9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c5743079-2b9d-415c-abee-bcdf1aa14686: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ab7e3f6-5ffa-4dd1-8b28-3a7cca0c5553: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a6df61c-0075-406a-a182-335d763cdc2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7fb221b6-e9b7-4242-b173-33f614a8aa28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/44961f58-5903-4855-b339-ae7ad8a95eb7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6140c96d-aefa-480f-a6e8-c246c75ec4d8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4b26e25b-3f1a-40e1-b024-982427776258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/4d5cd76c-9881-44f5-abd0-71d0f4ea802e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9158e9fc-57f8-4329-9d39-f981562bbed9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/25fe382f-2fde-474b-9711-3f607b1ab4a2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/dffc9eb7-9a31-4f1d-bc8a-a5955e522258: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/74c3b1ef-3c2e-4a2d-aa50-56af25c54c1b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3a2942b0-00ef-4be0-bd38-fa465a00612d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d493ed3c-4421-4d0a-9412-f7ded7a9cf36: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7f3dcab4-8a33-4736-b6de-9210650e1e81: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b089708d-f683-449d-b1d1-9a5794f9eb49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e8b8696e-841b-4e38-b9b7-138ecdc0648c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0aaa2323-46c6-4a91-a62a-f275017b0c6d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/95840ef8-f578-4a3a-b2d4-eb2b7f862e51: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/89d6d6cd-306f-426e-b40a-105c0659aa07: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/82268482-06da-42b0-b5d7-87070baba16e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/28e2dda1-8d7f-4bff-94b5-8c7bdd969f98: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/def00d0a-ca0b-4948-bc3b-e8bb06022270: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e884e8f9-ed3e-46e1-8191-314074505e6a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd5ab13a-30df-4b91-91ee-4bf7382035c3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ae2a9b5b-b325-4f78-a76f-589d781ff9a8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/36f5720d-8ddb-4b06-b6db-338caf88ba4a: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/ffca7ddc-7f36-4f4c-a975-9600a346f37b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4e7500e5-a823-4dc6-95b2-a1e48ff51ca6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d80aa10d-8112-4292-96f0-993d9a24e943: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/34e30948-9926-419e-8879-4835370bf5d7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ed174a99-66cb-4713-ab79-c02837a19666: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c42b2b5-991d-42be-a550-c37266d8cf5f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e4dcbdb2-49b6-44e7-8ed5-a17a3c441965: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/48b04675-1c41-4f28-a2cd-4f7b5d289b49: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5a494b2f-af30-4804-976f-8d4da13eb546: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1283485f-60b2-42c7-b1ad-825d69dd2f1c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6c3275ec-066e-4120-8796-2cd280e761df: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a72e9d69-aa79-4e02-b96a-6a725129229e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f75bff5-bb31-4da7-a96b-641e4497b5f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/eb5ae508-8a49-4509-9fa9-6e8f9b9a8361: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f00ac70-3056-4ece-9a1c-01235ce7a037: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/45e60ae6-9b7e-47d0-9a40-1021438875bd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d48d0bc3-7119-4808-a2e4-2056251dc054: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/5ed19ff5-e3d4-43ae-8553-7495b47e8107: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ad4e05ae-bcac-4a08-a39f-8c9adb94e428: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91260346-c2d7-4f75-ae18-87adf9e294e5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c425c54-fb84-441d-8bf5-71b2a6cbfa79: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83cbdc45-b3fb-4c83-9dc9-887a9747dee6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/717e50a3-1fbf-4b57-af6a-eeafee8078f0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83c4264f-1ab5-4b8e-a940-543ef102a481: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c0934abc-3219-4363-a2de-892065cdf905: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6b27bcc5-e551-4908-a01f-7a07cb28d2eb: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/3724ecc6-bb1e-495d-ab2a-e84ac74ea774: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/6f0eeb90-bf26-496a-9957-d37b2a6f354e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f4baef03-0cb3-4a87-9b72-4635889b4908: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/27d8d87a-6e2a-4a6e-bff1-5a9da0fa5570: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f784f87-1d18-4f0b-8c4f-42a10c1c0fe9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f5eb4efd-f31f-4745-b633-07d3de46531e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/97623a4f-6720-4140-8393-a516283fabdf: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22ad59ee-9876-4582-8d43-59d4d2181a47: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/d1af7bee-aad7-426c-bd51-0a9a897ebc45: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70ff1707-209d-46f3-86b9-669c97af2d60: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/9dedfdfe-2a7b-4849-be25-1a0e9e5b3bac: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1f7524cf-9f2d-4a7a-ac70-fc14f22bc5d6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/19e9769b-2f1b-4dca-bb56-e3b7b3b23c94: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/bd0e1d86-892b-43be-a07e-730d489e856c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/22c943a4-ab28-4e02-804f-be961d5cf8d9: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/d9e7ed3c-4263-4ea0-bd26-41207713e86d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b2f912ca-cc76-48d9-b9ce-547b720a49b6: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4db4f5d3-cb10-4db1-a216-709fc3f898ad: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/83287618-af71-4bed-944e-d3e8f7f97286: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8e404137-abbf-4a56-8f5d-d3bc2c10461c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ffcb67a9-debb-47f7-b78a-46bae2581a2f: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/2c0405d6-a1a4-4421-ae49-fffcdb99459c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/78cd34bc-8373-47cd-8366-4d7b21f704b7: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0418e634-7d1c-4cf5-b74b-619ed56a8fc0: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7c3a3d48-f85a-4a97-afc6-c13aa99ed445: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/8894d06f-e650-4757-9f77-93cbd955d8dd: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91217a70-7396-4405-973c-cf371ab59dea: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/869d4f9d-ee60-4ed8-b090-1c95035aff1e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1cf5399f-9365-4a81-a8c1-17838cba0aa3: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/ecd81432-ba09-49fe-96b2-5114be3e0119: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/7732d05c-1ebd-41e9-8322-58bfaf153c87: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/4f714da5-7e94-43e1-bb5a-59ea823ca9f5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/aca45859-7248-44e0-b490-4059d4ee3891: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/902dba68-3468-4535-ae35-666a6f6adce8: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/a3a64f2b-2cd8-45ed-9952-017e8ac2e52c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/39dd73ab-eb52-4b9e-bf6f-32ed2cbe1b7d: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/cf23c608-7b27-453b-be5b-aa289584dd34: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/842e6166-77fc-49c3-897c-a71841d5b99b: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/70f37a82-d2ee-411a-9492-a908ab17f352: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f0d24239-f7d5-4625-a1bd-926c9c5b5c32: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/b91bd7cf-590f-40da-ba22-1605a94d2f28: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e2aed306-1ac0-4ba2-954f-f8a609cb6ded: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/5b37f460-8900-4d1c-84d2-ca0b9ff59277: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/e633ffa4-b3e4-410c-bd77-35153c72d2c2: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/f954a76d-5cec-4f5a-be4f-36f229a5817e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/0e43e886-f711-43ea-8758-899da279888c: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/c3d7f475-6922-41b9-b493-6cde30f63643: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter.hospitalization.dischargeDisposition.coding[0].system: A definition for CodeSystem 'http://www.nubc.org/patient-discharge' could not be found, so the code cannot be validated","type":"warning"},{"message":"Encounter/91353bc9-013a-4665-9790-12706db8b8a5: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1a9baa72-20f9-487a-8df3-f22b25ce1830: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Encounter/1711b0e8-ae28-466c-b439-3eff9887746e: Encounter: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:37.794-04:00"},{"id":"2bfa852e-1e7a-435d-8e79-3b298ec83577","created_at":"2026-05-22T21:07:38.052-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:38.052-04:00"},{"id":"3eb28bbc-83fa-409d-aeb0-7dde009b84f0","created_at":"2026-05-22T21:07:38.167-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9137a7a0-9bc1-455e-9b56-90b946c8665a","direction":"outgoing","index":142448,"result_id":"3eb28bbc-83fa-409d-aeb0-7dde009b84f0","status":200,"timestamp":"2026-05-22T21:07:38.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/b594895c-11cb-403f-a3bb-5729a3da4bd6","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:38.167-04:00"},{"id":"c02b7217-b55b-4f4f-b6f8-c8dedbde7c40","created_at":"2026-05-22T21:07:38.185-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_encounter","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:38.185-04:00"},{"id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","created_at":"2026-05-22T21:07:38.802-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"83c284c2-a52c-41e9-acce-70fc98d43e56","direction":"outgoing","index":142449,"result_id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","status":200,"timestamp":"2026-05-22T21:07:38.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=85","verb":"get"},{"id":"38f3637c-983e-4efb-b1db-1ec38f3cb6f8","direction":"outgoing","index":142450,"result_id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","status":200,"timestamp":"2026-05-22T21:07:38.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355","verb":"get"},{"id":"47ffd180-fc93-41e8-984a-b9e87cb53560","direction":"outgoing","index":142451,"result_id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","status":200,"timestamp":"2026-05-22T21:07:38.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/_search","verb":"post"},{"id":"6451e145-d529-4003-a181-a40f00bdfddc","direction":"outgoing","index":142452,"result_id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","status":200,"timestamp":"2026-05-22T21:07:38.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=Patient/355","verb":"get"},{"id":"1db6543e-3359-475c-8156-08b9a4800234","direction":"outgoing","index":142453,"result_id":"5b746c89-03ad-49f5-b2c5-f583a977dd00","status":200,"timestamp":"2026-05-22T21:07:38.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:38.802-04:00"},{"id":"ca79adac-8fef-424a-b52e-f13dabff456b","created_at":"2026-05-22T21:07:39.551-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ec238b9d-36fa-404d-aebd-9468667a6f28","direction":"outgoing","index":142454,"result_id":"ca79adac-8fef-424a-b52e-f13dabff456b","status":200,"timestamp":"2026-05-22T21:07:39.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=2020-12-07","verb":"get"},{"id":"e6bc1a59-003d-4957-8ba6-684cc2518ce2","direction":"outgoing","index":142455,"result_id":"ca79adac-8fef-424a-b52e-f13dabff456b","status":200,"timestamp":"2026-05-22T21:07:39.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=gt2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"027e4f89-3053-496f-9405-efddb03fec74","direction":"outgoing","index":142456,"result_id":"ca79adac-8fef-424a-b52e-f13dabff456b","status":200,"timestamp":"2026-05-22T21:07:39.606-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=ge2020-12-06T00:00:00%2B00:00","verb":"get"},{"id":"3f79b938-c226-471f-a435-46328030c29e","direction":"outgoing","index":142457,"result_id":"ca79adac-8fef-424a-b52e-f13dabff456b","status":200,"timestamp":"2026-05-22T21:07:39.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=lt2020-12-08T00:00:00%2B00:00","verb":"get"},{"id":"9eaa33ef-8fb8-4f1f-99cd-430cd10b5f07","direction":"outgoing","index":142458,"result_id":"ca79adac-8fef-424a-b52e-f13dabff456b","status":200,"timestamp":"2026-05-22T21:07:39.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?patient=355\u0026target-date=le2020-12-08T00:00:00%2B00:00","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_target_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:39.551-04:00"},{"id":"cd3327db-41b1-4b7b-a63e-3a66a32fd7db","created_at":"2026-05-22T21:07:39.871-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0d268189-ed05-474e-8161-a18338880d40","direction":"outgoing","index":142459,"result_id":"cd3327db-41b1-4b7b-a63e-3a66a32fd7db","status":400,"timestamp":"2026-05-22T21:07:39.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026patient=355","verb":"get"},{"id":"af404ac8-a8ca-4c1d-9615-01de6bdf4e77","direction":"outgoing","index":142460,"result_id":"cd3327db-41b1-4b7b-a63e-3a66a32fd7db","status":400,"timestamp":"2026-05-22T21:07:39.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?description=281004\u0026lifecycle-status=proposed\u0026patient=355","verb":"get"}],"result":"fail","result_message":"Unexpected response status: expected 200, but received 400","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_description_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:39.871-04:00"},{"id":"06c237bb-352b-4d92-8618-85829ffb6164","created_at":"2026-05-22T21:07:40.018-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"49cc35c2-eb89-40f0-9c0d-1fc3b4f083b6","direction":"outgoing","index":142461,"result_id":"06c237bb-352b-4d92-8618-85829ffb6164","status":200,"timestamp":"2026-05-22T21:07:40.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?lifecycle-status=active\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_lifecycle_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.018-04:00"},{"id":"d256ed18-4370-4167-93b0-209903f01220","created_at":"2026-05-22T21:07:40.157-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"730d183d-c7ed-49bd-b142-9fbc096b7af2","direction":"outgoing","index":142462,"result_id":"d256ed18-4370-4167-93b0-209903f01220","status":200,"timestamp":"2026-05-22T21:07:40.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.157-04:00"},{"id":"a1d6361a-deb6-4204-9326-88ecaff866ae","created_at":"2026-05-22T21:07:40.582-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"11ab7b44-fcde-4649-9dea-62c5e0ace2b3","direction":"outgoing","index":142463,"result_id":"a1d6361a-deb6-4204-9326-88ecaff866ae","status":200,"timestamp":"2026-05-22T21:07:40.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"5ae775a5-6e75-434a-bc6a-085b02a921ee","direction":"outgoing","index":142464,"result_id":"a1d6361a-deb6-4204-9326-88ecaff866ae","status":200,"timestamp":"2026-05-22T21:07:40.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"b6778653-0bfb-46ff-a8d9-adb21cd999c1","direction":"outgoing","index":142465,"result_id":"a1d6361a-deb6-4204-9326-88ecaff866ae","status":200,"timestamp":"2026-05-22T21:07:40.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Goal?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.582-04:00"},{"id":"a216b726-ee3b-4846-95f1-c2059ec43bd6","created_at":"2026-05-22T21:07:40.844-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Goal/abff4d7f-3e6f-4d6d-a607-fa1621fd8acb: Goal: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.844-04:00"},{"id":"cc74013c-2473-4149-873f-a30e59e26d5e","created_at":"2026-05-22T21:07:40.853-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.853-04:00"},{"id":"53e718ba-7bb4-440b-b21e-0193fb59e69a","created_at":"2026-05-22T21:07:40.859-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.859-04:00"},{"id":"f1e1087b-d8fb-46c5-838f-6c7f61ffed4a","created_at":"2026-05-22T21:07:40.864-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_goal","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:40.864-04:00"},{"id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","created_at":"2026-05-22T21:07:43.848-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8d064b72-f014-4bed-8598-b28ae9674bb9","direction":"outgoing","index":142466,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85","verb":"get"},{"id":"891bea2e-7735-4b48-b5af-343ae0ac247e","direction":"outgoing","index":142467,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a8ad383-0061-4d92-9f1b-045bcd8db4ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d4f66e6-0588-47f6-8822-d30dbe75844e","direction":"outgoing","index":142468,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/_search","verb":"post"},{"id":"f1ce2c3f-5d74-4798-89aa-08efac991598","direction":"outgoing","index":142469,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6a8ad383-0061-4d92-9f1b-045bcd8db4ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cc97d0ee-6f4d-443e-97cd-ecfd5356cefe","direction":"outgoing","index":142470,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=Patient/85","verb":"get"},{"id":"c8ef5f42-f2f3-4eca-a2df-d2938bd47d4c","direction":"outgoing","index":142471,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a9037be0-c4fe-48cd-bdaa-f3c7567d1b83\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e895fb7e-5881-460f-99a0-8e8015d18d06","direction":"outgoing","index":142472,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355","verb":"get"},{"id":"594319f9-0dc4-4b8e-b3a5-bed11744f55b","direction":"outgoing","index":142473,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=67520759-1d90-4bc8-ae31-58d7ecc5f231\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7acff63e-7103-4d0c-a481-528268cff8d0","direction":"outgoing","index":142474,"result_id":"dc5efaa3-4eb3-4ea8-8f52-a05054995cbd","status":200,"timestamp":"2026-05-22T21:07:43.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:43.848-04:00"},{"id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","created_at":"2026-05-22T21:07:46.136-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"315311ef-5c46-4655-8c56-dcfe4afdfa55","direction":"outgoing","index":142475,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1945-03-09T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"29a2578e-860f-4668-9116-103b83b38941","direction":"outgoing","index":142476,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=gt1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"33e9c956-550b-45ba-8b50-44fc65dd672b","direction":"outgoing","index":142477,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a000baf-da56-4348-abd9-c83d15e98e5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a00ee4cb-9d27-4631-8bd5-75adfa96c135","direction":"outgoing","index":142478,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=ge1945-03-08T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"49cbf126-d07b-4528-b1b8-c600ff26b8b1","direction":"outgoing","index":142479,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4cfa57ed-9569-4e99-ac63-4953be3855f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"64aca505-17a3-4764-8bdd-2751c2ebfcad","direction":"outgoing","index":142480,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=lt1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"834b15f9-3e37-4416-bc96-2f0fdb86c299","direction":"outgoing","index":142481,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=le1945-03-10T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ac41a343-f9e7-4644-a86e-33709d8e8e83","direction":"outgoing","index":142482,"result_id":"afc3f600-57cd-4838-86c5-0bd665e01ee5","status":200,"timestamp":"2026-05-22T21:07:46.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?date=1946-08-29T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:46.136-04:00"},{"id":"4fdbc6e9-a146-46e0-ac25-aa29427c98ec","created_at":"2026-05-22T21:07:47.188-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"92f4b4c8-854b-4e6e-b38f-4ec662fdc5f4","direction":"outgoing","index":142483,"result_id":"4fdbc6e9-a146-46e0-ac25-aa29427c98ec","status":200,"timestamp":"2026-05-22T21:07:47.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=85\u0026status=completed","verb":"get"},{"id":"ff61b48c-6cde-4c0b-95e1-31b37385cbe0","direction":"outgoing","index":142484,"result_id":"4fdbc6e9-a146-46e0-ac25-aa29427c98ec","status":200,"timestamp":"2026-05-22T21:07:47.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f45e6d8a-0ead-4fe3-92ac-8f8f21cef906\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9fb95c7-2e1f-4be2-b52b-885a213c52ec","direction":"outgoing","index":142485,"result_id":"4fdbc6e9-a146-46e0-ac25-aa29427c98ec","status":200,"timestamp":"2026-05-22T21:07:47.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?patient=355\u0026status=not-done","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:47.188-04:00"},{"id":"679fe01f-b42d-4257-868f-4e94fd1a7e88","created_at":"2026-05-22T21:07:47.357-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"56072ef0-cb23-487e-a37a-0e755f15c72a","direction":"outgoing","index":142486,"result_id":"679fe01f-b42d-4257-868f-4e94fd1a7e88","status":200,"timestamp":"2026-05-22T21:07:47.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:47.357-04:00"},{"id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","created_at":"2026-05-22T21:07:49.439-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7631ffca-9e46-4a72-b1a0-80381776af1e","direction":"outgoing","index":142487,"result_id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","status":200,"timestamp":"2026-05-22T21:07:49.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"702b676d-4b2b-4dcb-a318-a0eddfc55009","direction":"outgoing","index":142488,"result_id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","status":200,"timestamp":"2026-05-22T21:07:49.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f36d02cd-6707-464a-9a15-16097aa918d3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9294eed-1057-4806-8537-b8e73aec1982","direction":"outgoing","index":142489,"result_id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","status":200,"timestamp":"2026-05-22T21:07:49.493-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"03b61fa5-eaa9-4f4f-854c-7ce5269f7f7a","direction":"outgoing","index":142490,"result_id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","status":200,"timestamp":"2026-05-22T21:07:49.570-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc0b564c-45e9-48af-a2db-6b77e4ed5646\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae256458-41a0-484e-8feb-2168bd1024a8","direction":"outgoing","index":142491,"result_id":"73209bb6-7837-4426-bb0a-dcd7383f2e45","status":200,"timestamp":"2026-05-22T21:07:49.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Immunization?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:49.439-04:00"},{"id":"1a569835-3f7d-4071-98da-200815d3b96d","created_at":"2026-05-22T21:07:51.467-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Immunization/a0e3ba90-4efe-4dcc-a043-fce3210f416a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/99372baa-2e1e-4a22-a716-ca313b3fc37b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/8a627571-da2f-46ce-a05f-8017017ecf1e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/cb2df91c-fc84-4d5f-a1ca-67b97b46094c: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7ad7bf22-0a0c-4499-8428-810342824cf7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/49df1cfb-e27c-4ede-a3c0-83a4d2cd1da6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/bbf31da2-7dce-446b-bdb4-c52556d44460: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/29cbe8cc-4227-4f22-a8b4-e6fb26b59433: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/a72162e5-737e-49b3-851e-a8b8ea289245: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1458532d-c43c-4125-b87d-255618861da5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/93dede5b-0cf4-4a21-8c26-cb2677999d85: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/14a4f85e-2fb6-4f7e-b856-6741b2884a09: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/22cdc56c-389f-4887-8b2a-ed625a07450f: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c1c97782-f7e9-4fc6-94e9-09a40e7e2579: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1c361950-736f-4352-8f27-eaa2715dd4bb: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/ba5f560c-886c-4d7f-be3d-6119f2398194: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9efba8aa-ebb0-4e0f-afac-751d548d4bae: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7c630116-58c7-47cf-a5ce-7c92b78ca89d: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/c346b102-a978-4309-88df-70c93f705ef6: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/046c7453-ec95-4640-b659-6925b1cd0c2e: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization.vaccineCode: None of the codings provided are in the value set 'CVX Vaccines Administered Vaccine Set' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.6|20220701), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"warning"},{"message":"Immunization/9a950558-a8b5-4903-aa00-a33d2bd87868: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/7040857e-f969-41c8-9ec3-6834575a3fec: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/2292c05f-dc8c-4a17-bb41-75d09bad0b04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/091fe52a-0500-44c6-b00b-a36d915c24c4: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/11a3d479-6a01-4803-a791-ed64ee5aa5e3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/df4239b5-033d-4ef7-9a91-cde209507490: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/f4afb7f6-ac5c-49a5-8a20-9249070de875: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/55e7f076-d216-488e-a59e-0e675678b207: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/6b855eb1-8197-46c6-a5a2-626a70f20e1b: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/d6ba0015-cd28-4161-8bdf-d39c7f2645b7: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/78deb46c-7a0d-492c-ac51-0faecf259f04: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/1be25a5f-3b48-40b3-b66c-a759fe9d4fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/13bdaa38-8e09-47e9-81cc-9a352fd9e9de: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/b51b9fae-5840-45aa-8117-b9b01f274ce5: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/eae11e09-55aa-4357-8213-2712a0353b0a: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/0e27804f-dd0d-4bad-a74a-424bd3d22ba3: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/fc65e6d3-fe5a-4139-8c13-64ce37e1a0a2: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/94028b83-c68c-44b3-970a-857b11b90fc8: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/96f19749-f4b4-4a77-b69f-db23ecd30576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Immunization/822e052c-a01b-429b-8106-6a9703ac5576: Immunization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[{"name":"dar_code_found","type":"text","value":"true"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:51.467-04:00"},{"id":"6196d00c-48fe-4cbb-ac34-c5767650b41e","created_at":"2026-05-22T21:07:51.535-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:51.535-04:00"},{"id":"f9131b2c-d70e-4a46-af7d-b5bfee5aaa83","created_at":"2026-05-22T21:07:51.537-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:51.537-04:00"},{"id":"7add8bcc-393f-48d6-8b2c-096aa2216d99","created_at":"2026-05-22T21:07:51.539-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_immunization","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:51.539-04:00"},{"id":"42980144-868f-4625-81a9-a34b37e0f38c","created_at":"2026-05-22T21:07:52.348-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c5c15f51-2757-4e34-af43-461dc8188481","direction":"outgoing","index":142492,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85","verb":"get"},{"id":"1bf9335d-c779-4b64-8350-e0d5b3251a50","direction":"outgoing","index":142493,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/_search","verb":"post"},{"id":"551dca87-8016-4e1c-91d5-a923efa13668","direction":"outgoing","index":142494,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85","verb":"get"},{"id":"f0036380-b14d-4c09-be84-55fc571c65a7","direction":"outgoing","index":142495,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=Patient/85","verb":"get"},{"id":"b6e0584c-a3cc-411c-a785-35d197201bb6","direction":"outgoing","index":142496,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=355","verb":"get"},{"id":"d53247c2-a7d1-40db-bf2c-2667bba411fd","direction":"outgoing","index":142497,"result_id":"42980144-868f-4625-81a9-a34b37e0f38c","status":200,"timestamp":"2026-05-22T21:07:52.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:52.348-04:00"},{"id":"c3272fdc-a76e-47a1-8930-88292840cee3","created_at":"2026-05-22T21:07:52.875-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ead53b32-d9fe-43f6-b81a-4f0890072e0e","direction":"outgoing","index":142498,"result_id":"c3272fdc-a76e-47a1-8930-88292840cee3","status":200,"timestamp":"2026-05-22T21:07:52.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=FFC","verb":"get"},{"id":"e32fe7bd-5841-45da-ae34-40a322d97ef6","direction":"outgoing","index":142499,"result_id":"c3272fdc-a76e-47a1-8930-88292840cee3","status":200,"timestamp":"2026-05-22T21:07:52.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed\u0026type=http://terminology.hl7.org/CodeSystem/v3-ActCode%7CFFC","verb":"get"},{"id":"58be22f3-149f-4d04-9cbe-a9fb9ca76ca8","direction":"outgoing","index":142500,"result_id":"c3272fdc-a76e-47a1-8930-88292840cee3","status":200,"timestamp":"2026-05-22T21:07:52.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown\u0026type=DF,EM,SO,FF,FFC,FFP,FFSS,TF,FS,MS,RF,UD,RFC,RFCS,RFF,RFFS,RFP,RFPS,RFS,TB,TBS,UDE","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_status_type_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:52.875-04:00"},{"id":"44ee1fb2-4651-4dc1-87d2-8949ba705826","created_at":"2026-05-22T21:07:53.328-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a58eeb97-72c0-4e95-bdd4-8b70ee81c46b","direction":"outgoing","index":142501,"result_id":"44ee1fb2-4651-4dc1-87d2-8949ba705826","status":200,"timestamp":"2026-05-22T21:07:53.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=completed","verb":"get"},{"id":"1cd322e4-c092-4674-8846-352e2a4369eb","direction":"outgoing","index":142502,"result_id":"44ee1fb2-4651-4dc1-87d2-8949ba705826","status":200,"timestamp":"2026-05-22T21:07:53.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_include=MedicationDispense:medication\u0026patient=85\u0026status=completed","verb":"get"},{"id":"534b434c-8385-42e2-a8d8-7e8b06ffc102","direction":"outgoing","index":142503,"result_id":"44ee1fb2-4651-4dc1-87d2-8949ba705826","status":200,"timestamp":"2026-05-22T21:07:53.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?patient=85\u0026status=preparation,in-progress,cancelled,on-hold,completed,entered-in-error,stopped,declined,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:53.328-04:00"},{"id":"303dadd2-c2e4-4c54-917d-850d1f531281","created_at":"2026-05-22T21:07:53.492-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5c27d8a3-3443-4090-8a7c-7d6bb1169bac","direction":"outgoing","index":142504,"result_id":"303dadd2-c2e4-4c54-917d-850d1f531281","status":200,"timestamp":"2026-05-22T21:07:53.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:53.492-04:00"},{"id":"73ca1b4d-8fae-44e6-b9ea-7af3ede6300f","created_at":"2026-05-22T21:07:53.916-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0a44436c-e9b7-408f-9413-7857ab1cc91d","direction":"outgoing","index":142505,"result_id":"73ca1b4d-8fae-44e6-b9ea-7af3ede6300f","status":200,"timestamp":"2026-05-22T21:07:53.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"c383fb34-64b0-4a08-9fc9-b3f8bb07055c","direction":"outgoing","index":142506,"result_id":"73ca1b4d-8fae-44e6-b9ea-7af3ede6300f","status":200,"timestamp":"2026-05-22T21:07:53.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"60caafb3-cb20-4ff9-be9d-d53fcb552665","direction":"outgoing","index":142507,"result_id":"73ca1b4d-8fae-44e6-b9ea-7af3ede6300f","status":200,"timestamp":"2026-05-22T21:07:53.954-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationDispense?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:53.916-04:00"},{"id":"703f7ba5-5d2f-4669-bb1c-539db95e17e9","created_at":"2026-05-22T21:07:55.714-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationDispense/b53eb2f0-96cb-4567-868c-1fcf37ebe172: MedicationDispense: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:55.714-04:00"},{"id":"caa4a7d8-af8b-4be6-a588-80bad8835362","created_at":"2026-05-22T21:07:55.731-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:55.731-04:00"},{"id":"b38f4754-9d43-419a-922a-57bdb0eaad16","created_at":"2026-05-22T21:07:56.216-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"90eceee9-6239-4293-a66e-2d3b42572e0a","direction":"outgoing","index":142508,"result_id":"b38f4754-9d43-419a-922a-57bdb0eaad16","status":200,"timestamp":"2026-05-22T21:07:56.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Medication/538e167e-1d3e-4383-b03f-5de0661d33b1","verb":"get"},{"id":"a870e146-69e3-4708-9e8f-0b18bcb8d35a","direction":"outgoing","index":142509,"result_id":"b38f4754-9d43-419a-922a-57bdb0eaad16","status":200,"timestamp":"2026-05-22T21:07:56.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"3fd73db8-4767-4b13-9084-5b7d3de95fd2","direction":"outgoing","index":142510,"result_id":"b38f4754-9d43-419a-922a-57bdb0eaad16","status":200,"timestamp":"2026-05-22T21:07:56.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:56.216-04:00"},{"id":"70d2cb12-916e-48c6-bb77-2888d0f7ed4b","created_at":"2026-05-22T21:07:56.279-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_dispense","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:07:56.279-04:00"},{"id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","created_at":"2026-05-22T21:08:03.780-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"844c8ec0-fa77-47fb-95c1-03b1a81392d5","direction":"outgoing","index":142511,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=85","verb":"get"},{"id":"fc47df3f-e1f3-4f65-a6c9-51b98aaaac1e","direction":"outgoing","index":142512,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=85","verb":"get"},{"id":"60c23b4f-f1c8-4748-be77-6d8436e61e32","direction":"outgoing","index":142513,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85","verb":"get"},{"id":"433a43e8-d4d3-48eb-bd80-2718dbd0e52b","direction":"outgoing","index":142514,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1263b25-cd97-4706-b7fe-879a6f84f6a3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e04731b2-dad6-449a-90ee-afc690a58bed","direction":"outgoing","index":142515,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/_search","verb":"post"},{"id":"5d15b2b0-2989-4a31-aebf-4e2bd20a8557","direction":"outgoing","index":142516,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1263b25-cd97-4706-b7fe-879a6f84f6a3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"091e6db8-74dc-4726-97fe-86a87d4b128a","direction":"outgoing","index":142517,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_include=MedicationRequest:medication\u0026intent=order\u0026patient=85","verb":"get"},{"id":"fd868f57-ccd7-49a2-89ec-d81b7377d788","direction":"outgoing","index":142518,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.887-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=483b819c-50e2-4be0-a3fd-8e541d08cdb8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_include=MedicationRequest%3Amedication\u0026_bundletype=searchset","verb":"get"},{"id":"f0da5d44-1b7e-44ae-a5cc-7f73abe2c03f","direction":"outgoing","index":142519,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=Patient/85","verb":"get"},{"id":"5b4a4e38-4ab2-4643-bb4c-7520780cc77a","direction":"outgoing","index":142520,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=86b8fb6f-6b53-4919-a7fb-215e891f1c9f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12236fe5-b470-4a03-881e-13cf1c468c63","direction":"outgoing","index":142521,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=85","verb":"get"},{"id":"4df94113-5825-4bd9-9c5e-abd79aed6db4","direction":"outgoing","index":142522,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=85","verb":"get"},{"id":"f264a3d5-c21f-424a-94c0-db965d63859e","direction":"outgoing","index":142523,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=85","verb":"get"},{"id":"5a214c4f-8055-4316-b64d-8e3c9d2b6f13","direction":"outgoing","index":142524,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.965-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=85","verb":"get"},{"id":"a92b5c86-ddb2-4313-b941-0e5db3a4c49b","direction":"outgoing","index":142525,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=85","verb":"get"},{"id":"54f81410-6aab-4a02-9ee8-5f043af1a535","direction":"outgoing","index":142526,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:03.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=355","verb":"get"},{"id":"2b49bf00-fe78-417f-ae2a-851693382b19","direction":"outgoing","index":142527,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355","verb":"get"},{"id":"7c31a2f0-aa64-4166-8f95-90725e36a68e","direction":"outgoing","index":142528,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=355","verb":"get"},{"id":"9fa726a9-ecf5-4dd5-a1ae-385eee0c64d7","direction":"outgoing","index":142529,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f9ec04a-5a3c-43a1-ae26-dbb8ae5b37b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ab7a6cb-0543-41c0-9772-aefc4ed7403f","direction":"outgoing","index":142530,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=355","verb":"get"},{"id":"b385743e-1b9b-42f2-ad0f-081acd909a1e","direction":"outgoing","index":142531,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=355","verb":"get"},{"id":"33a840ca-2a50-406f-aed2-d1ea12f76a13","direction":"outgoing","index":142532,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=355","verb":"get"},{"id":"d1134585-af84-4d8c-9735-1c82c105aed0","direction":"outgoing","index":142533,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=355","verb":"get"},{"id":"c6c60f69-d0df-4718-a0ce-2d0a5adaa4d7","direction":"outgoing","index":142534,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=355","verb":"get"},{"id":"fd5c753e-6a8a-409e-803f-73d1bb4d70fb","direction":"outgoing","index":142535,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal\u0026patient=907","verb":"get"},{"id":"83cdbb39-7f62-470a-ac3a-bd7bb1632f11","direction":"outgoing","index":142536,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=907","verb":"get"},{"id":"1524745e-1962-4249-9943-79278417d6d0","direction":"outgoing","index":142537,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=907","verb":"get"},{"id":"54603796-baab-45c0-9ca7-1773a6337fc2","direction":"outgoing","index":142538,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.150-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=original-order\u0026patient=907","verb":"get"},{"id":"0e28acf7-e207-44e6-a56f-e2e8680f7d23","direction":"outgoing","index":142539,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=reflex-order\u0026patient=907","verb":"get"},{"id":"15f1cdff-d158-438d-9d52-4a41411d4373","direction":"outgoing","index":142540,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=filler-order\u0026patient=907","verb":"get"},{"id":"bb14cef4-8df2-4b30-9145-bb8e9ecc026a","direction":"outgoing","index":142541,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=instance-order\u0026patient=907","verb":"get"},{"id":"d2d5027d-8fac-4a1f-b4e3-aeae80f13c95","direction":"outgoing","index":142542,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=option\u0026patient=907","verb":"get"},{"id":"a1cf5b2f-0c80-469e-9820-1ab0b869cae4","direction":"outgoing","index":142543,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"},{"id":"f1b2c1ed-9724-4aab-8229-6b0d80191664","direction":"outgoing","index":142544,"result_id":"8588bc7f-0935-4fdf-8bc5-5c3fd7ab7b79","status":200,"timestamp":"2026-05-22T21:08:04.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e12b6392-8dc3-46e6-a4b3-e4891396ec16\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:03.780-04:00"},{"id":"a0cf9e85-42bb-4313-b800-031776b03969","created_at":"2026-05-22T21:08:04.744-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cc24509e-8b56-4e74-9674-0a817e56cb83","direction":"outgoing","index":142545,"result_id":"a0cf9e85-42bb-4313-b800-031776b03969","status":200,"timestamp":"2026-05-22T21:08:04.749-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=order\u0026patient=85","verb":"get"},{"id":"076c29e8-4c3c-4c4a-a8c9-91a30a9b30b0","direction":"outgoing","index":142546,"result_id":"a0cf9e85-42bb-4313-b800-031776b03969","status":200,"timestamp":"2026-05-22T21:08:04.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/2dcfbf7a-04f6-474c-9a9c-13c8dfa62537\u0026intent=order\u0026patient=355","verb":"get"},{"id":"7618ede6-7bbd-43b2-b39c-17ea78b5380a","direction":"outgoing","index":142547,"result_id":"a0cf9e85-42bb-4313-b800-031776b03969","status":200,"timestamp":"2026-05-22T21:08:04.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_encounter_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:04.744-04:00"},{"id":"cca47575-1bc9-46a8-802d-e904c6d977d0","created_at":"2026-05-22T21:08:05.974-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5331545e-288b-409e-8534-c3ffe63c7302","direction":"outgoing","index":142548,"result_id":"cca47575-1bc9-46a8-802d-e904c6d977d0","status":200,"timestamp":"2026-05-22T21:08:05.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=order\u0026patient=85\u0026status=stopped","verb":"get"},{"id":"ea0f0a06-cf47-48e2-a54d-f33a70775954","direction":"outgoing","index":142549,"result_id":"cca47575-1bc9-46a8-802d-e904c6d977d0","status":200,"timestamp":"2026-05-22T21:08:06.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=79b11076-37f4-4a45-9048-e13f29bda3d2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62059188-e220-4316-865d-e5bdeebe618c","direction":"outgoing","index":142550,"result_id":"cca47575-1bc9-46a8-802d-e904c6d977d0","status":200,"timestamp":"2026-05-22T21:08:06.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=plan\u0026patient=355\u0026status=stopped","verb":"get"},{"id":"1a8a0c02-36fe-498e-aab0-3b519ce46a2a","direction":"outgoing","index":142551,"result_id":"cca47575-1bc9-46a8-802d-e904c6d977d0","status":200,"timestamp":"2026-05-22T21:08:06.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85\u0026status=active,on-hold,cancelled,completed,entered-in-error,stopped,draft,unknown","verb":"get"},{"id":"6c722cdb-4379-4f84-ac74-dc36e9396bb0","direction":"outgoing","index":142552,"result_id":"cca47575-1bc9-46a8-802d-e904c6d977d0","status":200,"timestamp":"2026-05-22T21:08:06.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1c67ef8-ac49-42c2-be56-bd7bf09fabd6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:05.974-04:00"},{"id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","created_at":"2026-05-22T21:08:09.109-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e285b841-c9a9-463d-9ad3-1b94bbc11006","direction":"outgoing","index":142553,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"ddcc3e72-8aa0-4ae5-b7f3-1173b1aab0aa","direction":"outgoing","index":142554,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=gt1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"2382876b-23bc-4c9f-8be5-8b31ade9e0b1","direction":"outgoing","index":142555,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e5de0ba3-221f-43d3-afe5-d11de0e1f630\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"715be1d2-f378-436c-be17-ef698795ee7b","direction":"outgoing","index":142556,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=ge1940-12-23T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"25826753-88ab-4ea9-ab9b-a1a1da3acff3","direction":"outgoing","index":142557,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a8704967-be29-45fb-b825-39e8381e39f8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"32b1f903-ee64-4a36-aaa9-6cadd972c7cb","direction":"outgoing","index":142558,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=lt1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"f9ef829d-7ca4-4846-afd8-1563a6f754ff","direction":"outgoing","index":142559,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=le1940-12-25T00:11:45-05:00\u0026intent=order\u0026patient=85","verb":"get"},{"id":"04d3935c-20c9-4f9c-b5e8-2ed2505956ce","direction":"outgoing","index":142560,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=2020-08-13T19:33:18-04:00\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"1bd6789d-d358-4056-9906-a76b84bee6f0","direction":"outgoing","index":142561,"result_id":"dec2e295-d1c6-4abb-a2ca-09cc3143aff1","status":200,"timestamp":"2026-05-22T21:08:09.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?authoredon=1940-12-24T00:11:45-05:00\u0026intent=proposal,plan,order,original-order,reflex-order,filler-order,instance-order,option\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_authoredon_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:09.109-04:00"},{"id":"eb6aedb4-8a6b-450c-9fab-c7532731143d","created_at":"2026-05-22T21:08:09.359-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f6fb1f1c-9224-4281-b020-3d327fbd0ffa","direction":"outgoing","index":142562,"result_id":"eb6aedb4-8a6b-450c-9fab-c7532731143d","status":200,"timestamp":"2026-05-22T21:08:09.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:09.359-04:00"},{"id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","created_at":"2026-05-22T21:08:14.274-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4850a2e1-2ba5-4ba5-86b6-fa38283c467f","direction":"outgoing","index":142563,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=85","verb":"get"},{"id":"40eee4b1-4d51-4cc9-8792-0b92cb68fd6b","direction":"outgoing","index":142564,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=85","verb":"get"},{"id":"5d3e9874-6054-492f-bef2-3ee7b39c9721","direction":"outgoing","index":142565,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=85","verb":"get"},{"id":"b452e388-42fd-4acf-a31b-c386a19ce65b","direction":"outgoing","index":142566,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b796445e-46c3-43a9-af7e-39ca5ddcf323\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e6376f9-0ed6-46c8-8744-bdc1e16e91f3","direction":"outgoing","index":142567,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=85","verb":"get"},{"id":"aef85167-7f76-4b05-b6d2-3483c68b379c","direction":"outgoing","index":142568,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=85","verb":"get"},{"id":"e30e6bc7-acea-4683-a277-5689ccc66d09","direction":"outgoing","index":142569,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=85","verb":"get"},{"id":"22795029-f872-4928-b31e-c456389cf0c6","direction":"outgoing","index":142570,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=85","verb":"get"},{"id":"aaa9d69e-3be6-424e-8d3c-1c71898d61cb","direction":"outgoing","index":142571,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=85","verb":"get"},{"id":"b8ad969f-12b1-4c01-97c2-650386ac31b2","direction":"outgoing","index":142572,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=355","verb":"get"},{"id":"40548820-c347-4347-9fbe-1ae8cd3a2b12","direction":"outgoing","index":142573,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=355","verb":"get"},{"id":"4155e0e3-2328-41aa-8c43-8991ca5a275e","direction":"outgoing","index":142574,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=355","verb":"get"},{"id":"e0729c94-5d1f-4515-b677-1a9df30ea29e","direction":"outgoing","index":142575,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=896cc4dc-353c-4e8b-853f-6f7cb7f2ea99\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"432ef9e7-033c-4377-96df-0aa623c4fbc5","direction":"outgoing","index":142576,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=355","verb":"get"},{"id":"cf5f3ad9-f15b-4a9f-8ac9-a5f1a0417c00","direction":"outgoing","index":142577,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.560-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=355","verb":"get"},{"id":"bc387750-bf2f-4aaf-8cb2-d017c8cff5bb","direction":"outgoing","index":142578,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=355","verb":"get"},{"id":"87ed86f0-5959-40c8-8d19-cbf7056aae72","direction":"outgoing","index":142579,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=355","verb":"get"},{"id":"bc19d3dc-c973-48a1-98d4-d6214cea4314","direction":"outgoing","index":142580,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=355","verb":"get"},{"id":"5ce27fe3-8460-45b2-a03c-ad382d1b8933","direction":"outgoing","index":142581,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=proposal\u0026patient=907","verb":"get"},{"id":"1d804245-73cd-4e92-83c0-5196e5e6051f","direction":"outgoing","index":142582,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=plan\u0026patient=907","verb":"get"},{"id":"5714a6d5-9216-4ed1-a8c6-e0cfa2509f40","direction":"outgoing","index":142583,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=order\u0026patient=907","verb":"get"},{"id":"2e2abad0-7787-4b72-b1c7-d291e9503202","direction":"outgoing","index":142584,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=original-order\u0026patient=907","verb":"get"},{"id":"3047647f-d873-4bfd-b0c1-f247ba14161d","direction":"outgoing","index":142585,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=reflex-order\u0026patient=907","verb":"get"},{"id":"b4545af9-d1da-4004-9338-b942e9d694a2","direction":"outgoing","index":142586,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=filler-order\u0026patient=907","verb":"get"},{"id":"ce4ec93d-eb05-429c-88b9-96a2ee5771db","direction":"outgoing","index":142587,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=instance-order\u0026patient=907","verb":"get"},{"id":"17ecf17b-e934-4149-be7f-a2f18b6c2fb6","direction":"outgoing","index":142588,"result_id":"9be2b0d9-8239-4e14-9f61-7af69203cd01","status":200,"timestamp":"2026-05-22T21:08:14.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4/MedicationRequest?_revinclude=Provenance:target\u0026intent=option\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:14.274-04:00"},{"id":"dbe00da4-c27a-42ce-af88-5996fa803465","created_at":"2026-05-22T21:08:19.282-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/3fba7d68-1e43-4cb0-af1e-452b189ed9c8: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/d3b5abdf-e71d-456e-b48e-519d86cd9d0d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#105078)","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest.dosageInstruction[0].text: value should not start or finish with whitespace 'Take at regular intervals. Complete the prescribed course unless otherwise directed.\\n'","type":"warning"},{"message":"MedicationRequest/692d0228-b74a-464a-8ddc-33373bb6fdf5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.extension[0]: Unknown extension http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication-adherence","type":"info"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/c9237f7a-0bfc-4d52-853c-49411977638d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#562251)","type":"warning"},{"message":"MedicationRequest/6a34f335-6e32-427e-8d4b-4a934a83be90: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1043400)","type":"warning"},{"message":"MedicationRequest/84dd6f8a-77e9-4a5d-bb09-4ec1e643f0e5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/42c6c5b6-fe5f-41ac-b552-e31bf3051c74: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/53eaf5a8-d7d5-48ee-b7e1-c120bd228a7c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/6afcd943-c731-41c9-9f42-683217e754c3: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/76cee597-bee5-4a11-a1f9-2350921aab57: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/bb9c39bb-2c23-47d3-9c78-120c83e251d0: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/f8fc1447-0c7a-403c-8d24-3f7ca077962d: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313988)","type":"warning"},{"message":"MedicationRequest/0cef900e-ee70-4fd1-a5c8-6bbab523b67e: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/b94c7e66-69c1-4797-83a8-64ff5dfe36a5: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/d079cb95-9f96-4aa9-b0d3-382449026f1c: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/53498868-eb20-402f-b6c6-654b935f75aa: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/4baa03f3-952b-4f53-8f52-b817f5313f9b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fe22c59-5407-413e-8232-99e49dcab682: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#243670)","type":"warning"},{"message":"MedicationRequest/9bfc680f-6bca-49de-86ba-c7b8c4eb6784: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/e9d66023-7094-478f-9660-ea65340d6cad: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/0e35eea7-45dd-4f3e-9028-175f93091240: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f6b163a2-2c2d-4883-8b7b-5f6bbe96917b: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/f70c99ae-65af-481a-9557-6b06e218dbea: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/9fa052ea-78ac-4249-9636-9223f041cdd2: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/bbf0ff4f-f526-4b12-9df2-ec56d9b9b510: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/3ad63e55-7f12-4d89-b80a-ca75c117fe31: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/c1f33a08-bb16-4621-966f-acec6df9fa86: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/5441d3ad-dd91-4623-b069-363746b10d98: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/fd71f9cc-cbd8-47bc-91d1-3b5fe49aba81: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/f7d508bc-4a53-410c-bd99-5d7af39209db: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#313782)","type":"warning"},{"message":"MedicationRequest/646b3a8c-68cc-4969-b34e-09bfa7787172: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#895994)","type":"warning"},{"message":"MedicationRequest/74adb9e3-81ea-4c77-b2c2-644e51974fc9: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest.medication.ofType(CodeableConcept): None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#2123111)","type":"warning"},{"message":"MedicationRequest/0fd7e752-3111-43d7-880d-0fad08bf29c6: MedicationRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:19.282-04:00"},{"id":"5769c75f-9151-4a1f-9a7d-248ffc7e80df","created_at":"2026-05-22T21:08:19.854-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code.coding[0].system: A definition for CodeSystem 'http://www.nlm.nih.gov/research/umls/rxnorm' version '06052023' could not be found, so the code cannot be validated. Valid versions: 03022026","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication.code: None of the codings provided are in the value set 'Medication Clinical Drug' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1010.4|20170601), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://www.nlm.nih.gov/research/umls/rxnorm#1719286)","type":"warning"},{"message":"Medication/538e167e-1d3e-4383-b03f-5de0661d33b1: Medication: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:19.854-04:00"},{"id":"48bea80f-c16d-496c-9423-74e5686dea9f","created_at":"2026-05-22T21:08:19.880-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:19.880-04:00"},{"id":"63ce62f0-6b00-47f3-98ef-86cea878df4c","created_at":"2026-05-22T21:08:20.138-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ba4c24bd-66fa-44f7-b313-279065a873ee","direction":"outgoing","index":142589,"result_id":"63ce62f0-6b00-47f3-98ef-86cea878df4c","status":200,"timestamp":"2026-05-22T21:08:20.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"},{"id":"87cb8b42-c449-4b02-88d3-3e98394511ed","direction":"outgoing","index":142590,"result_id":"63ce62f0-6b00-47f3-98ef-86cea878df4c","status":200,"timestamp":"2026-05-22T21:08:20.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/9d3f06c6-ad58-41ab-8d0f-0320b6ab2389","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:20.138-04:00"},{"id":"03740d6b-e863-4962-8a5a-a0bcd973c0e2","created_at":"2026-05-22T21:08:20.212-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_medication_request","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:20.212-04:00"},{"id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","created_at":"2026-05-22T21:08:21.018-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bcac1d20-e0e8-44b1-9cbb-9775a37f8664","direction":"outgoing","index":142591,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"73e6ffb2-ad92-4bc8-be3d-9b5139640f05","direction":"outgoing","index":142592,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"f83ecd5a-2bdd-45c1-abbd-10041eae889f","direction":"outgoing","index":142593,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"afecd385-cb69-42cc-b986-441fb1504d36","direction":"outgoing","index":142594,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"aff98444-6771-4a03-80cd-54919b393c1a","direction":"outgoing","index":142595,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"0b2fb35b-a9f2-4452-8f58-e8ba3dd3d365","direction":"outgoing","index":142596,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:21.018-04:00"},{"id":"36fe710d-617c-419b-9292-07113ffd9fe0","created_at":"2026-05-22T21:08:22.008-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"08d97c66-9040-4569-995d-351656586647","direction":"outgoing","index":142597,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"769c8d23-03e9-42fd-8b16-6b51858dfe91","direction":"outgoing","index":142598,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fd376b98-30f8-48a9-84ac-1d2ed1efde92","direction":"outgoing","index":142599,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2b7c79f4-262d-45cc-b51f-ddd98613c450","direction":"outgoing","index":142600,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"12bf69d3-de68-4131-9473-0744afcfbe0c","direction":"outgoing","index":142601,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7cf71ec6-5b8f-43cd-9ee5-b0e14bfe3d19","direction":"outgoing","index":142602,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6cf0274e-6a72-4477-b7bc-74560b6404b7","direction":"outgoing","index":142603,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:22.008-04:00"},{"id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","created_at":"2026-05-22T21:08:22.655-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cdc426de-2cc6-4814-8f03-32123f7ebf7d","direction":"outgoing","index":142604,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"6e179045-07b7-4b6d-add4-f38b725a0d02","direction":"outgoing","index":142605,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"302adaa8-6ddc-4cc0-b893-228ad0f5af77","direction":"outgoing","index":142606,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"a33390a3-2ec0-43c9-b349-fd0ccec443a9","direction":"outgoing","index":142607,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:22.655-04:00"},{"id":"e29fea05-dac2-403d-bdb8-001548160375","created_at":"2026-05-22T21:08:23.695-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"213dc0d9-1bfd-49f7-b828-bb7744da6935","direction":"outgoing","index":142608,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ab5d2ae6-1983-46c9-b740-9737cccb650a","direction":"outgoing","index":142609,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a2917f9e-9f11-4325-b1a7-11da2ae73d78","direction":"outgoing","index":142610,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8b898c0c-66f7-4f7d-81d8-cfbc310beac8","direction":"outgoing","index":142611,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c7073f7d-678a-4cb9-a344-2eace39c1e1b","direction":"outgoing","index":142612,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"843b1127-6ac8-4667-9ede-5fcc5839d169","direction":"outgoing","index":142613,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5429d306-1ba7-4303-a371-c11c8c5518f4","direction":"outgoing","index":142614,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:23.695-04:00"},{"id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","created_at":"2026-05-22T21:08:24.214-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"23c11438-ab61-462f-8ca4-9228f663e743","direction":"outgoing","index":142615,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"6b682127-e53e-4658-aa8e-713ad87748da","direction":"outgoing","index":142616,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"1c638932-2bd5-4571-8897-36971bb14bc9","direction":"outgoing","index":142617,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:24.214-04:00"},{"id":"91053c2d-fc8d-4f1b-ab67-c7c98ce20aa4","created_at":"2026-05-22T21:08:24.433-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"192d82ae-98c9-43ae-9cea-2637e7f3b2b6","direction":"outgoing","index":142618,"result_id":"91053c2d-fc8d-4f1b-ab67-c7c98ce20aa4","status":200,"timestamp":"2026-05-22T21:08:24.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:24.433-04:00"},{"id":"526a00b7-854d-40a8-a6ba-7daab87bd7f3","created_at":"2026-05-22T21:08:24.988-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a98f15ff-635b-457f-94ed-13188c005aae","direction":"outgoing","index":142619,"result_id":"526a00b7-854d-40a8-a6ba-7daab87bd7f3","status":200,"timestamp":"2026-05-22T21:08:24.991-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"7cee27ea-2d4d-4e60-a6e1-c203939c7c5c","direction":"outgoing","index":142620,"result_id":"526a00b7-854d-40a8-a6ba-7daab87bd7f3","status":200,"timestamp":"2026-05-22T21:08:25.006-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"7e86a1e7-f315-41bd-ac32-c49c195239f8","direction":"outgoing","index":142621,"result_id":"526a00b7-854d-40a8-a6ba-7daab87bd7f3","status":200,"timestamp":"2026-05-22T21:08:25.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:24.988-04:00"},{"id":"6426c284-eb0a-4d9d-9c34-a19828bad663","created_at":"2026-05-22T21:08:27.630-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:27.630-04:00"},{"id":"b3978cd4-5940-495b-8fbd-f8134dd73cf4","created_at":"2026-05-22T21:08:27.691-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:27.691-04:00"},{"id":"1fe936ea-dc31-4d4f-9cda-c001100723b7","created_at":"2026-05-22T21:08:28.555-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c02d7a5a-e2e3-4e13-a3e6-c67f6106614e","direction":"outgoing","index":142622,"result_id":"1fe936ea-dc31-4d4f-9cda-c001100723b7","status":200,"timestamp":"2026-05-22T21:08:28.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:28.555-04:00"},{"id":"e52d943f-5960-42d5-9042-2b6d14b968e5","created_at":"2026-05-22T21:08:28.604-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_lab","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:28.604-04:00"},{"id":"46867c45-ec6e-4f78-92ef-df6997ebd609","created_at":"2026-05-22T21:08:29.410-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"55c3deab-56c3-4275-9236-70ab4ba25132","direction":"outgoing","index":142623,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"0a277ba1-5abf-47c7-b7f6-bd2894e2c337","direction":"outgoing","index":142624,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"e80d7c67-32ba-433c-a61c-aa6fd7d87077","direction":"outgoing","index":142625,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"3fa301f3-2924-4c9b-8389-aa6d2aec31ca","direction":"outgoing","index":142626,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"18628b98-cee4-4c71-9d75-bc2afca79929","direction":"outgoing","index":142627,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"af104007-3f40-4991-9cd1-b0c4421c68fa","direction":"outgoing","index":142628,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:29.410-04:00"},{"id":"90fe5e8f-7230-47cd-b091-f4714523ea34","created_at":"2026-05-22T21:08:30.220-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8b6e5305-2a6c-46a9-a472-a9c5b69d0c8b","direction":"outgoing","index":142629,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c5a7d2b6-8918-4165-82dc-cd3b201a3479","direction":"outgoing","index":142630,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"738a0bb4-249f-4c19-a728-da86d02fb4c3","direction":"outgoing","index":142631,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"200e4200-a602-4e97-ade2-2675dc5ad7d1","direction":"outgoing","index":142632,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"13d28453-cea0-47ae-981d-d5eee7f5a70e","direction":"outgoing","index":142633,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"5d757260-c02c-45ca-96d0-a36bc30a40fa","direction":"outgoing","index":142634,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:30.220-04:00"},{"id":"271c421e-756b-40ea-9f8f-e13600b8e236","created_at":"2026-05-22T21:08:34.257-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"6cd9e383-aa87-4c04-b34c-537fc54967ab","direction":"outgoing","index":142635,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.262-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"952a933f-e2ad-4c7e-bc57-99224ce680af","direction":"outgoing","index":142636,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d709b7fd-0ffe-4633-8b4e-3997d082dd1c","direction":"outgoing","index":142637,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2bc0751-0e8e-4dea-b431-39ddb1697b30","direction":"outgoing","index":142638,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8b14926-db7a-4ea1-a63c-9160b43b5d30","direction":"outgoing","index":142639,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74e58aab-8af7-4c30-a0cb-727cb923218d","direction":"outgoing","index":142640,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"755409b3-717d-41c5-af81-d020c017f5d4","direction":"outgoing","index":142641,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1eacb845-1941-4472-b1d4-d01121559c20","direction":"outgoing","index":142642,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd561ed9-8877-42f4-9a1b-420a1b063cc2","direction":"outgoing","index":142643,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6214e1ea-55be-4575-825e-89e3e3d291c3","direction":"outgoing","index":142644,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e6dcd32-8a6c-4981-a151-708e98212e9c","direction":"outgoing","index":142645,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2494dda3-0fc7-45f9-aec4-2edb5f2a069b","direction":"outgoing","index":142646,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25a2e270-5ed3-44ab-995b-2bf90178b3a3","direction":"outgoing","index":142647,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6cbdbd4b-d00f-485f-8e5f-a93b8093067b","direction":"outgoing","index":142648,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81034d61-0a3f-4f26-b251-809bad5f46e6","direction":"outgoing","index":142649,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:34.257-04:00"},{"id":"757946fb-9d23-4399-bc29-2a795e3dac21","created_at":"2026-05-22T21:08:37.597-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"512eb863-955f-40fa-ab43-4d78ac59784a","direction":"outgoing","index":142650,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c44ac570-3eb5-4ef8-874e-99bc5d622ffb","direction":"outgoing","index":142651,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"145cac0e-947d-4bbb-81fe-e6f8548fa250","direction":"outgoing","index":142652,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"3538be3b-ce0e-46ca-917d-8f9a87529f68","direction":"outgoing","index":142653,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"d3653bb2-fa4f-45ee-b3df-6973423d84bd","direction":"outgoing","index":142654,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c87479b3-1350-4515-9b4c-3e27cd8b9bb7","direction":"outgoing","index":142655,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81077f41-a062-460b-bee4-bf5a102b656f","direction":"outgoing","index":142656,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5acf28c-01a6-4b77-8442-ce6d59dcf4e6","direction":"outgoing","index":142657,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"274bb9f2-030e-46a7-83b1-f2f3e9cffcf9","direction":"outgoing","index":142658,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"49fafe76-2bd0-407c-8733-d3d6c744bb8d","direction":"outgoing","index":142659,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff1a19e-c48a-4c29-8e91-43962e380182","direction":"outgoing","index":142660,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47890152-f08f-4e19-b7c2-68ab1717b245","direction":"outgoing","index":142661,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29f66cdc-65cf-495b-990f-bd238a2dbc03","direction":"outgoing","index":142662,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"657ed6aa-a33d-44a8-8f80-6ac90bcaf9bf","direction":"outgoing","index":142663,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:37.597-04:00"},{"id":"2a31135d-5dc9-4014-a389-f7316057fbc8","created_at":"2026-05-22T21:08:40.464-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5745fd30-e520-4bcf-b74a-03a54252310f","direction":"outgoing","index":142664,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"cd4cbcbc-b124-48cd-95bd-0751e42c61a0","direction":"outgoing","index":142665,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e26d690-4d6d-4409-9c93-e3854ef031a8","direction":"outgoing","index":142666,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6210dcf7-606b-4fae-b912-5a743d4435fb","direction":"outgoing","index":142667,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"815666dd-41df-4897-9901-a84a8e6e542d","direction":"outgoing","index":142668,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e0d7764-478a-4841-9da8-adc09b790b29","direction":"outgoing","index":142669,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"959f4f26-f6ef-4d4d-8d93-6298facd444d","direction":"outgoing","index":142670,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d1b80dd-eb92-4f88-a8ef-973ef40f33f6","direction":"outgoing","index":142671,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ef2d32-2c43-4208-a573-32c580abdc8f","direction":"outgoing","index":142672,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cb9f1d0-a814-4729-b9e3-3c6f9924b02f","direction":"outgoing","index":142673,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:40.464-04:00"},{"id":"8aa5f5fc-9be3-4789-939b-ffec4e14efd9","created_at":"2026-05-22T21:08:40.760-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5b378b34-9fe8-43dd-b343-f779722a5621","direction":"outgoing","index":142674,"result_id":"8aa5f5fc-9be3-4789-939b-ffec4e14efd9","status":200,"timestamp":"2026-05-22T21:08:40.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:40.760-04:00"},{"id":"7d8769a2-3a26-423b-a13b-89d43035379d","created_at":"2026-05-22T21:08:41.202-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d0b18db3-2f59-4f4c-87ef-ff37b67c8ca4","direction":"outgoing","index":142675,"result_id":"7d8769a2-3a26-423b-a13b-89d43035379d","status":200,"timestamp":"2026-05-22T21:08:41.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=85","verb":"get"},{"id":"c7eaf245-c42e-4a24-8fba-d30171851b36","direction":"outgoing","index":142676,"result_id":"7d8769a2-3a26-423b-a13b-89d43035379d","status":200,"timestamp":"2026-05-22T21:08:41.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=355","verb":"get"},{"id":"1b52386b-eb3f-4ea7-a1af-31ab6e7edf06","direction":"outgoing","index":142677,"result_id":"7d8769a2-3a26-423b-a13b-89d43035379d","status":200,"timestamp":"2026-05-22T21:08:41.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=82810-3\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:41.202-04:00"},{"id":"df3d0002-0357-403a-bf92-23ea7f1363e3","created_at":"2026-05-22T21:08:41.861-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:41.861-04:00"},{"id":"e04cd608-7951-4eef-b3d1-c8fdbf194da2","created_at":"2026-05-22T21:08:41.876-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:41.876-04:00"},{"id":"b55bd46f-a5ba-4700-abff-6c0c789743f2","created_at":"2026-05-22T21:08:41.884-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:41.884-04:00"},{"id":"f44efb84-9cb7-48cd-967b-442f2a8b4ab2","created_at":"2026-05-22T21:08:41.888-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:41.888-04:00"},{"id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","created_at":"2026-05-22T21:08:42.665-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e42f3709-b9cf-4bec-aebe-c155ca764153","direction":"outgoing","index":142678,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"cbb6c3b6-aa25-4fea-b29d-2bb6b29fa381","direction":"outgoing","index":142679,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"2d0b1eae-a9f0-4d5e-aa6a-2259a5c61fac","direction":"outgoing","index":142680,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"a1f8a0b3-2554-4350-b205-db7c043c0356","direction":"outgoing","index":142681,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"098de892-18b5-4862-9da5-abb63079a857","direction":"outgoing","index":142682,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"46be6d29-76ac-4f60-afe3-a007ec3cf40e","direction":"outgoing","index":142683,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:42.665-04:00"},{"id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","created_at":"2026-05-22T21:08:43.531-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f05c0503-5d87-46a3-8563-91e1ce9afb26","direction":"outgoing","index":142684,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"567eef7a-f021-48ad-a55a-51e2c4deca6b","direction":"outgoing","index":142685,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"0bb6c5c0-6e07-40d1-8309-21557c1f6eb0","direction":"outgoing","index":142686,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"83930b9f-4c1d-49ec-8a02-a0ee132ebaa8","direction":"outgoing","index":142687,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ca31510-f0eb-47b4-8329-b4c83f019c7f","direction":"outgoing","index":142688,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"39e89542-fe75-4dff-9e34-a8b73a775dd4","direction":"outgoing","index":142689,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:43.531-04:00"},{"id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","created_at":"2026-05-22T21:08:45.922-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2be0c399-6028-46cd-92d5-3286378cc46f","direction":"outgoing","index":142690,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"25158941-9eb4-4e49-9170-456f0a7e610c","direction":"outgoing","index":142691,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c11c0fa-4b4c-4ed8-a6aa-6deb377fa44c","direction":"outgoing","index":142692,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22e5b4eb-be58-4a82-98e1-b6c62da0a29c","direction":"outgoing","index":142693,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab4f9d09-097a-4d19-9a5e-037365fa161e","direction":"outgoing","index":142694,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e63a9557-3ad7-4421-a5de-b86ace65e0e5","direction":"outgoing","index":142695,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"240ebfa4-c1a1-4526-aa25-0bdaa8511916","direction":"outgoing","index":142696,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ae998-0452-45ec-b43f-716ba451a2f1","direction":"outgoing","index":142697,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c9597d33-73ea-4016-90f8-a9f36951dda1","direction":"outgoing","index":142698,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4cd743ae-233d-4fcf-891d-b64f71b54c97","direction":"outgoing","index":142699,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c89233c-a760-4bba-af6f-169ec232ce32","direction":"outgoing","index":142700,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"cd3f8d1f-00ba-427b-b2d5-37ae87711b3b","direction":"outgoing","index":142701,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"063e2198-8ead-4f45-ab2e-978706d5ec01","direction":"outgoing","index":142702,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c24e16c-1cae-4d4f-ae24-0dcda29b9954","direction":"outgoing","index":142703,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9235a963-847d-4a05-8e47-3b0a39aee809","direction":"outgoing","index":142704,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:45.922-04:00"},{"id":"642bc607-ff81-4fca-9bb1-334cceec4c62","created_at":"2026-05-22T21:08:49.259-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0c485a1e-8353-4235-ac10-7f745649ee39","direction":"outgoing","index":142705,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"a954f348-ff86-4e73-8274-b8bd0a7585bd","direction":"outgoing","index":142706,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"577d1f22-cea8-4b76-bd89-b4f3cb7cb4c5","direction":"outgoing","index":142707,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"f86581b7-3277-4cac-96b3-72bac6545f20","direction":"outgoing","index":142708,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ac5b24c-ef27-4664-8f1d-488415871161","direction":"outgoing","index":142709,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0bcec63e-c5cd-4a95-b08f-e1c130fb9e6e","direction":"outgoing","index":142710,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52472409-82f8-41ad-ba3f-3f92b7b52643","direction":"outgoing","index":142711,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38575731-d2aa-42b9-a3a8-f4083c9a7b84","direction":"outgoing","index":142712,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07bb0178-d5a1-4ed5-a975-050d86f1e630","direction":"outgoing","index":142713,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"5db0ad54-b6e6-4523-91cf-110a7d10c1f5","direction":"outgoing","index":142714,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53d9f580-8dfb-45f9-b8de-b10b90b731d1","direction":"outgoing","index":142715,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b13a2dab-1b9a-4088-bd0e-76f359ba28b2","direction":"outgoing","index":142716,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2303d048-dd6b-42e2-86a4-2231ac8edd41","direction":"outgoing","index":142717,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81cab75d-2705-4ec5-b901-e54777e8e56d","direction":"outgoing","index":142718,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:49.259-04:00"},{"id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","created_at":"2026-05-22T21:08:51.063-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7c1bb721-edf9-4266-9598-0693d5ffc425","direction":"outgoing","index":142719,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"059a0b3b-d4b2-4049-bf35-28b6dd7574a1","direction":"outgoing","index":142720,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb4672a8-9406-4daa-b7cc-e3fd7c27f860","direction":"outgoing","index":142721,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1dac884b-9dd9-4ccb-82d9-5b8e03169162","direction":"outgoing","index":142722,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c6216ab-8a83-4a4a-8844-e50050ebd39d","direction":"outgoing","index":142723,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f2ff6d3-a44d-4192-b091-81bceec696c9","direction":"outgoing","index":142724,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"425db202-cd36-4eca-b977-4ca977d00c74","direction":"outgoing","index":142725,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18053de1-0eeb-41c8-88e8-dd070b174283","direction":"outgoing","index":142726,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a8c2077-b9e2-4246-85bf-448894258687","direction":"outgoing","index":142727,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0972690-2b92-4444-8efc-c4eadd6864dc","direction":"outgoing","index":142728,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:51.063-04:00"},{"id":"59e1ada5-aa95-4217-8baf-5c5c2cefd522","created_at":"2026-05-22T21:08:51.352-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8197af73-9fcb-410b-ab6b-11cb930237ee","direction":"outgoing","index":142729,"result_id":"59e1ada5-aa95-4217-8baf-5c5c2cefd522","status":200,"timestamp":"2026-05-22T21:08:51.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:51.352-04:00"},{"id":"0c3192c2-1bb9-4236-b10a-942fb9aa9137","created_at":"2026-05-22T21:08:51.754-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"502b37dc-5ad8-4f98-b528-d939535ccd6e","direction":"outgoing","index":142730,"result_id":"0c3192c2-1bb9-4236-b10a-942fb9aa9137","status":200,"timestamp":"2026-05-22T21:08:51.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=85","verb":"get"},{"id":"fd9ca998-c747-4eb2-830c-2b910730decc","direction":"outgoing","index":142731,"result_id":"0c3192c2-1bb9-4236-b10a-942fb9aa9137","status":200,"timestamp":"2026-05-22T21:08:51.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=355","verb":"get"},{"id":"3c504fbb-c58e-4777-9a0e-e62ec71c9e6d","direction":"outgoing","index":142732,"result_id":"0c3192c2-1bb9-4236-b10a-942fb9aa9137","status":200,"timestamp":"2026-05-22T21:08:51.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=86645-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:51.754-04:00"},{"id":"916be21c-16df-4089-ae35-0b7b2ed1debd","created_at":"2026-05-22T21:08:52.433-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:52.433-04:00"},{"id":"d1b152c4-e4e2-4336-b58d-759dff8e7de5","created_at":"2026-05-22T21:08:52.448-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:52.448-04:00"},{"id":"4fc28b19-5105-44f6-9a1a-ccc2840e4fad","created_at":"2026-05-22T21:08:52.459-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:52.459-04:00"},{"id":"aa813de8-3b4c-47b0-9570-14945ec48046","created_at":"2026-05-22T21:08:52.462-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:52.462-04:00"},{"id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","created_at":"2026-05-22T21:08:53.279-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3460b691-5e7a-44c9-bea2-f57a5c95506b","direction":"outgoing","index":142733,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"7dae7023-7972-45e0-9d93-9e87c917ecd1","direction":"outgoing","index":142734,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"3a466515-09a6-4d6f-88b4-0667e79bade3","direction":"outgoing","index":142735,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"6a2fc3b7-3312-4f33-a4b0-2120577a8004","direction":"outgoing","index":142736,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"393018d8-9a85-4f7c-835b-b13812d7c9ea","direction":"outgoing","index":142737,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"a5ea0900-44d5-4f6c-b9ce-397a1c3a8d9a","direction":"outgoing","index":142738,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:53.279-04:00"},{"id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","created_at":"2026-05-22T21:08:54.165-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"59c1a40e-1a97-403b-bc06-b7a4d41cadbd","direction":"outgoing","index":142739,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3e60a8bb-6783-44ee-890f-530356fbf269","direction":"outgoing","index":142740,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"256ce83b-862b-43b3-a0b6-04d1c55fb160","direction":"outgoing","index":142741,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1d27ad8c-4f90-4091-892b-293bd31cf01e","direction":"outgoing","index":142742,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4287ce58-6e14-4eb0-a674-ec5a2517a64f","direction":"outgoing","index":142743,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cee6f682-0365-4d52-8860-00cdbf17fbf9","direction":"outgoing","index":142744,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:54.165-04:00"},{"id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","created_at":"2026-05-22T21:08:56.640-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"851d4890-9ec7-4594-a53c-2aa35397dfab","direction":"outgoing","index":142745,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"b57d441b-b33f-424c-b902-9ff0ac6e0b51","direction":"outgoing","index":142746,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2b98d4d-3275-4d0d-ab38-cbbc1ccbc684","direction":"outgoing","index":142747,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92a4c345-2406-45bb-818e-f40c81ed13a3","direction":"outgoing","index":142748,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78c48a6-a914-4a18-bc56-426212ba68f5","direction":"outgoing","index":142749,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d162caa1-c6cc-456d-b00d-20e9726d8f38","direction":"outgoing","index":142750,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"36e4143e-1438-491c-887d-65817478d9dc","direction":"outgoing","index":142751,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46c07a6b-8422-4f54-bcd4-244749cc1b47","direction":"outgoing","index":142752,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"925e81f3-4815-4362-b34c-48ce21c83b4b","direction":"outgoing","index":142753,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"199f0a93-4c00-4204-b6bb-6accfa4a57b9","direction":"outgoing","index":142754,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1853402-2806-45ab-b3ce-b9bfcee35b11","direction":"outgoing","index":142755,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6b00bb07-f9dc-45ec-b2cd-a1c57a31b9c0","direction":"outgoing","index":142756,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"938f994f-bbfc-4e74-8a54-ae7b5e498a72","direction":"outgoing","index":142757,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20692c7b-8d27-45d1-b22a-839e592d47b8","direction":"outgoing","index":142758,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2a9850b-faad-47fd-a0eb-8e21466fcc96","direction":"outgoing","index":142759,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:56.640-04:00"},{"id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","created_at":"2026-05-22T21:08:59.835-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"239fa566-f511-4c99-8d45-19ff8e46ffff","direction":"outgoing","index":142760,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d1a1527e-2a26-4a2c-b591-6f359394fa64","direction":"outgoing","index":142761,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ef1567fc-ca65-4d14-b004-5f456f240027","direction":"outgoing","index":142762,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0cda50b7-0228-4090-aa4c-25e7e4b6c61f","direction":"outgoing","index":142763,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2bc98548-c952-4588-a5c3-6c501336954d","direction":"outgoing","index":142764,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87baa689-4beb-402a-864b-f17e51333b40","direction":"outgoing","index":142765,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e3004fe-0cc7-4af2-ae97-c3bb3b65d0cd","direction":"outgoing","index":142766,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30f2683d-3ccd-4842-bd63-016968e2b589","direction":"outgoing","index":142767,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"20991b22-4a53-4712-8b57-aa2d9bf33b73","direction":"outgoing","index":142768,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9679ef56-98ab-450f-94e2-eb34b09f9277","direction":"outgoing","index":142769,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a777ec7-5f67-4b9d-9648-82f62ce417f8","direction":"outgoing","index":142770,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d4d9987-424b-4fae-b0c6-09a79c2c3c92","direction":"outgoing","index":142771,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:08:59.835-04:00"},{"id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","created_at":"2026-05-22T21:09:01.559-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8e8eed58-ee86-4905-9174-f6bd5dadf2b6","direction":"outgoing","index":142772,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"9ef3f8e8-f9e3-48a8-9739-b5b69e8b69d6","direction":"outgoing","index":142773,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6dccb5f-802e-42d0-8c6f-b930dd3bc1f8","direction":"outgoing","index":142774,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dea0a695-3e62-4bbf-b43a-399856b7a44d","direction":"outgoing","index":142775,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9cb5635-6614-4b1d-b3bb-25087edc66d5","direction":"outgoing","index":142776,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083a559f-13fd-4887-966e-071329bbeba1","direction":"outgoing","index":142777,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"8363287c-3d86-4fb5-b43a-7d41facb7267","direction":"outgoing","index":142778,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ca77962-f22c-4c78-a091-ba4706a4badf","direction":"outgoing","index":142779,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab96f973-ca9c-4463-8a23-71000bce51dc","direction":"outgoing","index":142780,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8888fdec-defb-488e-a66a-5f72ee30fc09","direction":"outgoing","index":142781,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:01.559-04:00"},{"id":"e032f8d9-d40a-4f03-823c-d6ca25528fbd","created_at":"2026-05-22T21:09:01.872-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8b138d0a-4183-4990-9559-e773fa77a795","direction":"outgoing","index":142782,"result_id":"e032f8d9-d40a-4f03-823c-d6ca25528fbd","status":200,"timestamp":"2026-05-22T21:09:01.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/1c54dcaf-6414-4365-95f9-685b5e405e46","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:01.872-04:00"},{"id":"ff91fe53-1b55-408d-9b11-b6de1ab18925","created_at":"2026-05-22T21:09:02.304-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0f8c3bf5-d081-4388-a893-62bbb8b4ed7e","direction":"outgoing","index":142783,"result_id":"ff91fe53-1b55-408d-9b11-b6de1ab18925","status":200,"timestamp":"2026-05-22T21:09:02.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=85","verb":"get"},{"id":"500e45fe-3812-445b-b97b-e37aa7dea7a6","direction":"outgoing","index":142784,"result_id":"ff91fe53-1b55-408d-9b11-b6de1ab18925","status":200,"timestamp":"2026-05-22T21:09:02.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=355","verb":"get"},{"id":"8d470613-0f14-47fd-b1c8-96d262b37b20","direction":"outgoing","index":142785,"result_id":"ff91fe53-1b55-408d-9b11-b6de1ab18925","status":200,"timestamp":"2026-05-22T21:09:02.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=11341-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:02.304-04:00"},{"id":"c3f7786d-9d8d-4b2b-8c7f-76cb633f5075","created_at":"2026-05-22T21:09:08.407-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:08.407-04:00"},{"id":"252a10f8-bf58-4188-a756-8b49a28a3f89","created_at":"2026-05-22T21:09:08.431-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:08.431-04:00"},{"id":"536681e9-da30-4c84-b4ad-688272d5b84d","created_at":"2026-05-22T21:09:08.437-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:08.437-04:00"},{"id":"b86ebddd-1b7b-4def-adf3-a6032160ec69","created_at":"2026-05-22T21:09:08.439-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_occupation","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:08.439-04:00"},{"id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","created_at":"2026-05-22T21:09:09.368-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"62c62e6f-a508-40d2-8043-9448b381d816","direction":"outgoing","index":142786,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"a22bb776-b30e-422c-ad56-73e76f9d22da","direction":"outgoing","index":142787,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"df86586b-a5a9-4440-81ce-d261f54e34f9","direction":"outgoing","index":142788,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"53fa06ab-f471-4f3e-8b48-bf59e2877f1b","direction":"outgoing","index":142789,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"ce9f98ac-e92e-4711-86d6-56b9d1cdabfe","direction":"outgoing","index":142790,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"834afb02-5a60-4ac1-9e87-d39056f409b3","direction":"outgoing","index":142791,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:09.368-04:00"},{"id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","created_at":"2026-05-22T21:09:10.292-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"17c2e171-ae65-4391-8933-4c6d382d61f0","direction":"outgoing","index":142792,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"28c4153f-a18f-4851-81c9-2d49f955f427","direction":"outgoing","index":142793,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ae84d263-4024-4ba3-8b89-fd735797a452","direction":"outgoing","index":142794,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"df06888d-e2db-4f57-8571-c06f336d57aa","direction":"outgoing","index":142795,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"286461d1-f331-445c-bbc9-df33af8e9c78","direction":"outgoing","index":142796,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6a006d69-9995-433a-b7bc-7bd8d84efdc2","direction":"outgoing","index":142797,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:10.292-04:00"},{"id":"ff019767-e1cd-40b9-877b-53a982e50c1e","created_at":"2026-05-22T21:09:13.434-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"b5709320-c47d-4285-b583-308b10cf19b7","direction":"outgoing","index":142798,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"cac99f20-1f01-46d7-b3b1-b229c2f3cabb","direction":"outgoing","index":142799,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60b3bfac-49ed-40ce-be4d-65d53822eccd","direction":"outgoing","index":142800,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1149c244-ed8d-49e1-9c51-a919c62d84a2","direction":"outgoing","index":142801,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"91ab9353-6ad2-4039-bd07-3870fa84b0a8","direction":"outgoing","index":142802,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dab17b1-afa5-4c00-9b16-443d7e1ac86b","direction":"outgoing","index":142803,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c031e3e3-28e3-4aa1-b33d-93dc9943ec7d","direction":"outgoing","index":142804,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"5436d130-7c0a-4cce-aa0e-8d673d20a1e3","direction":"outgoing","index":142805,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc02c961-4e5b-433d-a0f1-8fcfe2e464ce","direction":"outgoing","index":142806,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:13.434-04:00"},{"id":"0a498f49-b480-4751-b59a-2f6361c925b0","created_at":"2026-05-22T21:09:17.107-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e92ed314-a8ab-4735-ba1f-26d08a2a9869","direction":"outgoing","index":142807,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"651d8494-ad2e-495e-a134-eee9332f731d","direction":"outgoing","index":142808,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"652bba06-c435-49e3-9e7e-6fc58ecbcfdf","direction":"outgoing","index":142809,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1f3124c1-4f7b-4df7-951b-e818da33245c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"054b7da0-0245-4f9e-90f0-1941658d7e16","direction":"outgoing","index":142810,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c00829da-710a-47e6-9b13-95d7f28ec552","direction":"outgoing","index":142811,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b7882a4-bf3c-4063-8482-33bcb828813e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cde50c6-36da-43f8-975f-9953973e7e6c","direction":"outgoing","index":142812,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"1883f011-ac86-4cdd-89dd-4c719388098e","direction":"outgoing","index":142813,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbd9b74c-be3c-49f9-9633-573ef5bae275\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72af3c91-23fa-4419-8bd5-07d3ea7cd24c","direction":"outgoing","index":142814,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4b6da725-cd37-4642-afed-ef4835119062","direction":"outgoing","index":142815,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59fe7544-4d14-42a1-9b7d-883bd303a1d7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e03eaa1-2f02-4ad4-bbe1-13ffb6616d42","direction":"outgoing","index":142816,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:17.107-04:00"},{"id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","created_at":"2026-05-22T21:09:19.314-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d6855ee1-782e-47c7-96e5-4fbb30d3d5de","direction":"outgoing","index":142817,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"5391e6d0-8032-4dbd-b06b-002bed62f125","direction":"outgoing","index":142818,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58dcaba7-6f05-4df5-b06b-7efc5778e4cb","direction":"outgoing","index":142819,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52de6d98-c2f1-4520-91d4-4c23b78160e6","direction":"outgoing","index":142820,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"418396cb-bf67-415e-86f7-96fd134dcb3c","direction":"outgoing","index":142821,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a1d55d1-fe25-4dfd-8ca7-4db9b9bd55b9","direction":"outgoing","index":142822,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:19.314-04:00"},{"id":"9a5a4203-b289-4922-a3e8-89668c50836c","created_at":"2026-05-22T21:09:19.517-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ea23adce-9ca3-4e45-9bab-da7abf7e6ec2","direction":"outgoing","index":142823,"result_id":"9a5a4203-b289-4922-a3e8-89668c50836c","status":200,"timestamp":"2026-05-22T21:09:19.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:19.517-04:00"},{"id":"269a2782-85bd-464e-a641-cdcf8a7cfcbf","created_at":"2026-05-22T21:09:19.958-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"318043f1-d180-4777-9a0c-6d88e783945d","direction":"outgoing","index":142824,"result_id":"269a2782-85bd-464e-a641-cdcf8a7cfcbf","status":200,"timestamp":"2026-05-22T21:09:19.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=85","verb":"get"},{"id":"696aec14-0e85-4a2f-adef-a59f98278a24","direction":"outgoing","index":142825,"result_id":"269a2782-85bd-464e-a641-cdcf8a7cfcbf","status":200,"timestamp":"2026-05-22T21:09:19.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=355","verb":"get"},{"id":"0e4bd894-f3c1-4193-9e58-a8424e244647","direction":"outgoing","index":142826,"result_id":"269a2782-85bd-464e-a641-cdcf8a7cfcbf","status":200,"timestamp":"2026-05-22T21:09:19.988-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9279-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:19.958-04:00"},{"id":"b8cfa916-3cb7-4359-9fac-1bec8f4a8c83","created_at":"2026-05-22T21:09:20.752-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:20.752-04:00"},{"id":"e993b643-c5dd-4a70-a50f-e62943f27008","created_at":"2026-05-22T21:09:20.781-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:20.781-04:00"},{"id":"19fd7765-b98e-4725-a9f8-d88a27d12a1b","created_at":"2026-05-22T21:09:20.789-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:20.789-04:00"},{"id":"b21a108f-ccd1-4e4a-b4e2-504216f10d72","created_at":"2026-05-22T21:09:20.792-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_respiratory_rate","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:20.792-04:00"},{"id":"f6fefb16-973c-491a-94e3-96c92c6637e6","created_at":"2026-05-22T21:09:29.799-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"63b598a3-6852-4ea0-b21c-24507a97257d","direction":"outgoing","index":142827,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"79cc449f-1cde-4ea2-bf0e-a34699d654a1","direction":"outgoing","index":142828,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"aad5e6ac-a1c0-4a2f-ba6a-5de9b87fdb2c","direction":"outgoing","index":142829,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"2a65687d-c556-400c-81e3-3d62c7a4e995","direction":"outgoing","index":142830,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d70be5a5-daf0-42a0-b0dd-f3020ebbf857","direction":"outgoing","index":142831,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"8f83d094-9235-4b4f-8dbe-b0f83075eb95","direction":"outgoing","index":142832,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"1a7f6149-67c3-4281-a651-a611c298c786","direction":"outgoing","index":142833,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"2399c404-7eff-4ae4-9ba6-fd27e27efb5d","direction":"outgoing","index":142834,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"725d36c8-0dbc-4bff-b4a6-112f70176127","direction":"outgoing","index":142835,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2387874b-c764-4680-b5ed-8a768061cd73","direction":"outgoing","index":142836,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58af7d25-b398-4222-8588-6e0e680aa899","direction":"outgoing","index":142837,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0054e5ef-b1d9-4249-9dcf-5ddec19af092","direction":"outgoing","index":142838,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36fa8689-0e3c-4535-97cc-ed358539d998","direction":"outgoing","index":142839,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"134a0e96-01bf-4419-a7ae-87661b28f0f2","direction":"outgoing","index":142840,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"03b7910a-db92-46d6-bed0-1c92a9361c0a","direction":"outgoing","index":142841,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"c400a2fd-60e5-4dfd-ba83-4bac1174c07b","direction":"outgoing","index":142842,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"de1c0fcd-2828-4611-a29b-241f076f8d5b","direction":"outgoing","index":142843,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0c6f7170-cea9-4935-8649-74a74d9eaf34","direction":"outgoing","index":142844,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"9a261e52-0644-4140-b487-f7490a835024","direction":"outgoing","index":142845,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"d17f9d68-8b52-4922-9dc9-914e43a17afc","direction":"outgoing","index":142846,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a8f2e0e0-008b-462a-9781-f5f50344c0c7","direction":"outgoing","index":142847,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"355d2bba-57b9-4071-af4a-7ba5ef865a01","direction":"outgoing","index":142848,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"feb51d0c-8693-4765-9694-b4a192f2ad51","direction":"outgoing","index":142849,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"34216cab-0337-4128-8baa-f66e404a816b","direction":"outgoing","index":142850,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"b437299a-2349-43b0-9c17-f083273e1524","direction":"outgoing","index":142851,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"8829186d-c81f-4a60-8abc-2e984fd64f16","direction":"outgoing","index":142852,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e51374-0536-4572-935e-ffb965d49277","direction":"outgoing","index":142853,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5031e7a-713a-4ca8-ad5f-b67756843cdb","direction":"outgoing","index":142854,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"910b9110-3d8e-4bac-af3e-245291968dd0","direction":"outgoing","index":142855,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af3e5e5d-ee92-4a59-aa33-c8de29869a77","direction":"outgoing","index":142856,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56d2d961-4b86-4fe1-aca6-394d1325ef98","direction":"outgoing","index":142857,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7321a724-b61f-4425-b03f-98ce7b3158eb","direction":"outgoing","index":142858,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d3cdb25-0553-450d-8f5d-dc3e2c1cd319","direction":"outgoing","index":142859,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb467770-0e11-45e8-b6aa-c3a2e3888ec1","direction":"outgoing","index":142860,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1168261a-65e3-4618-a964-32cd1c589388","direction":"outgoing","index":142861,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"83af2b56-11eb-4166-909f-b8a5e38bb488","direction":"outgoing","index":142862,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e61cf2-b007-4a36-ba0f-058d18dbf5ee","direction":"outgoing","index":142863,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac70b927-f74c-42e6-9976-6fe9d5abdb87","direction":"outgoing","index":142864,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"01cb27a0-0f96-4a36-a9e5-6556dd89d119","direction":"outgoing","index":142865,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"57a73cf7-afe9-4e5e-b6ad-8714fb81b14f","direction":"outgoing","index":142866,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"5507c56e-1bbd-46ba-b745-51841d1346ef","direction":"outgoing","index":142867,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"cdc4e252-eddf-4986-a516-d7f703d5954a","direction":"outgoing","index":142868,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"718e59ba-68f2-4282-a46e-212d9ccfa415","direction":"outgoing","index":142869,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"06ee4a1c-edaa-4b70-bf17-2961bbe9f2e0","direction":"outgoing","index":142870,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"0c1eac7b-4371-46a2-8cb0-4aca93882247","direction":"outgoing","index":142871,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"201d3b72-5d89-4f8d-9b6a-b7b6817af5cf","direction":"outgoing","index":142872,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4989779e-d416-4a1e-8643-37082af67b8d","direction":"outgoing","index":142873,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"900c2893-8729-453b-8f70-3bea92512421","direction":"outgoing","index":142874,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"ef4c0d66-fd28-4f3f-89fb-55d3e8b98282","direction":"outgoing","index":142875,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"30fd5fa9-dcb3-47d0-b978-50b1b8dcf838","direction":"outgoing","index":142876,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"05e3abb5-427c-4848-9cea-d02ef520b222","direction":"outgoing","index":142877,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"0252719c-3a56-4af4-a77b-6799508a785b","direction":"outgoing","index":142878,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"a08af27c-ef03-4432-be2b-54e765f1b389","direction":"outgoing","index":142879,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"4ed78294-c5e2-43a8-8791-81849dde7edd","direction":"outgoing","index":142880,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"33b9e429-7433-4fe4-85b0-995755404c25","direction":"outgoing","index":142881,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"acfc91e9-fb9f-4d1f-946e-f684ec9fa4d4","direction":"outgoing","index":142882,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7796e6b9-4103-408b-a93a-45756565691c","direction":"outgoing","index":142883,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:29.799-04:00"},{"id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","created_at":"2026-05-22T21:09:31.529-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e46070f2-60b7-47a0-afcd-b96030a78c18","direction":"outgoing","index":142884,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"ec6ff809-d943-444a-91a2-0abc1b0b5439","direction":"outgoing","index":142885,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"988872cb-c573-440e-93bf-70aaefb48bff","direction":"outgoing","index":142886,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"eafafff7-5f6e-41df-ae55-62647b670550","direction":"outgoing","index":142887,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"1287ee7c-c61d-4949-a07f-cef670c63e02","direction":"outgoing","index":142888,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4354c6d7-76a6-4dc2-aad9-1831ac9e6505","direction":"outgoing","index":142889,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f99975dd-b28b-4ab0-bb22-4798cc100355","direction":"outgoing","index":142890,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:31.529-04:00"},{"id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","created_at":"2026-05-22T21:09:34.169-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5677e1a9-b297-454b-b58d-812b304cb07f","direction":"outgoing","index":142891,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"f0d3f1b6-9d25-4e30-935c-bacd4e96e731","direction":"outgoing","index":142892,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"28c9146b-e18f-4437-86e4-eaad79be34b1","direction":"outgoing","index":142893,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"b1f77ac4-37c0-41c1-b1ef-e52930fae94c","direction":"outgoing","index":142894,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"337fd234-4180-4ffc-9294-78048c8fd7ed","direction":"outgoing","index":142895,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f055dc7-67a8-4d48-a88c-ada89ad0aed5","direction":"outgoing","index":142896,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e1097dd3-142c-46a8-8d4b-a8965711e384","direction":"outgoing","index":142897,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ffdb9588-5e00-4b67-a91d-cad254bdf106","direction":"outgoing","index":142898,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c2b63c3-1c6b-4e12-ba70-68bd77f0542a","direction":"outgoing","index":142899,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8f06415-2730-4d2b-8027-bb3fe6e3753f","direction":"outgoing","index":142900,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"427007dd-7af3-4bda-9fdf-bd16deb73504","direction":"outgoing","index":142901,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20dc6b58-7c58-484c-917f-5ffbd15bc17b","direction":"outgoing","index":142902,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fbe6292-82ed-499b-9afb-5347acb71e1a","direction":"outgoing","index":142903,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:34.169-04:00"},{"id":"adf61e16-a8c0-468d-95c2-3e48124272d6","created_at":"2026-05-22T21:09:35.289-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b3e0367d-66a8-4195-bb90-d8924603fc5d","direction":"outgoing","index":142904,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"e0a86155-b077-4b40-bbe3-efa88ec96873","direction":"outgoing","index":142905,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4d8011f4-619a-4ea7-93eb-53b96df0bb99","direction":"outgoing","index":142906,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5be88e98-a979-48ec-8784-e0689e73d5fe","direction":"outgoing","index":142907,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"afb8c552-bf3f-4e21-a5eb-9ab05c530ff3","direction":"outgoing","index":142908,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3f87b94b-a4c6-45ee-990b-0d6751bbb35a","direction":"outgoing","index":142909,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"4df533b5-7d06-44cd-b470-d4f40663f1dc","direction":"outgoing","index":142910,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:35.289-04:00"},{"id":"fac12906-377b-4640-89b9-ad6e7372bcf0","created_at":"2026-05-22T21:09:35.759-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bec353b3-1f4f-4350-afcc-0e16a183a4de","direction":"outgoing","index":142911,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"ca697516-ef1c-4fb9-a6e9-87a05d0529af","direction":"outgoing","index":142912,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"727dc320-991e-47af-b070-21667cb9cc1b","direction":"outgoing","index":142913,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:35.759-04:00"},{"id":"a19cb8f5-f4ad-478f-88c8-7d4161dcf738","created_at":"2026-05-22T21:09:35.921-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f2c3373f-dc54-45bd-b988-ac1bc666d52b","direction":"outgoing","index":142914,"result_id":"a19cb8f5-f4ad-478f-88c8-7d4161dcf738","status":200,"timestamp":"2026-05-22T21:09:35.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:35.921-04:00"},{"id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","created_at":"2026-05-22T21:09:47.659-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d01718e5-d0b9-4222-b337-1624fd5643b9","direction":"outgoing","index":142915,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=85","verb":"get"},{"id":"20cfda21-f989-4888-a76d-4947d43b0c8c","direction":"outgoing","index":142916,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=85","verb":"get"},{"id":"42ca82f8-00e1-4c13-ad3b-35e1a32f927d","direction":"outgoing","index":142917,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=85","verb":"get"},{"id":"40c5f39c-0a88-473f-b1bd-7a0595726101","direction":"outgoing","index":142918,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=85","verb":"get"},{"id":"3f969d47-9897-461f-80a8-e14c1bcd5f6c","direction":"outgoing","index":142919,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=85","verb":"get"},{"id":"3e82f548-8c78-4eb8-ad68-1abebec3b752","direction":"outgoing","index":142920,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e88f5b7a-4c78-4537-9401-0ff493254e6b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"123eacaa-273e-4a98-8896-5c475e518e91","direction":"outgoing","index":142921,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e88f5b7a-4c78-4537-9401-0ff493254e6b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f51dd3d4-1235-4708-bfa7-8c2de5f7fe5c","direction":"outgoing","index":142922,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e88f5b7a-4c78-4537-9401-0ff493254e6b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecee4698-64a9-46bd-b800-6c0c23dc3605","direction":"outgoing","index":142923,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e88f5b7a-4c78-4537-9401-0ff493254e6b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eddf6451-3154-4864-9fb1-27cf980e57d3","direction":"outgoing","index":142924,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"95683eb3-f866-4e0e-a762-89b4819bd377","direction":"outgoing","index":142925,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"587c91f0-ce85-4962-9ccb-ead7f1c9441f","direction":"outgoing","index":142926,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"7216804f-367a-4680-a30e-bb22ba7f6738","direction":"outgoing","index":142927,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"79e1b88e-87c0-4e78-870b-b16cdbd280d0","direction":"outgoing","index":142928,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"5499083f-e57d-4082-b4f1-0f6725f52acd","direction":"outgoing","index":142929,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"e21321e2-4b52-4ef8-8af8-86d8c4526061","direction":"outgoing","index":142930,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"f410fb68-40ad-4adb-a0c1-06fd43f72e69","direction":"outgoing","index":142931,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:47.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"46c2af92-a2a2-4d4a-85e1-59b410a6332d","direction":"outgoing","index":142932,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.027-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=355","verb":"get"},{"id":"f1eb863a-d7d3-4c15-b327-c2ae0a488160","direction":"outgoing","index":142933,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=355","verb":"get"},{"id":"126a6ec3-3f1f-4555-9454-ed2329fdc6c6","direction":"outgoing","index":142934,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=355","verb":"get"},{"id":"3a2dd842-5b1e-4d72-aba8-bae9869b10a8","direction":"outgoing","index":142935,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=355","verb":"get"},{"id":"91d6dd0e-f243-482a-9111-4c9fc11df930","direction":"outgoing","index":142936,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=355","verb":"get"},{"id":"84b0648c-2291-4bd0-97fe-987e6a6ef94e","direction":"outgoing","index":142937,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13652a99-0786-40fb-a706-45d6f30f7cac","direction":"outgoing","index":142938,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b06990a5-30a4-4b73-a21e-0038703db2b1","direction":"outgoing","index":142939,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3507cf2b-4f3c-4acf-b399-c805e93739dd","direction":"outgoing","index":142940,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c9820d8-efd1-40cf-aa30-918495f9f880","direction":"outgoing","index":142941,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25c41de7-deef-42e4-b201-77f15d2e5197","direction":"outgoing","index":142942,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c37344e-dbc9-4c26-936a-08f5696734e7","direction":"outgoing","index":142943,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b418c229-1aec-4323-86cb-a05c75370526","direction":"outgoing","index":142944,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cd6ed09e-fa70-481d-bb37-88a58041afa7","direction":"outgoing","index":142945,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b7591e5b-f33c-4ecd-8518-3aedfc711c1c\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"594f71b8-97f6-414d-9b7e-d01a33051562","direction":"outgoing","index":142946,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"f125e9e2-aef6-4fc1-a248-1941fa04811f","direction":"outgoing","index":142947,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b2ed1-2321-4546-8b87-49a50dbccb0a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f3ef3a1-2a6e-40b5-b0de-0198d9e69f81","direction":"outgoing","index":142948,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=594b2ed1-2321-4546-8b87-49a50dbccb0a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26bc4b05-f40e-49a4-be0b-7d4918890e3c","direction":"outgoing","index":142949,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"8538dd10-9aa1-40e9-972c-bfc5a4049b4d","direction":"outgoing","index":142950,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"bf8422b8-17bf-48b4-830f-fda06e1b0b7a","direction":"outgoing","index":142951,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"46e789e4-00d8-4eed-ae29-d50491c3f1a8","direction":"outgoing","index":142952,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"0b2e6ce3-87b4-4d78-8587-1ca3633a6061","direction":"outgoing","index":142953,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"51522fb6-db47-473b-8166-10d69f161e95","direction":"outgoing","index":142954,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"9f415ae5-1c6c-4631-a2dc-379561f82e1f","direction":"outgoing","index":142955,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"86993eea-80d6-4b4c-885c-8797db4cdac1","direction":"outgoing","index":142956,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=sdoh\u0026patient=907","verb":"get"},{"id":"c57b9c2c-65c5-439c-8699-9788e1e08c31","direction":"outgoing","index":142957,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=functional-status\u0026patient=907","verb":"get"},{"id":"3ee347d2-4579-4e37-b09e-216721c8f3fe","direction":"outgoing","index":142958,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=disability-status\u0026patient=907","verb":"get"},{"id":"91311c00-cc9a-4b2f-ad56-2a89100a3214","direction":"outgoing","index":142959,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=cognitive-status\u0026patient=907","verb":"get"},{"id":"fa2f6428-e129-4f1a-a98e-17b0ecb9a754","direction":"outgoing","index":142960,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=social-history\u0026patient=907","verb":"get"},{"id":"1618e7f5-17e5-4cda-be1f-f2a118043299","direction":"outgoing","index":142961,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.412-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"8689cecb-9d17-4470-94cc-93bfb0e6f073","direction":"outgoing","index":142962,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"9d9f45f9-0d94-4672-8187-8092bf2d2baa","direction":"outgoing","index":142963,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"3e2944a5-ea89-48fa-a118-bc1fe7375982","direction":"outgoing","index":142964,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"0992efd5-628e-4511-8a4e-2b36037f99f2","direction":"outgoing","index":142965,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"},{"id":"220fe2bf-bb68-466f-b2ec-c1946aec461c","direction":"outgoing","index":142966,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"c6d8813b-8816-4923-8809-b3f5469ec49c","direction":"outgoing","index":142967,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"c4ccf947-fa5e-4fe9-a02d-e307768e7dea","direction":"outgoing","index":142968,"result_id":"8a56a7fc-ed7b-4144-bf95-a391000eafae","status":200,"timestamp":"2026-05-22T21:09:48.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:09:47.659-04:00"},{"id":"db895d4b-393c-4a98-9424-ff942e2fba03","created_at":"2026-05-22T21:10:12.402-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#401201003)","type":"info"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {pack-years} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0ce3e522-1798-4581-8c7d-c913de0149b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5af1d6c1-162a-4cab-8850-700a14dcc5ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation.component[0].value.ofType(CodeableConcept).coding[0].system: A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/PHOccupationalDataForHealthODH' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1c54dcaf-6414-4365-95f9-685b5e405e46: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/138e9178-6a38-4e0f-bf6a-1b69a73ec607: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.code: None of the codings provided are in the value set 'LOINC Codes' (http://hl7.org/fhir/ValueSet/observation-codes|4.0.1), and a coding is recommended to come from this value set (codes = http://snomed.info/sct#741062008)","type":"info"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fed113b-2d21-48e4-9b0c-3489e75ab7e3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.performer[0]: A Reference without an actual reference or identifier should have a display","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e381edec-949e-4f5c-9e3b-1d16d2b310c3: Observation.meta.profile[0]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:12.402-04:00"},{"id":"b91d0788-5bf6-483c-8691-9329f62a4afb","created_at":"2026-05-22T21:10:12.978-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:12.978-04:00"},{"id":"4fee08c0-737d-44cb-b0c7-61dc26475300","created_at":"2026-05-22T21:10:13.105-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dad5b382-1b4a-4051-ada2-d30afdbc5c92","direction":"outgoing","index":142969,"result_id":"4fee08c0-737d-44cb-b0c7-61dc26475300","status":200,"timestamp":"2026-05-22T21:10:13.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:13.105-04:00"},{"id":"b4d7c208-0b2c-4a77-956a-c63b6c1307e6","created_at":"2026-05-22T21:10:13.134-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_simple_observation","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:13.134-04:00"},{"id":"dd518067-8661-45d8-ae0c-d4d560448de3","created_at":"2026-05-22T21:10:13.910-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3b9b6352-41ad-438e-bb40-0aadbb996204","direction":"outgoing","index":142970,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"8f006efb-26bc-4c89-b361-27c11e481271","direction":"outgoing","index":142971,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"6027ac61-b50b-4cfa-821d-19a709544f3a","direction":"outgoing","index":142972,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"7f81270e-c019-461f-9be6-6ed8a7ba4a95","direction":"outgoing","index":142973,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"68cdd464-6f20-479d-974d-75619134cff9","direction":"outgoing","index":142974,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"7b1c0531-d767-4345-acb5-b5e261b4e9e2","direction":"outgoing","index":142975,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:13.910-04:00"},{"id":"8ef67fde-7075-4bf9-bf24-457491208a55","created_at":"2026-05-22T21:10:14.807-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"0b7946f5-5677-4b88-b3e5-8412ff5e319e","direction":"outgoing","index":142976,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"96471294-3175-42ff-958c-4245c466a1c5","direction":"outgoing","index":142977,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7c6e62eb-6ee0-48e9-a8e3-e84d835e7822","direction":"outgoing","index":142978,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abab7fd1-6239-40fa-9071-2a6f9b2f1e87","direction":"outgoing","index":142979,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"31be0fe5-65e2-4a1a-8f80-b3bf782b8ed0","direction":"outgoing","index":142980,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d672fcec-11ef-4fb9-a53b-418bd3e84ac9","direction":"outgoing","index":142981,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:14.807-04:00"},{"id":"dc64a176-0c64-4fa0-a816-97173b76c335","created_at":"2026-05-22T21:10:17.968-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ccc34576-b269-4491-8642-f8e8dad21cfa","direction":"outgoing","index":142982,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1984105e-1dfe-4380-b636-7927c47baaf2","direction":"outgoing","index":142983,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8df43090-93c6-4390-a849-b4d80445bb87","direction":"outgoing","index":142984,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"933f7135-6a35-4160-aeac-b84ea0bca97a","direction":"outgoing","index":142985,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.024-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"95fac879-714a-41b5-bdac-04711e03cf63","direction":"outgoing","index":142986,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa35a4f1-691e-45b0-a9ac-3501195e4f82","direction":"outgoing","index":142987,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7bb9ec1-b6cf-4075-951e-5826af0a2bee","direction":"outgoing","index":142988,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"dbeb5882-6265-413e-bbac-1c5ee56b28ed","direction":"outgoing","index":142989,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"acc2b288-70f6-4c36-b7eb-349d66b66378","direction":"outgoing","index":142990,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:17.968-04:00"},{"id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","created_at":"2026-05-22T21:10:20.583-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"098f8f5a-1385-4c6d-bc6a-ba85c7036532","direction":"outgoing","index":142991,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"76ede850-3612-4a64-ad66-31857f0d6df0","direction":"outgoing","index":142992,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"370ba11d-7ae6-4254-8d50-cab45f7968df","direction":"outgoing","index":142993,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3cb5a72f-fc04-493c-9c20-b7477ce92f91","direction":"outgoing","index":142994,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c7389791-96dc-4c03-bb1f-b3e607a2d20c","direction":"outgoing","index":142995,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7616ae5c-771e-45bf-b861-4fdb04a67a43","direction":"outgoing","index":142996,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"283eaef0-1b2f-4686-8a0f-41756bf2f0ae","direction":"outgoing","index":142997,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1ccf8e6f-c90f-4818-b3c8-ede0fcb47464","direction":"outgoing","index":142998,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72d4c40e-380f-4b63-aa79-67a8724b4683","direction":"outgoing","index":142999,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b8711d5-b1d2-4af4-aa5c-c519f09dde69","direction":"outgoing","index":143000,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:20.583-04:00"},{"id":"fe51ba20-3b12-4451-b545-7a8c49467e97","created_at":"2026-05-22T21:10:22.698-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3798cc83-f610-4e4d-9062-b125328ad246","direction":"outgoing","index":143001,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ddf6d503-8548-421b-acc7-19f9c25e7dfc","direction":"outgoing","index":143002,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dffbf639-90da-4fde-ae92-1757f06b6ba7","direction":"outgoing","index":143003,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f90b213b-fc55-4318-8528-1661e28e1025","direction":"outgoing","index":143004,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"21d13d8b-a545-45b1-8272-1ecc44118ee6","direction":"outgoing","index":143005,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"916d5932-ef05-4d13-b047-d313ce2d999e","direction":"outgoing","index":143006,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:22.698-04:00"},{"id":"f5029d5a-8cea-4f77-9ba9-fbf3fdc3f315","created_at":"2026-05-22T21:10:22.893-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a316c9dd-2d40-4547-b3ea-179716ab7c3e","direction":"outgoing","index":143007,"result_id":"f5029d5a-8cea-4f77-9ba9-fbf3fdc3f315","status":200,"timestamp":"2026-05-22T21:10:22.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/ea94702c-bd31-4363-98bc-0ee18157a64f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:22.893-04:00"},{"id":"1efecfc4-0517-4b9e-b3ce-68080bc7a1e8","created_at":"2026-05-22T21:10:23.353-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b3139be7-ab26-49ab-8c35-43f73958a450","direction":"outgoing","index":143008,"result_id":"1efecfc4-0517-4b9e-b3ce-68080bc7a1e8","status":200,"timestamp":"2026-05-22T21:10:23.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=85","verb":"get"},{"id":"d5d31d19-69df-4b72-b766-0766972e40ec","direction":"outgoing","index":143009,"result_id":"1efecfc4-0517-4b9e-b3ce-68080bc7a1e8","status":200,"timestamp":"2026-05-22T21:10:23.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=355","verb":"get"},{"id":"83e3cce1-e85b-43e9-b765-ccb0e1207410","direction":"outgoing","index":143010,"result_id":"1efecfc4-0517-4b9e-b3ce-68080bc7a1e8","status":200,"timestamp":"2026-05-22T21:10:23.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8867-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:23.353-04:00"},{"id":"16b89508-660e-4b29-8196-dd2a1893a3a5","created_at":"2026-05-22T21:10:23.487-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:23.487-04:00"},{"id":"bf67fa22-30f1-47a2-ad21-74994d01a8d2","created_at":"2026-05-22T21:10:23.501-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:23.501-04:00"},{"id":"7663f0ff-4ce9-44be-b927-8528b6b8ab7d","created_at":"2026-05-22T21:10:23.504-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:23.504-04:00"},{"id":"7b6997d2-4db1-44bb-8cbe-0b32ea0ac83a","created_at":"2026-05-22T21:10:23.506-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_heart_rate","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:23.506-04:00"},{"id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","created_at":"2026-05-22T21:10:24.291-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e2a4c64d-492f-48d0-9a5c-bfcddd4196b2","direction":"outgoing","index":143011,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"4c8d8d8b-c7e3-4e52-9ddb-2e331a723525","direction":"outgoing","index":143012,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"0b911d10-2249-4b12-ba3d-d6a6677d1c57","direction":"outgoing","index":143013,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"b2594bc6-09a7-4466-82f3-6b8995ac711c","direction":"outgoing","index":143014,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"07cd08e7-89c7-4f60-89b7-bcdf8280bc9c","direction":"outgoing","index":143015,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"00c304cf-b556-426f-b141-9fd2b616996f","direction":"outgoing","index":143016,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:24.291-04:00"},{"id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","created_at":"2026-05-22T21:10:25.171-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3815c509-51c6-40c1-ae86-0ade0d17d716","direction":"outgoing","index":143017,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"55c7ffe6-7296-444e-a0ad-be1dca841db6","direction":"outgoing","index":143018,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"034471b7-f6dd-4f4b-93a5-0d6c74bf7584","direction":"outgoing","index":143019,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f961a81c-2635-4c5e-ad85-4399394f22fe","direction":"outgoing","index":143020,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3402bf82-ebf2-411e-aec0-3311b3024ef7","direction":"outgoing","index":143021,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4b824ddf-7176-4f09-ac5f-8dab0e835d7b","direction":"outgoing","index":143022,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:25.171-04:00"},{"id":"e738c42d-fb32-4958-8414-e4410889abff","created_at":"2026-05-22T21:10:27.011-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ed0d9765-3af3-49ba-8a8c-3baef1afa4d2","direction":"outgoing","index":143023,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9b914a42-3356-4578-873e-ec9299be9cba","direction":"outgoing","index":143024,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3f4a49-9e2a-4826-8708-f4ed7a59887a","direction":"outgoing","index":143025,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2565936e-769d-4fb6-9e81-0b12e3ecd2f1","direction":"outgoing","index":143026,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"962d7666-2129-4fc3-b0ce-a8cd9a761be0","direction":"outgoing","index":143027,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c39e4476-eef2-4b96-8743-e95ecf99b75a","direction":"outgoing","index":143028,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"429e5c16-58f1-423d-8c26-3a6fb3575c4f","direction":"outgoing","index":143029,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f4bde77-35dd-4cfd-9a9c-3d08ba6451f7","direction":"outgoing","index":143030,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03180678-fa41-4b98-9fed-cb2459206c56","direction":"outgoing","index":143031,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:27.011-04:00"},{"id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","created_at":"2026-05-22T21:10:29.785-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e33c1ca1-0f49-4fdb-a2e6-8f8f8e9c0a42","direction":"outgoing","index":143032,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2debbf25-bc46-4e66-8bab-a57b1cb4eb16","direction":"outgoing","index":143033,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9928259e-cdb3-408e-9940-981272de101c","direction":"outgoing","index":143034,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3d69e37d-894d-4587-b296-d446df991bae","direction":"outgoing","index":143035,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1a16ed5d-6f6b-4d17-b0bf-69fe7669e0f9","direction":"outgoing","index":143036,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fdccdeff-0e45-44d4-bc4c-8a95d4e63f65","direction":"outgoing","index":143037,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3391a127-9df6-4a20-92fc-58913664ccc0","direction":"outgoing","index":143038,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e372b0b1-60be-4021-a525-7801fa8821a7","direction":"outgoing","index":143039,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1088305-ce81-4639-8dc3-2a2fcdbc304e","direction":"outgoing","index":143040,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c135a0bf-f541-4c19-b8af-134c5eb4859d","direction":"outgoing","index":143041,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:29.785-04:00"},{"id":"ff699e23-702d-4c8f-842a-24b1a09db299","created_at":"2026-05-22T21:10:31.001-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fc3b4a2c-dbf8-47f4-8822-f995f6865719","direction":"outgoing","index":143042,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2c8fd07-7e93-4209-914c-1a4af74c589c","direction":"outgoing","index":143043,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6798f4e6-74f6-489d-85a6-e9dd116db298","direction":"outgoing","index":143044,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de2265d-43a2-41f0-84b1-4c7d4120d867","direction":"outgoing","index":143045,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"8ff5ff1d-cce3-43c6-a80b-6bdd7c05603c","direction":"outgoing","index":143046,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c4580-20f7-4626-966b-430247aada28","direction":"outgoing","index":143047,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.001-04:00"},{"id":"dcd9d561-0016-434b-94fe-cd7f7434f702","created_at":"2026-05-22T21:10:31.213-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a3913957-f883-401b-bb79-5cfb25f40211","direction":"outgoing","index":143048,"result_id":"dcd9d561-0016-434b-94fe-cd7f7434f702","status":200,"timestamp":"2026-05-22T21:10:31.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.213-04:00"},{"id":"d7c5ddfc-7ee8-47c8-955a-e11ddba0c7fb","created_at":"2026-05-22T21:10:31.677-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"bad7fbec-3396-403f-9d0d-f9f280a33e03","direction":"outgoing","index":143049,"result_id":"d7c5ddfc-7ee8-47c8-955a-e11ddba0c7fb","status":200,"timestamp":"2026-05-22T21:10:31.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=85","verb":"get"},{"id":"8fb6b16b-846c-4927-882b-0e95e966ca11","direction":"outgoing","index":143050,"result_id":"d7c5ddfc-7ee8-47c8-955a-e11ddba0c7fb","status":200,"timestamp":"2026-05-22T21:10:31.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=355","verb":"get"},{"id":"cfaba843-4917-400f-a510-f193b9d802c3","direction":"outgoing","index":143051,"result_id":"d7c5ddfc-7ee8-47c8-955a-e11ddba0c7fb","status":200,"timestamp":"2026-05-22T21:10:31.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8310-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.677-04:00"},{"id":"a09fd4e4-7929-4b66-b8a2-683fb108b20b","created_at":"2026-05-22T21:10:31.819-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.819-04:00"},{"id":"7ce8341a-caff-4ce6-b0d6-2478bd7b13d7","created_at":"2026-05-22T21:10:31.836-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.836-04:00"},{"id":"26ae9506-482d-4e9a-b105-8f93d6567a2c","created_at":"2026-05-22T21:10:31.839-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.839-04:00"},{"id":"38884076-0c89-484e-99aa-43e48ba97663","created_at":"2026-05-22T21:10:31.840-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_temperature","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:31.840-04:00"},{"id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","created_at":"2026-05-22T21:10:32.577-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"1104c4e0-0657-4dbd-9a6c-e647f4542402","direction":"outgoing","index":143052,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"f4d613cc-6720-49b2-961a-dbf8aa104892","direction":"outgoing","index":143053,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"487b3ef2-f13b-49b3-b008-730bc84ed08f","direction":"outgoing","index":143054,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"f19c9168-7ae3-4f7a-bcc6-f693010382c5","direction":"outgoing","index":143055,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"03926bca-c5f2-41e4-b4ea-890f7a24a34c","direction":"outgoing","index":143056,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"9451b097-5537-447e-a93b-75d9fa63c62e","direction":"outgoing","index":143057,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:32.577-04:00"},{"id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","created_at":"2026-05-22T21:10:33.476-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1d3371a6-0f88-439e-aba9-5dc433fdea7d","direction":"outgoing","index":143058,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3a6edbc0-2bc7-41b6-b9e2-e0ef9082a225","direction":"outgoing","index":143059,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c164c941-2fe8-48f1-b44d-1da6d987a5e0","direction":"outgoing","index":143060,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6bd67de7-ae16-45b1-b55f-de41aaa94324","direction":"outgoing","index":143061,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"75d1f8c9-055c-4766-802d-4a081aef2dd2","direction":"outgoing","index":143062,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7d98ac76-76db-41dd-9ba5-18a21e202887","direction":"outgoing","index":143063,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:33.476-04:00"},{"id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","created_at":"2026-05-22T21:10:35.059-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"968b410f-3ea8-4999-b261-b280e3dbcc59","direction":"outgoing","index":143064,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"559a5524-9ebe-4ae6-84da-3eae18f80e1b","direction":"outgoing","index":143065,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b7eba04-a0b7-4656-98f6-6ecef6ea887e","direction":"outgoing","index":143066,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e02524c-8fbe-42b5-bf9f-76300a1f4333","direction":"outgoing","index":143067,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"0a907206-bc85-4a7f-8035-c55adf933b7f","direction":"outgoing","index":143068,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"573bdf07-cff4-4612-86f1-ead7a4180d20","direction":"outgoing","index":143069,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17841c16-9241-4b41-92a6-a253a5fe3dd2","direction":"outgoing","index":143070,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b706f5b9-95f7-4752-a6ba-de44ca52af0c","direction":"outgoing","index":143071,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a10648eb-e811-41c3-8887-8d9d1675a121","direction":"outgoing","index":143072,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:35.059-04:00"},{"id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","created_at":"2026-05-22T21:10:37.829-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"131aa460-5aa4-4a6a-b3e5-4b3892ab1b43","direction":"outgoing","index":143073,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2054a894-dc1f-44f8-8da9-afe6b70f62c8","direction":"outgoing","index":143074,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b96385cf-e41e-47c4-8305-2fa270a0e5a0","direction":"outgoing","index":143075,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb4597be-c1e8-406c-85f1-7a92d61c83f5","direction":"outgoing","index":143076,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c593b071-70ec-4bed-9875-10011c8ba169","direction":"outgoing","index":143077,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"878e5631-9e6c-4f0c-ad5c-41efd6367b10","direction":"outgoing","index":143078,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737efd6b-580d-42c7-a8eb-a037d941556f","direction":"outgoing","index":143079,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d2ee444-16dd-4bb5-a27f-bd209f93c5b6","direction":"outgoing","index":143080,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05f53142-c4b3-4f28-804c-d3e510489ae6","direction":"outgoing","index":143081,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dd5b6114-53f2-481e-abb3-37c87d7a2196","direction":"outgoing","index":143082,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:37.829-04:00"},{"id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","created_at":"2026-05-22T21:10:38.913-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"de91b9da-54a0-4e28-b784-b26c2cdb5065","direction":"outgoing","index":143083,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"583cfb1d-a97a-41a6-a451-4099aee6ef94","direction":"outgoing","index":143084,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f99d3fb8-c1de-4cf0-abeb-de4742cce31f","direction":"outgoing","index":143085,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a707e19-cee0-4615-a4e2-ff66c0a86310","direction":"outgoing","index":143086,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a3faa2a0-19c7-4682-a46d-613ef8145356","direction":"outgoing","index":143087,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90016b9a-87c7-42e8-8ab4-ea40a6c647c2","direction":"outgoing","index":143088,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:38.913-04:00"},{"id":"cc0d0323-ffc8-4c35-97a7-e2d3b7c44c0a","created_at":"2026-05-22T21:10:39.121-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"67650074-b9a3-470f-b838-3f6132ec3190","direction":"outgoing","index":143089,"result_id":"cc0d0323-ffc8-4c35-97a7-e2d3b7c44c0a","status":200,"timestamp":"2026-05-22T21:10:39.125-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.121-04:00"},{"id":"5b0c609b-075a-4bf7-9596-de0c706967fc","created_at":"2026-05-22T21:10:39.583-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8421087b-fdeb-4f75-8d0b-d5e503d8fa30","direction":"outgoing","index":143090,"result_id":"5b0c609b-075a-4bf7-9596-de0c706967fc","status":200,"timestamp":"2026-05-22T21:10:39.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=85","verb":"get"},{"id":"5d8c30f9-540f-4a6e-b251-844ee7d3fde7","direction":"outgoing","index":143091,"result_id":"5b0c609b-075a-4bf7-9596-de0c706967fc","status":200,"timestamp":"2026-05-22T21:10:39.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=355","verb":"get"},{"id":"b038f47b-2cc2-49a7-9bfc-d9f0fe5cc804","direction":"outgoing","index":143092,"result_id":"5b0c609b-075a-4bf7-9596-de0c706967fc","status":200,"timestamp":"2026-05-22T21:10:39.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=77606-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.583-04:00"},{"id":"4d62f7a7-c664-4819-979a-04c90d9eff28","created_at":"2026-05-22T21:10:39.685-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.685-04:00"},{"id":"ac134ed0-0fe4-4a10-a3a7-283fb3390bfa","created_at":"2026-05-22T21:10:39.692-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.692-04:00"},{"id":"0c0f7f04-d453-4037-95cc-f2edb7e1a52e","created_at":"2026-05-22T21:10:39.695-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.695-04:00"},{"id":"d639e3b2-bb61-407a-a294-6a6a55abfc94","created_at":"2026-05-22T21:10:39.698-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:39.698-04:00"},{"id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","created_at":"2026-05-22T21:10:41.049-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"371571be-9e39-4bf0-9d38-71b1c22a59bb","direction":"outgoing","index":143093,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"d6372c22-6699-41a8-914b-114abd9f519b","direction":"outgoing","index":143094,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"ed5bfc8f-3499-4b13-808a-57fc7f33d343","direction":"outgoing","index":143095,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"66c17173-392c-4508-ae8f-bd19feb55152","direction":"outgoing","index":143096,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"b665f13c-e8b5-44a9-a551-13845f5acc43","direction":"outgoing","index":143097,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"4dedb71c-4a9a-42ef-88a9-5f443f40b910","direction":"outgoing","index":143098,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"33b561b4-f009-4728-8f94-c67f33ffc0c9","direction":"outgoing","index":143099,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"8da8ecc4-2275-49ba-8c1d-a8eddd5fa2d3","direction":"outgoing","index":143100,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"cb13877f-107a-4471-8e9e-a4e3203172e6","direction":"outgoing","index":143101,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:41.049-04:00"},{"id":"83be0ba3-7432-4061-888a-b7f2adca32de","created_at":"2026-05-22T21:10:41.991-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"fbca43d9-72bc-4d9a-b1ba-d674601ce61f","direction":"outgoing","index":143102,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3db9ef6a-0e9c-4f37-bd99-b5a93f8d2259","direction":"outgoing","index":143103,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"0b3253d3-bc15-4ccc-96a5-afb835113672","direction":"outgoing","index":143104,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"2c32861a-035c-4e45-abe4-ff84ae41a585","direction":"outgoing","index":143105,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"c27ea600-f051-44c5-b713-d5931b49214c","direction":"outgoing","index":143106,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"7ff6bdcc-14eb-41ca-868e-20bb640f5f83","direction":"outgoing","index":143107,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:41.991-04:00"},{"id":"12060905-f000-4789-8a65-0c7f05eea088","created_at":"2026-05-22T21:10:42.478-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"78d99a45-5835-47bd-aa88-9a99c60b76ba","direction":"outgoing","index":143108,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"9b22be4c-2695-4f7a-85ca-cf3a4b22b5d8","direction":"outgoing","index":143109,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"c9134509-6722-4736-a004-7a095a90e808","direction":"outgoing","index":143110,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:42.478-04:00"},{"id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","created_at":"2026-05-22T21:10:43.393-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ad054d05-c119-45f4-b3e5-57026fe9bbcf","direction":"outgoing","index":143111,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"4c05f617-e38d-4e61-90ec-9ea64556cd25","direction":"outgoing","index":143112,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"cc80a8e1-eb84-4405-92b3-dc5b5e63e8a1","direction":"outgoing","index":143113,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"86bf7b3f-8d90-4ddd-a7c8-3325c4e173f2","direction":"outgoing","index":143114,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a2f246cd-7fec-4ff1-be62-07313ebeb5ad","direction":"outgoing","index":143115,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a1f537b7-bf86-42fd-adea-e0cf8110594c","direction":"outgoing","index":143116,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:43.393-04:00"},{"id":"f3e21823-894d-4835-bf72-434f274e20b7","created_at":"2026-05-22T21:10:43.743-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8c7da6f5-2d26-498f-8051-bb6b6f33fd0c","direction":"outgoing","index":143117,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"e57da4e9-7854-4ed0-8179-66ec71142afa","direction":"outgoing","index":143118,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:43.743-04:00"},{"id":"88dacc37-f799-4cdc-87c6-54a364540663","created_at":"2026-05-22T21:10:43.884-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"887e8a92-01dd-4b9b-8992-a9a955cdcfe6","direction":"outgoing","index":143119,"result_id":"88dacc37-f799-4cdc-87c6-54a364540663","status":200,"timestamp":"2026-05-22T21:10:43.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:43.884-04:00"},{"id":"849f66e2-813a-491c-97b1-d6949ad69af5","created_at":"2026-05-22T21:10:44.731-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7f8bf63a-80fa-48d2-984f-51694aa6aaba","direction":"outgoing","index":143120,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=85","verb":"get"},{"id":"5a999fe1-8e37-4a1e-900c-3987aeda0c4c","direction":"outgoing","index":143121,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=85","verb":"get"},{"id":"72861f79-cc65-45d6-907a-a2800aeab3f6","direction":"outgoing","index":143122,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=355","verb":"get"},{"id":"f8e11809-3861-4ffb-89f5-134c1bcd4c52","direction":"outgoing","index":143123,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=355","verb":"get"},{"id":"7922ead9-481a-4b27-8172-289f4f0d3595","direction":"outgoing","index":143124,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59408-5\u0026patient=907","verb":"get"},{"id":"ba75769f-c95d-472a-958b-28c292876359","direction":"outgoing","index":143125,"result_id":"849f66e2-813a-491c-97b1-d6949ad69af5","status":200,"timestamp":"2026-05-22T21:10:44.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=2708-6\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:44.731-04:00"},{"id":"1cfa2444-602c-4d6a-8598-69b301a350f8","created_at":"2026-05-22T21:10:44.918-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[0].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3151-8)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.component[1].code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#3150-0)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:44.918-04:00"},{"id":"68eca445-b696-463c-a497-b4ed6fe5f395","created_at":"2026-05-22T21:10:44.939-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:44.939-04:00"},{"id":"bf37ff4c-8a04-462a-9061-eec07e9a4ec7","created_at":"2026-05-22T21:10:44.942-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:44.942-04:00"},{"id":"76a5b0f8-1d07-4b77-a5be-522c1d1bc12c","created_at":"2026-05-22T21:10:44.943-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pulse_oximetry","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:44.943-04:00"},{"id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","created_at":"2026-05-22T21:10:51.224-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d7c8a670-a035-492e-b388-0d69aedde651","direction":"outgoing","index":143126,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"7ad05933-2b3b-49b4-926c-ef6037316b51","direction":"outgoing","index":143127,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d477ebd-2af7-4aaa-b5c9-a37ecd38f9d9","direction":"outgoing","index":143128,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96797fd8-2e2e-4520-9e82-d30ae18bdbfd","direction":"outgoing","index":143129,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20e316e4-ac49-4944-a7e7-7b4453ea751f","direction":"outgoing","index":143130,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"b8cbebc4-92fb-4451-917e-0700df7d7892","direction":"outgoing","index":143131,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"707648cf-1170-4f03-8c21-b279379b46ad","direction":"outgoing","index":143132,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd158b93-0b98-4aaf-a7b5-068a89468f83","direction":"outgoing","index":143133,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"417104ad-efff-4fd9-a66f-b1a04aef2272","direction":"outgoing","index":143134,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"52a8dfc2-a985-4708-a9c6-89226615c01d","direction":"outgoing","index":143135,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe771d0c-6c08-469c-aa2d-a19995cc9564","direction":"outgoing","index":143136,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a05b0b9-ab87-4dd0-a95f-0529b05eb5f8","direction":"outgoing","index":143137,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44b40e60-b638-4e96-b4fb-0cd0c1e300ce","direction":"outgoing","index":143138,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"21bffd5c-ed25-4bce-b751-233688339eb2","direction":"outgoing","index":143139,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"196f90f3-bc5c-4b47-9eff-dcc780ee204a","direction":"outgoing","index":143140,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c06345e4-ddb1-4ced-b280-469e0cd9725b","direction":"outgoing","index":143141,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af9f3c86-15ff-46d9-a49d-f4204fbb0e04","direction":"outgoing","index":143142,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"9e6f401a-954c-43e9-a5f6-3a9695a992a9","direction":"outgoing","index":143143,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8da7ea43-70f7-440d-9b44-bef2287de2b7","direction":"outgoing","index":143144,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b7032b0-a76d-43f8-ad3f-b7e09eb22cc8","direction":"outgoing","index":143145,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e324b3c4-c9fe-4543-9ae4-1d2f5ea70355","direction":"outgoing","index":143146,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17effb88-eaa4-4f56-a88d-3b8bd9211c07","direction":"outgoing","index":143147,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"120ab3f2-2198-46ca-b15f-d65d27973aa9","direction":"outgoing","index":143148,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7956b5e1-f882-4ce2-8509-8e2b9a3537f3","direction":"outgoing","index":143149,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac706351-6c2b-4092-adef-ae15aa9e0458","direction":"outgoing","index":143150,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ce6834e-d8e5-407c-a6ac-808deb4c5a60","direction":"outgoing","index":143151,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b48ae2e-88a1-438f-b384-1a4efb708fae","direction":"outgoing","index":143152,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:51.224-04:00"},{"id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","created_at":"2026-05-22T21:10:54.445-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"695349df-2ec8-4652-aad6-d3ecace0b4c7","direction":"outgoing","index":143153,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bc7b269f-0772-464b-9986-7ac1e95a4315","direction":"outgoing","index":143154,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"dea7a412-4f26-485f-9869-daa3bf1719dd","direction":"outgoing","index":143155,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db807be6-7a4d-4f2f-81bd-7afe059b109a","direction":"outgoing","index":143156,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c50e56c1-f677-4051-8fed-f9d9362bebe8","direction":"outgoing","index":143157,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d127359-bf2a-4a7e-8dff-2ea5570c13ea","direction":"outgoing","index":143158,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ce431276-7077-44f8-af1a-605feb617028","direction":"outgoing","index":143159,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbcf40b1-b457-4fd8-9c8b-1ab494e465ba","direction":"outgoing","index":143160,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"880ad55e-61cc-47a8-b254-8acec1e98d26","direction":"outgoing","index":143161,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e28457e-5f31-4c0f-bb7f-63f3c676a135","direction":"outgoing","index":143162,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"324205b4-f02b-4234-ac26-6ee1381dee24","direction":"outgoing","index":143163,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b57a32-c4be-4fb5-9cf8-6ff2a47902ff","direction":"outgoing","index":143164,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3404f7ae-c03d-4bb4-89b7-9e246cf142c9","direction":"outgoing","index":143165,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:10:54.445-04:00"},{"id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","created_at":"2026-05-22T21:11:00.488-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"599676ae-896c-474f-9cad-5ed9560bddab","direction":"outgoing","index":143166,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"4cfdae07-f9f0-4349-83fc-29c8eea4f575","direction":"outgoing","index":143167,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"542a15f3-dafb-4f94-9ed5-9c6b3eb7b73f","direction":"outgoing","index":143168,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"289e2ddd-8194-42de-b887-eda5e6887848","direction":"outgoing","index":143169,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"944f9861-94e0-4265-9f29-8a3247dd3ebe","direction":"outgoing","index":143170,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05053937-5c5b-4ceb-a866-2baa1486fc3f","direction":"outgoing","index":143171,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"fb26e6d7-6097-4b2d-8790-375b54fb1c08","direction":"outgoing","index":143172,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e70d0a1b-3f81-41f4-b130-d10309bc3834","direction":"outgoing","index":143173,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12bf6013-568f-40c6-bf90-d25b9a65f4cc","direction":"outgoing","index":143174,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dee6ddd-4b7b-4f77-a14d-f5c55db8a061","direction":"outgoing","index":143175,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ecad1-03a7-4637-984b-ae7b4e16a328","direction":"outgoing","index":143176,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"5058ab18-7e8d-4134-8072-eb07767f04af","direction":"outgoing","index":143177,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35d6138e-c9f8-4140-9900-1809bfe25aa6","direction":"outgoing","index":143178,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39cfa167-20f2-4d5e-971d-2d29d8bfb796","direction":"outgoing","index":143179,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fff5e72-88e2-413d-bf17-824dc6026893","direction":"outgoing","index":143180,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31d17cab-8a97-4150-afdf-483aa74c39b7","direction":"outgoing","index":143181,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11707e61-a25b-4c3e-83aa-2a8a3817d520","direction":"outgoing","index":143182,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff1bc43a-fdfd-4532-8e28-5350645cde6b","direction":"outgoing","index":143183,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a88fb1e-21e8-49be-acd8-0e3150c4867f","direction":"outgoing","index":143184,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72aac27f-a306-4b13-88b5-83a0b9c6e141","direction":"outgoing","index":143185,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39c9309b-1a04-4160-9ccd-e44689b7bccd","direction":"outgoing","index":143186,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"e5a65530-a6a0-4d0c-96df-8a98ebde83f6","direction":"outgoing","index":143187,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce471f39-83a6-49f5-9d7e-a74b5ca21f92","direction":"outgoing","index":143188,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0b7114e-e6ad-4ff1-a997-c4cb591a2214","direction":"outgoing","index":143189,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3029e71-1b8a-40f3-918b-41256fd141c6","direction":"outgoing","index":143190,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:00.488-04:00"},{"id":"675cbcdd-32aa-478a-b5c6-554cafe20181","created_at":"2026-05-22T21:11:04.138-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dfb5f69e-05b7-4ed4-908a-a3831d9a2f8c","direction":"outgoing","index":143191,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"83559d18-b3ac-4b35-ba6b-28c12340f19c","direction":"outgoing","index":143192,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f15d677c-30b2-402c-8b35-d084e0bce081","direction":"outgoing","index":143193,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa883a49-df42-4cca-a220-ef916fc7a818","direction":"outgoing","index":143194,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f0cce23-d439-4981-9c6b-7352b8f52854","direction":"outgoing","index":143195,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa244b6d-b1da-4065-a87b-dd78a983cb1c","direction":"outgoing","index":143196,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b252deeb-fb52-4af2-9cac-1982ba28da13","direction":"outgoing","index":143197,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ef0abaf3-f8c9-4efc-9f69-026e85d4ea57","direction":"outgoing","index":143198,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89fd35ae-e15d-48d7-9d37-6c02d47ef456","direction":"outgoing","index":143199,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45cda9f1-2a6e-45ea-9734-bf1038b7c65a","direction":"outgoing","index":143200,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da3e44dc-4918-4751-9cda-9d4cd46f025c","direction":"outgoing","index":143201,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e85e646e-f08e-40b1-b1fb-d6f2d35db95f","direction":"outgoing","index":143202,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9ba802ee-93d8-4bc9-8b06-e5ea8c3aa4a3","direction":"outgoing","index":143203,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b0fea0-1e47-4f0f-9821-7a0007cd1213","direction":"outgoing","index":143204,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8309be3e-3a22-4656-8fbf-545f064efc95","direction":"outgoing","index":143205,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:04.138-04:00"},{"id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","created_at":"2026-05-22T21:11:08.936-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6dd37b64-1140-4a55-bf7a-ad777e87fb07","direction":"outgoing","index":143206,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c190d648-ee69-4691-93a3-3fa3414c23aa","direction":"outgoing","index":143207,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c1a9616-bc64-4b63-a367-56c8cd07b35d","direction":"outgoing","index":143208,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5ed12c2-c3e1-4123-8208-d7bc3578b446","direction":"outgoing","index":143209,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320c0779-ee08-4b19-ae7e-7fa6b324822e","direction":"outgoing","index":143210,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5a6da2-f9d9-453b-9840-8e5f0a83c390","direction":"outgoing","index":143211,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"f65212b1-9d46-4a91-9ce2-f36412e9b9d8","direction":"outgoing","index":143212,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9b8ce1-196a-463b-839a-98d84285fe6d","direction":"outgoing","index":143213,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d732ae7-bdd0-4b94-8613-a8cfea0ebb95","direction":"outgoing","index":143214,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b1155e4-bccc-47d4-b75e-4a24efd4cb3c","direction":"outgoing","index":143215,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a94b2656-081e-46e5-b502-6a9ce292ae7e","direction":"outgoing","index":143216,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"d7afa24d-07b3-4875-ba8b-6ffeda0e92e4","direction":"outgoing","index":143217,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2f0516c-b6e2-4139-b7a7-1f8f83799004","direction":"outgoing","index":143218,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8652faf5-2c24-4144-ab0f-ad033b0c7583","direction":"outgoing","index":143219,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7334b6e-9bbf-4604-a9a3-736b254667c9","direction":"outgoing","index":143220,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd42ee37-49d7-4537-861c-46826f05ed99","direction":"outgoing","index":143221,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c528a6c-3a27-42c4-9514-1b4c2caada2c","direction":"outgoing","index":143222,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c514a5fc-9ae7-4804-b2f8-f26f6bb5dcf7","direction":"outgoing","index":143223,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a475fa0-55d2-449e-ada9-accd13a250f5","direction":"outgoing","index":143224,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac02c797-7553-47d0-b9b3-b643557249df","direction":"outgoing","index":143225,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:08.936-04:00"},{"id":"2086d152-f870-4d18-baf9-0d2b9f928589","created_at":"2026-05-22T21:11:09.344-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"fad68c52-7bdd-48c5-8666-5e960fcdf1ca","direction":"outgoing","index":143226,"result_id":"2086d152-f870-4d18-baf9-0d2b9f928589","status":200,"timestamp":"2026-05-22T21:11:09.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/a230c57b-b261-471c-88ed-9871547378df","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:09.344-04:00"},{"id":"5e3f315c-a27b-438f-be17-78ef680d0300","created_at":"2026-05-22T21:11:13.270-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dd29416c-7246-4891-807e-e2c0dd0e6ada","direction":"outgoing","index":143227,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=85","verb":"get"},{"id":"8ba23d7a-a0be-425d-85b0-b273d59f0db9","direction":"outgoing","index":143228,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=462856e7-eb0c-4ad9-a5db-91c0618aefc5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b5ea242-4644-426d-9eca-68977f512571","direction":"outgoing","index":143229,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=462856e7-eb0c-4ad9-a5db-91c0618aefc5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99007260-56cb-40e7-877d-ecaa27bca460","direction":"outgoing","index":143230,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=462856e7-eb0c-4ad9-a5db-91c0618aefc5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"238a03fc-4733-49a5-ac2c-b62d2c00b7b9","direction":"outgoing","index":143231,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=355","verb":"get"},{"id":"aa6e3a5c-cd86-431e-9584-d9fdf10689c7","direction":"outgoing","index":143232,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82eacb44-0e1e-426e-97a2-3de7aa3eda14","direction":"outgoing","index":143233,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cba494d-8cb0-4337-a80e-60adacc08249","direction":"outgoing","index":143234,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8cb048dd-750d-4ceb-94bd-415314a99194","direction":"outgoing","index":143235,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.407-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"01021ff0-c2c9-4db7-a6a4-8375c30b170a","direction":"outgoing","index":143236,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"67c7eb41-6a6b-4d98-bdc6-133909cd0812","direction":"outgoing","index":143237,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c6477aa3-7754-461a-829d-ac73abe090bc","direction":"outgoing","index":143238,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.454-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb7d281c-f409-4d11-a921-732d1a6747f3","direction":"outgoing","index":143239,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b6aaf74-9173-4892-a1c7-070b0b4a286e","direction":"outgoing","index":143240,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0c5c546d-123e-475a-a35f-7191f1c839d4\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12ab1eac-c188-45b7-939a-5b77e945e797","direction":"outgoing","index":143241,"result_id":"5e3f315c-a27b-438f-be17-78ef680d0300","status":200,"timestamp":"2026-05-22T21:11:13.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=72166-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:13.270-04:00"},{"id":"7d666463-d06e-48a9-9e1b-2fe58c5dce4e","created_at":"2026-05-22T21:11:17.101-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a230c57b-b261-471c-88ed-9871547378df: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/bd86f5e7-716e-4928-a04d-ffa1bf97b1af: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4f07b658-a388-46e7-887d-24d381d5d7dd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/92857d8c-8a35-4a2c-b908-d00a1a3eb971: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c97c8f18-67aa-4c61-9898-d6b6cddbd80c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2cfb0f94-3dbd-4249-b16c-0adab24b268c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/064eedfc-3498-4e42-8b26-62ea0291298e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/38fe65f6-dc36-4c27-b728-745176dd1358: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/adf3d5d7-db93-478d-a3c2-c65092e3e1a6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d1e5ae42-39b6-4ca5-b506-fe54a4dd4e85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5009a013-0494-496b-b1c2-0056ef8c51c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6788d1f7-2901-4a2a-aed0-cf8dc8831119: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a2ee4516-91ba-4dc8-bbc0-57ebb79343d1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/392da997-dd84-411e-b69d-123d0c073700: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff4a5108-25fe-4d7d-92b1-f7cb3d46da16: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/09af2bcf-4d7c-4469-a28c-81abf5a32159: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/44f6f747-6397-476b-abd6-025963682b28: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/047d88fa-32d5-4493-9228-27b445c4bfa0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/15987fdb-dd81-4bc4-9c09-78a37de7729a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e503b582-8c00-4eff-b255-55ab8382b9b6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9ac0d8f3-1407-4b15-b47a-1f37389a0fc3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ff7c7893-645e-4a44-95de-739acb6727fb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/623ec03e-5f43-418a-9b74-91c1ebde3fee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/32c6dd52-5f3d-47ca-b9bd-e13577b94161: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d6888594-1ca4-4e1b-8243-61206733a9f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/77961161-403e-4396-8073-2d0328d3c7ba: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8960a89a-f7aa-4c84-9aeb-f5db7b6ad4f0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96161d78-74ec-412e-bd1f-4b9f0a8311d7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/faeb6d12-6240-4953-8ab6-405785d1cc71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4bc36465-192d-4bd5-9d8e-07be8c159085: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4550286f-5bb0-4f22-ad2d-265eb61b36ac: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/598f523e-419a-40f9-a2e0-f86ae0fa975a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f5220a72-b9f9-48fe-a881-ddfeaf37562a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35667b33-cb27-4f15-9c26-9ad345920402: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/894d6be0-4c5e-44d5-9971-6b315c5f3496: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/73fc7d0a-4b8d-472b-91a9-b4c820bb2061: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/087c071b-95c7-4a8f-8c87-7d7f70bc60c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d9edb906-4273-4e1a-a1e4-aeefd6bfee4b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b7f50333-54ee-4255-ac27-44691f6e4c08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/10e6a67c-20ff-4b19-a2f5-324b2328f25e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e5486462-621d-4d87-a4d6-f929a8f1d409: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/aa0a2f5c-1cc3-4788-947b-05851c2d002b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4cf1de76-bda6-4bb2-83e9-4ed1e082972d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d7684b79-98a9-416a-9d8e-58348c7577f4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/511448b2-24f2-487c-86b2-256b322362b5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81aff1d4-372a-4da1-9a81-5caeced1b4c2: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0597fe09-fdfb-4b07-b454-89d03489f577: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/25490623-7025-4c48-93dc-a775a663be8c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc85b175-cb99-4f6a-b3cf-3a4459e81a69: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/657a8f33-404b-420c-b3d5-52026f7bd930: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f349d7-6ad7-4d46-ab66-8b18df3b8431: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6746aa2e-867d-413e-97f0-58fb6cbf1ed9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/34e145b9-9461-4f61-9616-08512cc06653: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2b31554a-226f-4bd6-b45f-b7b199a65399: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ba91fdfa-1c18-4458-8a42-988d1ff6063a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dda9a21c-a029-463a-9ef0-97db743c1077: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e7a63df8-c354-49f2-81cf-a7d4ec8ab014: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c65bdc4e-5d6b-49a5-a78e-93a3a721bde8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/796812f5-c5d5-4683-af7d-4743cf53c0e7: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6e44b61f-c279-40d2-980b-33bce46b7b71: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b1105e1-1604-4177-b13a-385ed40633bf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/494691c8-ad7b-4882-83df-dc08517a6df8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e4c31d1-82d2-41ad-b6e6-67666c6cfa1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/097d31aa-d77e-47c2-a6f8-f48b40b073e5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/541fb2fc-982d-4bae-bfb0-a1155e46d39a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/89c3d49f-1a01-4154-b117-bb4ff3ee19c8: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/712a784c-5b88-4ec0-bce3-33054e263536: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d895bc8-7d2f-495c-847c-157159ed8873: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4765cfdf-3d94-47a4-ab01-7d398540878d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7a4b87c6-6b9b-43fb-8286-4a2ca47a2bea: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2c095e51-52c4-406d-a372-762028ec20a4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fa9a5ee3-1342-4c9b-add2-ab2aee4ff93d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d8decfe-0913-4950-a6ef-8842655671e6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9afb7435-d9b6-4454-aa8e-e4a95a8f3380: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/36871861-286a-4055-af81-553d0e4db06a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a9053322-b86c-4349-b480-b383309eaa24: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/802a436a-b903-47e4-80fc-15f8bf5fddd0: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1965d478-0744-47e3-a50c-00a5349776ab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cc2e4300-f7a9-4b96-b920-f55588d9ce18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cd4dda90-6041-4fdb-935c-7a758b8a864a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/94c56e60-be2d-4d39-93ec-a45f6c846a9b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5ab98a3b-8f39-4300-9ca0-2b33ec49bd33: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/410d21c5-d158-451b-b5ea-87a25a122e18: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/563b1234-1d72-4ad4-b5b8-d44cfc20e67e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b3719c89-26b1-4b1d-a7c9-f9e61c165890: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ca92cce8-bfb7-4b50-b630-7ecee0e2b30f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67c8c3a0-a549-422d-9d58-9b784ab38acf: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a1408e76-bab7-40b7-bd2d-b3d931a16a7d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2bcccf7c-5fc0-4504-b852-e74fc714f691: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/dc8436b5-da9c-4ec0-80ac-f158b43e6e84: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96c016c0-1fa8-4175-bdec-33e0b28bbcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3041e91c-2298-4e2a-ad9c-002d903267e4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/01f9a0ab-1d59-42f2-a538-3e9867aed9de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3cde54e5-081d-469b-be86-83bd927dd883: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d82be97a-52de-4fa6-a87e-2a5e2c1d2150: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e10763f1-4003-46f9-b219-a38e69ab2fab: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fce45a76-e53b-4795-9767-b1cdaf453756: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28ed0475-5a63-46f3-849b-844dea107790: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3e7ae7e3-97bc-41e1-a29a-cc842c27d1de: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/85402a3f-d132-43f7-9120-76c30fac4c56: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/61456e35-e3d9-412e-a7d6-7809c54f4ba6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1f30f7a3-25cb-46d3-b4c8-65c35925137a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/eb07f5d6-3a10-456a-a0e9-922d4144630c: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d210692f-8c56-4cb7-b7a6-ba781b3ad011: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539386bb-16b7-4406-bb3d-34a8ed076364: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a13ce470-337d-441d-a698-43721713885f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e3edf5d4-7c07-488e-8761-14073f33d3ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f911e16f-dbdb-4565-8e8a-ffb2f1af6576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4295f1e9-8365-44c3-95be-8e2a0c29dcdc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/93f6571e-10bd-494b-a7b9-73b552ad26a1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8ce0676e-62b2-49ef-ae8d-07fb9c2cbbe5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e1f5b382-e588-4328-833d-6a9929c27c7e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/96771cf2-e3a1-4073-85ea-82c7967bf6a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ef4263e-89c3-423e-a03a-c98ce75ba079: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/307e56e0-16e3-488f-9fc8-028738e18a85: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/41efb257-2bd4-4a8d-a88a-2b79f41acd53: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fbf918e1-4678-466b-b141-bdf79c51cc1f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/539812f2-83cb-4c57-beb2-3cd058a55400: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/79c8d098-a35a-4956-ab09-5bf621577a08: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/75d97863-d35c-4e63-8c52-80b935ffafd6: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7d37a522-18c4-43a0-a41d-020a1fc96576: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/905199cb-1524-4c9a-a3c4-8d5dd0b167bd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/43d01161-da4a-49aa-a90b-fe9f2f85e774: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d1c40c0-bc4a-4eed-83c4-38a8959d2c87: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/468ec310-20ef-42b2-8673-95f392e68216: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d495db49-804d-43c5-ba05-c430b49c39c5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/67736af1-700b-4443-9ea3-693ba3b20ad1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d0ea478-c6eb-4d48-a131-b01a1acfdb86: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/d8f5bf37-495b-4962-a5c6-f5cabbb62771: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/91769727-8dd9-464d-9978-463281aaf232: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f0aec4f6-42ce-4f2c-ad8b-3a1c4423f12d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation.value.ofType(CodeableConcept): None of the codings provided are in the value set 'Smoking Status' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.11.20.9.38|20170915), and a coding is recommended to come from this value set (codes = http://terminology.hl7.org/CodeSystem/data-absent-reason#unknown)","type":"info"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06d90d2f-a719-42a1-8763-277ac16046c9: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:17.101-04:00"},{"id":"5d472a35-0885-4b93-b4de-8265bb10e71f","created_at":"2026-05-22T21:11:17.373-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:17.373-04:00"},{"id":"db806ee0-baae-4989-805a-d8a95ce9147b","created_at":"2026-05-22T21:11:17.377-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:17.377-04:00"},{"id":"5a549bb4-90f7-4420-856b-870c0da501dc","created_at":"2026-05-22T21:11:17.379-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_smokingstatus","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:17.379-04:00"},{"id":"66d3bf48-ec14-4487-aab0-33156389b010","created_at":"2026-05-22T21:11:18.134-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b4e76ae7-04ec-472b-981a-386aa59d3a35","direction":"outgoing","index":143242,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"43b685de-befe-45bc-9abe-11ecfcf14e33","direction":"outgoing","index":143243,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"c5ba4a34-bf00-40e9-9ceb-bdddeeae8622","direction":"outgoing","index":143244,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"70724910-bba3-4cd2-8bcd-6cc6e37063f2","direction":"outgoing","index":143245,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"4d1d3fea-0789-44f2-81e2-5181ad84531e","direction":"outgoing","index":143246,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"5f327329-aed8-4f72-a20b-37349f8d8417","direction":"outgoing","index":143247,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:18.134-04:00"},{"id":"45ed268a-b312-42e1-86ae-cf45f97ce492","created_at":"2026-05-22T21:11:19.000-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"cf79551c-546c-4a2c-aba0-5625272b1b98","direction":"outgoing","index":143248,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"009f1855-29c4-4267-8fa9-2fd09a0771cb","direction":"outgoing","index":143249,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"1b10620d-6905-4a66-8255-492ba3ee2fce","direction":"outgoing","index":143250,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f0bd9ee5-5bc5-4e86-8603-2ae85bc0cc78","direction":"outgoing","index":143251,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"89844ae5-2eeb-44ee-959f-7f078bd5100d","direction":"outgoing","index":143252,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"05224511-940d-4176-a566-0c97ddb55340","direction":"outgoing","index":143253,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:19.000-04:00"},{"id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","created_at":"2026-05-22T21:11:21.895-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"ad763595-bf50-4aa7-8e17-328fa457a28e","direction":"outgoing","index":143254,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"598c4d85-0521-456e-9d87-837c0594dc6b","direction":"outgoing","index":143255,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91a4fc6b-22df-40d8-8422-05bf6ebac015","direction":"outgoing","index":143256,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49ccc8f0-5979-4d10-8c08-a05cffcab940","direction":"outgoing","index":143257,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c27fda89-b188-424f-8bd3-c4d9a3f346ca","direction":"outgoing","index":143258,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e6335b1-cf9b-4710-adc0-8fd1ad1f051e","direction":"outgoing","index":143259,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"a0a43dc2-1a4c-4fa6-a802-a347da3c2d4e","direction":"outgoing","index":143260,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1c3dc44-28ec-41a9-b3b6-85d59e71f759","direction":"outgoing","index":143261,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbf2c7b2-77bf-47ef-afff-3ab8b03c1143","direction":"outgoing","index":143262,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96522724-5da7-4f75-8401-3a660f0457d8","direction":"outgoing","index":143263,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8bd2eb1c-0e44-46d3-81ae-aabf20e5b296","direction":"outgoing","index":143264,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"879026dc-3966-4a31-aff4-642ff2a1c795","direction":"outgoing","index":143265,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1381fc1e-2b98-49d7-aca9-bb96428a0a48","direction":"outgoing","index":143266,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0e0328a-b9c0-40fd-b759-93a312a97958","direction":"outgoing","index":143267,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78994cc-19ba-4a7b-9595-39cbb45bda4b","direction":"outgoing","index":143268,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:21.895-04:00"},{"id":"1d80d204-3550-46f2-a44c-30e0da2535f1","created_at":"2026-05-22T21:11:25.050-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"06b0bbc9-ac94-45d0-a6de-e6d5dfe44100","direction":"outgoing","index":143269,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5cd07ac9-77a3-4394-9740-6e3ac2d09fec","direction":"outgoing","index":143270,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.078-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f07bcc2b-eeaf-4fef-845e-5ea98cb20e82","direction":"outgoing","index":143271,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f80a4eb4-2d0d-41a8-9db9-b92b0a0c3c7f","direction":"outgoing","index":143272,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"880a9b19-f677-44de-b256-3f9d14f959e7","direction":"outgoing","index":143273,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b54beab-554f-4eea-8dc8-c9aadb1f9cc9","direction":"outgoing","index":143274,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b40b5648-e38b-4418-8c29-c07a787aee00","direction":"outgoing","index":143275,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"277e55c7-284f-466c-89c6-a128108e77ab","direction":"outgoing","index":143276,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"45468217-4f75-42b0-b398-8a949a845080","direction":"outgoing","index":143277,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"384ca20a-cc19-4c23-aff6-a51477ef5c59","direction":"outgoing","index":143278,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5164a1d-12a1-4d54-95e9-cc017b097d36","direction":"outgoing","index":143279,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0db7100-2316-4bb8-a392-9ae2b7253835","direction":"outgoing","index":143280,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:25.050-04:00"},{"id":"964e72e7-f278-49bd-9ba7-d026d3008996","created_at":"2026-05-22T21:11:27.158-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3e211849-5ec8-4c60-a19c-0f39ce7648ae","direction":"outgoing","index":143281,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"269dce6b-1d91-4637-8767-ae0407ccbe3a","direction":"outgoing","index":143282,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"678a65a9-62f4-4fd5-b90e-9e9f4d86d7fd","direction":"outgoing","index":143283,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004a733d-cb78-4261-a064-257d692a149b","direction":"outgoing","index":143284,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4935508-bebb-4e82-b8f1-de969ed477fc","direction":"outgoing","index":143285,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76bc44b1-8465-487f-a01f-516e7841e6cb","direction":"outgoing","index":143286,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ddd31f41-8374-414f-ab98-bbcc431f0b73","direction":"outgoing","index":143287,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0890eadd-c3cf-4d09-be83-b4b4514fc495","direction":"outgoing","index":143288,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f236cb0-43e1-4ccd-b8d1-ed4b8c4bd311","direction":"outgoing","index":143289,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a511c836-7e8f-4b40-bd6f-168a85f9dae5","direction":"outgoing","index":143290,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:27.158-04:00"},{"id":"4e7d34a7-faa0-4fc0-93ad-50c646da8ba1","created_at":"2026-05-22T21:11:27.632-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cee8125c-b5c6-40d7-8457-659413f29243","direction":"outgoing","index":143291,"result_id":"4e7d34a7-faa0-4fc0-93ad-50c646da8ba1","status":200,"timestamp":"2026-05-22T21:11:27.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:27.632-04:00"},{"id":"c3c8531d-6a20-40c2-93ee-f2520f98d3f4","created_at":"2026-05-22T21:11:28.102-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f78cef91-003c-450a-85f8-1bc25718e288","direction":"outgoing","index":143292,"result_id":"c3c8531d-6a20-40c2-93ee-f2520f98d3f4","status":200,"timestamp":"2026-05-22T21:11:28.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=85","verb":"get"},{"id":"1e6fa63e-4071-4dc2-95ea-53be2274f84a","direction":"outgoing","index":143293,"result_id":"c3c8531d-6a20-40c2-93ee-f2520f98d3f4","status":200,"timestamp":"2026-05-22T21:11:28.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=355","verb":"get"},{"id":"72a7bfae-269d-4f48-bcd1-4a4d443a8391","direction":"outgoing","index":143294,"result_id":"c3c8531d-6a20-40c2-93ee-f2520f98d3f4","status":200,"timestamp":"2026-05-22T21:11:28.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=76690-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.102-04:00"},{"id":"472f8d0f-7c9c-4790-a8e0-be9850e923fd","created_at":"2026-05-22T21:11:28.231-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c821f5a3-96be-43bf-99c5-a8c0333297ee: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.231-04:00"},{"id":"078d0f95-888b-41b5-87ad-7468c3eb3d46","created_at":"2026-05-22T21:11:28.245-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.245-04:00"},{"id":"70ce0bde-0c6a-4d23-a023-1db568e61a8f","created_at":"2026-05-22T21:11:28.251-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.251-04:00"},{"id":"1bb6325d-0b12-49ae-b010-431e34a41c54","created_at":"2026-05-22T21:11:28.257-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.257-04:00"},{"id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","created_at":"2026-05-22T21:11:28.994-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cf4a0f64-0ef7-4a92-b14f-f2b812639fc2","direction":"outgoing","index":143295,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:28.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"b1c3e659-bd1c-42bd-b3dd-7a43ab7d8ffc","direction":"outgoing","index":143296,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"26faf1c4-0fc8-4be8-bf9e-62ece9fdc9a6","direction":"outgoing","index":143297,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"90e4d0b5-2066-425e-9f7e-eabec0e2dd01","direction":"outgoing","index":143298,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"02c948b8-549f-4fbe-9bd0-4064f289f2d7","direction":"outgoing","index":143299,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"d4c1a708-9290-43b1-8ba8-37ed5897edfd","direction":"outgoing","index":143300,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:28.994-04:00"},{"id":"24f64340-f531-4640-b5c0-d3391e09196e","created_at":"2026-05-22T21:11:29.963-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"53a38a64-f448-4388-adde-ee3185b3781a","direction":"outgoing","index":143301,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d372b192-15b2-4faf-9cae-0a6704337572","direction":"outgoing","index":143302,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"05c535dd-f0b5-4a3e-be9d-89e62f3257d3","direction":"outgoing","index":143303,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"7e69495d-c6b5-4a5a-90be-ff3cd600ded3","direction":"outgoing","index":143304,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"1a725259-0b27-411e-be8b-bd5048300ae0","direction":"outgoing","index":143305,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"9935bdbc-732b-4148-9efa-195564b5a928","direction":"outgoing","index":143306,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:29.963-04:00"},{"id":"568a68e6-0869-4106-b078-fb4c775e6719","created_at":"2026-05-22T21:11:30.571-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"11a6ce53-abc4-406a-bc19-d7b4ba843acc","direction":"outgoing","index":143307,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"1da2a6cf-6ee7-41a2-b7bc-e42cbb6346f8","direction":"outgoing","index":143308,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"b6167bdf-3813-41b3-ad21-b9ed1d008d4f","direction":"outgoing","index":143309,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:30.571-04:00"},{"id":"77348e7e-50e5-452f-b708-adb5a65da191","created_at":"2026-05-22T21:11:31.554-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cb7cec43-b5ec-4973-8bde-0adcf9417c4d","direction":"outgoing","index":143310,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"0cc05925-c437-494c-aab8-f26e2784d9dc","direction":"outgoing","index":143311,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"e3758542-883b-464d-905b-95b6d96df4f9","direction":"outgoing","index":143312,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"5a2e24e3-5935-4e02-931f-c13ee881ee24","direction":"outgoing","index":143313,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"53e37a22-e769-4574-8c0d-7b6f1be7c83f","direction":"outgoing","index":143314,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"62c80db6-1a47-4f3c-9d6b-b989afef6ce4","direction":"outgoing","index":143315,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:31.554-04:00"},{"id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","created_at":"2026-05-22T21:11:31.919-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"dfaa1c67-3557-49d4-a2d7-036442afceec","direction":"outgoing","index":143316,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"01fbca51-1882-4019-b251-c1affb902347","direction":"outgoing","index":143317,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:31.919-04:00"},{"id":"5d7a5ef4-06b8-4f87-90dd-39e5d4bf7438","created_at":"2026-05-22T21:11:32.072-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cbb49526-8324-4adc-97e0-6b60e449df15","direction":"outgoing","index":143318,"result_id":"5d7a5ef4-06b8-4f87-90dd-39e5d4bf7438","status":200,"timestamp":"2026-05-22T21:11:32.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.072-04:00"},{"id":"c3f6c5eb-1549-4c55-8ac6-2f3cc51749f1","created_at":"2026-05-22T21:11:32.512-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4e3fb42c-cf69-4792-83eb-b2b7d4ed4d9c","direction":"outgoing","index":143319,"result_id":"c3f6c5eb-1549-4c55-8ac6-2f3cc51749f1","status":200,"timestamp":"2026-05-22T21:11:32.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=85","verb":"get"},{"id":"8db0cf5d-dd87-4902-9329-921c1b6f23cd","direction":"outgoing","index":143320,"result_id":"c3f6c5eb-1549-4c55-8ac6-2f3cc51749f1","status":200,"timestamp":"2026-05-22T21:11:32.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=355","verb":"get"},{"id":"10d97d2b-4c86-4e83-a0f5-2417fc658b18","direction":"outgoing","index":143321,"result_id":"c3f6c5eb-1549-4c55-8ac6-2f3cc51749f1","status":200,"timestamp":"2026-05-22T21:11:32.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=9843-4\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.512-04:00"},{"id":"4a66fe02-2af3-457a-babf-2873b76fede6","created_at":"2026-05-22T21:11:32.607-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.607-04:00"},{"id":"35bae5d2-8b4a-4e17-8fd0-3651ad9a3622","created_at":"2026-05-22T21:11:32.617-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.617-04:00"},{"id":"f6740fbc-6bc1-447a-b10f-74618a475947","created_at":"2026-05-22T21:11:32.620-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.620-04:00"},{"id":"9343a2bf-18f9-467a-b5b8-0b407e0d2335","created_at":"2026-05-22T21:11:32.621-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:32.621-04:00"},{"id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","created_at":"2026-05-22T21:11:33.427-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"459775ff-516f-48e7-b2d4-64125e8935ab","direction":"outgoing","index":143322,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"e2855226-395f-46e2-af4d-0578bce678bd","direction":"outgoing","index":143323,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"82348abc-d767-4852-a98a-05edff1548a5","direction":"outgoing","index":143324,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"38962e10-c591-4c51-904d-f51f3f584220","direction":"outgoing","index":143325,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"d88e5700-1236-4c76-8607-22bc0bb922e4","direction":"outgoing","index":143326,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"3f0378ad-946e-4c0e-8f0f-00c1b953e42a","direction":"outgoing","index":143327,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:33.427-04:00"},{"id":"ca9700a3-780e-4170-a1f8-1f5277418cee","created_at":"2026-05-22T21:11:34.446-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d35d1ca8-0704-46ad-8bdc-ced2925120bb","direction":"outgoing","index":143328,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"039f0c5a-ce9a-404b-98a3-1002927237a9","direction":"outgoing","index":143329,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d30b2466-fefb-4111-836c-019bffced3b3","direction":"outgoing","index":143330,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c9769790-52bf-42cd-afd2-ec0be1d53912","direction":"outgoing","index":143331,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1c6851d6-82cd-44f2-a853-7ac6d4e011ef","direction":"outgoing","index":143332,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0578b35e-f7cf-4fa1-a654-2953119ce89e","direction":"outgoing","index":143333,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:34.446-04:00"},{"id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","created_at":"2026-05-22T21:11:37.649-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a8237eaf-3475-4416-b418-4c2c439c4136","direction":"outgoing","index":143334,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"32560678-a03c-4765-9fbc-61f3f765f93f","direction":"outgoing","index":143335,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22ec6ce2-7a19-4002-b240-ce3bdb772488","direction":"outgoing","index":143336,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f06420a9-06dc-4f63-b81e-03bf26d6b834","direction":"outgoing","index":143337,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2e3fd39a-1bd8-4513-9863-8866e54913bb","direction":"outgoing","index":143338,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0aea055a-cc71-480a-9c8a-55ff6b0ba888","direction":"outgoing","index":143339,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6b1627c5-5f5b-40c4-93c9-905ea4387299","direction":"outgoing","index":143340,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ba1f0012-302f-4e03-a33c-ad65b54fcf27","direction":"outgoing","index":143341,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c73f96c-4501-48c3-9df8-d0388b7d6bb8","direction":"outgoing","index":143342,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:37.649-04:00"},{"id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","created_at":"2026-05-22T21:11:40.147-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"27492779-3f4a-4fdf-9482-21909ddaf5e2","direction":"outgoing","index":143343,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3670caf5-30d5-4d91-bc47-698a8ca4fc78","direction":"outgoing","index":143344,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"73452740-f0b1-421d-862b-5c93c7724a61","direction":"outgoing","index":143345,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebc86a0c-64b6-4021-a43a-fccd4067ccae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52cac830-a582-4851-9443-0dc85f220398","direction":"outgoing","index":143346,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fd3cba97-edf0-4b89-a5fb-164fc0838634","direction":"outgoing","index":143347,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b18f9e42-e653-4784-8bae-1940de78ce53\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4effaed4-492f-47a3-9dd1-4374c0fd4e46","direction":"outgoing","index":143348,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"45843988-a684-4c79-968a-1be8c4135a48","direction":"outgoing","index":143349,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"735d93e7-f15b-4d69-9820-4a5188000fc5","direction":"outgoing","index":143350,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:40.147-04:00"},{"id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","created_at":"2026-05-22T21:11:42.232-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"73bbc96a-c71d-44d1-b539-9703d406993c","direction":"outgoing","index":143351,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2ed9116f-6a36-40d5-90cb-d9458f148329","direction":"outgoing","index":143352,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59e23804-c497-4e1b-9961-8846a3ccd39c","direction":"outgoing","index":143353,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fca5e202-30fe-4154-bc73-bfb409af69b8","direction":"outgoing","index":143354,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"da0c830e-1992-4755-81a8-859f54210011","direction":"outgoing","index":143355,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8293c640-908a-4488-aba7-da08ccd90992","direction":"outgoing","index":143356,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:42.232-04:00"},{"id":"2a704b10-4a7b-431a-9bdb-66b94033b6bf","created_at":"2026-05-22T21:11:42.439-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2536f15f-ee8c-43ee-9c80-962b1ad3d177","direction":"outgoing","index":143357,"result_id":"2a704b10-4a7b-431a-9bdb-66b94033b6bf","status":200,"timestamp":"2026-05-22T21:11:42.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:42.439-04:00"},{"id":"a25ff382-063b-4f97-a99d-28cf43eecf8d","created_at":"2026-05-22T21:11:42.888-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"923c3404-977a-450d-b292-441f0e0e309e","direction":"outgoing","index":143358,"result_id":"a25ff382-063b-4f97-a99d-28cf43eecf8d","status":200,"timestamp":"2026-05-22T21:11:42.893-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=85","verb":"get"},{"id":"94fac663-fe2a-4e5b-84b1-e054de6118ff","direction":"outgoing","index":143359,"result_id":"a25ff382-063b-4f97-a99d-28cf43eecf8d","status":200,"timestamp":"2026-05-22T21:11:42.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=355","verb":"get"},{"id":"47b28219-af08-4b65-8233-582f72c2b515","direction":"outgoing","index":143360,"result_id":"a25ff382-063b-4f97-a99d-28cf43eecf8d","status":200,"timestamp":"2026-05-22T21:11:42.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8302-2\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:42.888-04:00"},{"id":"d735609a-10c1-4573-be61-142aa93a3a76","created_at":"2026-05-22T21:11:43.225-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:43.225-04:00"},{"id":"5c895dd1-3e87-486a-93f2-b53256bc473c","created_at":"2026-05-22T21:11:43.254-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:43.254-04:00"},{"id":"5a9666bf-6ce1-40b1-9ec7-3cde64e4bc68","created_at":"2026-05-22T21:11:43.260-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:43.260-04:00"},{"id":"a4d1eb05-1473-4097-8be9-237642d7f67a","created_at":"2026-05-22T21:11:43.261-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_height","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:43.261-04:00"},{"id":"cad6e668-1013-446c-a021-68248c60e156","created_at":"2026-05-22T21:11:44.065-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"cb9a3daf-95fc-42e6-afcf-e59af56ed46e","direction":"outgoing","index":143361,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"2d062395-d011-4d19-92eb-e7d1b2bffcdf","direction":"outgoing","index":143362,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"3efc9838-1097-478c-834a-76fe55994a00","direction":"outgoing","index":143363,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"03040903-c1f1-497b-a312-1a264f05a258","direction":"outgoing","index":143364,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"76311989-f70e-4472-9e6d-a4fdb30a2f6b","direction":"outgoing","index":143365,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"73e8fc9c-b7bc-4ca9-a85f-76e704825d08","direction":"outgoing","index":143366,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:44.065-04:00"},{"id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","created_at":"2026-05-22T21:11:44.860-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"abfcef7d-45f6-47c6-aabb-b2526675e7a9","direction":"outgoing","index":143367,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"943af84b-b1af-4a2f-b059-6a98d711523b","direction":"outgoing","index":143368,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2df95241-1b35-4652-9561-cc8a356452c7","direction":"outgoing","index":143369,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"36ea6e0a-7cd4-4be3-8e51-17a7323c6368","direction":"outgoing","index":143370,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b188b0bb-12f7-4d88-9938-d5207d67b9c0","direction":"outgoing","index":143371,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"183b71f3-d117-4979-8647-7ed22955a229","direction":"outgoing","index":143372,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:44.860-04:00"},{"id":"3be4e3ff-a045-42fe-8688-4229bab7240a","created_at":"2026-05-22T21:11:46.442-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"5be12322-d723-4200-9f13-d53efdecdec3","direction":"outgoing","index":143373,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"293d4ec1-7e40-4c27-be9f-c4cb1be2d037","direction":"outgoing","index":143374,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"077fbfe6-bb11-406c-aa28-e66405919990","direction":"outgoing","index":143375,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df39f632-4cb3-430e-8236-2ce572e91fc3","direction":"outgoing","index":143376,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"45098c8e-1a69-44e4-8916-f528703a569c","direction":"outgoing","index":143377,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1777740a-4aeb-4ca8-97c1-21811bdb5a5a","direction":"outgoing","index":143378,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3800ff8-e00a-4340-a9f6-4781fd8fad1c","direction":"outgoing","index":143379,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b0971d3f-5e82-4c80-8929-f5b3bc3e5f1d","direction":"outgoing","index":143380,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1188378-9352-4931-8e1a-68437e2410db","direction":"outgoing","index":143381,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:46.442-04:00"},{"id":"708c518f-23cb-46bb-91e7-b3b150b678ec","created_at":"2026-05-22T21:11:49.086-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3ed293c7-aa15-4a42-a795-0cb957c54922","direction":"outgoing","index":143382,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"09bbc29f-1eaf-4848-8b17-887150ae86f7","direction":"outgoing","index":143383,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ba4c4346-3a61-41d9-8752-60f258039d20","direction":"outgoing","index":143384,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54fea3ed-c56f-4ece-9a99-d32e7a13ffa1","direction":"outgoing","index":143385,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"27c35f66-ab3a-401f-8350-10d454890757","direction":"outgoing","index":143386,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82763b1e-f868-493d-bcb8-9a63f3093541","direction":"outgoing","index":143387,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"765c3e68-7437-4834-9db4-5167c4d5d574","direction":"outgoing","index":143388,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"512d1685-5399-47cb-879f-192b639880ad","direction":"outgoing","index":143389,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b84a0fb8-d3ce-4fac-a056-a7f114b4193b","direction":"outgoing","index":143390,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05c7fefb-6e03-4301-9261-547c4edb9b33","direction":"outgoing","index":143391,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:49.086-04:00"},{"id":"67df9f2d-430d-4953-b864-5c006e24c298","created_at":"2026-05-22T21:11:50.178-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d62cca06-4753-4897-b7e9-7f78f1bfb8cb","direction":"outgoing","index":143392,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c66a764b-f53c-47bc-bb85-fb8c69dfdd96","direction":"outgoing","index":143393,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3278760d-05a2-48d9-8059-790d201dc634","direction":"outgoing","index":143394,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c3e3186-7e80-44e7-80bf-4fd10fdcaef1","direction":"outgoing","index":143395,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"381d4e38-e7b7-44ab-a5b4-acfb20a6ce7e","direction":"outgoing","index":143396,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094b12d7-4044-40f1-9e9e-35b6acec747f","direction":"outgoing","index":143397,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:50.178-04:00"},{"id":"28078099-88b7-4523-ad7a-9f3576da1804","created_at":"2026-05-22T21:11:50.389-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5aacceb4-122c-4bef-a8d7-0a61739cf7de","direction":"outgoing","index":143398,"result_id":"28078099-88b7-4523-ad7a-9f3576da1804","status":200,"timestamp":"2026-05-22T21:11:50.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8eb16720-0e2d-4be0-ad45-31126509c985","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:50.389-04:00"},{"id":"a82f23eb-e09c-4cbe-b51f-b6e47c9c48a6","created_at":"2026-05-22T21:11:50.825-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a6a72b71-a41d-4d8b-9bc4-258b227abab2","direction":"outgoing","index":143399,"result_id":"a82f23eb-e09c-4cbe-b51f-b6e47c9c48a6","status":200,"timestamp":"2026-05-22T21:11:50.831-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=85","verb":"get"},{"id":"11b9bc65-71f5-4176-964e-5eea24a1481e","direction":"outgoing","index":143400,"result_id":"a82f23eb-e09c-4cbe-b51f-b6e47c9c48a6","status":200,"timestamp":"2026-05-22T21:11:50.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=355","verb":"get"},{"id":"29835192-824a-4cd2-89b6-da28517b236c","direction":"outgoing","index":143401,"result_id":"a82f23eb-e09c-4cbe-b51f-b6e47c9c48a6","status":200,"timestamp":"2026-05-22T21:11:50.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=39156-5\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:50.825-04:00"},{"id":"94d41a08-13d3-4de0-bb9c-d7f2f366394f","created_at":"2026-05-22T21:11:51.298-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:51.298-04:00"},{"id":"7b1f4406-d7b3-4e24-9861-ed457e600c36","created_at":"2026-05-22T21:11:51.313-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:51.313-04:00"},{"id":"abe327cd-2605-403c-95a8-c6050753bd11","created_at":"2026-05-22T21:11:51.319-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:51.319-04:00"},{"id":"e6b579ff-3167-435c-9a28-0fb0088a80e0","created_at":"2026-05-22T21:11:51.321-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_bmi","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:51.321-04:00"},{"id":"28a27622-9f37-4b23-83a1-b51124d0b89e","created_at":"2026-05-22T21:11:52.296-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2888c624-8708-45c8-8be6-f35f4beaefa0","direction":"outgoing","index":143402,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"a259108b-df37-4f62-bfd8-4dc84e806bb1","direction":"outgoing","index":143403,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"e0d68b87-c737-441c-bc0f-3c29b4170cbf","direction":"outgoing","index":143404,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"423f521c-aae1-489b-858f-d194a7b415b3","direction":"outgoing","index":143405,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"dd10709c-312a-472c-bd03-4553f0134a4e","direction":"outgoing","index":143406,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"d9e9557b-eef7-46c8-8a73-2796b4fc61a5","direction":"outgoing","index":143407,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:52.296-04:00"},{"id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","created_at":"2026-05-22T21:11:53.351-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c86ddda3-68a4-4516-8081-f7a7641eb0a9","direction":"outgoing","index":143408,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"85b93757-4608-4583-9c8b-49f46d9a8f0d","direction":"outgoing","index":143409,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"912cccb9-b878-42be-8471-3ed5c2e8b53e","direction":"outgoing","index":143410,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"62e031b3-fc96-4a03-8ce1-84d98f9d8fc0","direction":"outgoing","index":143411,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d156a5f4-5941-4599-bb1a-12dd01396abd","direction":"outgoing","index":143412,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0167139e-6133-4712-8315-977e3402da47","direction":"outgoing","index":143413,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"57baabaa-aa1a-4dbb-be49-78157790053f","direction":"outgoing","index":143414,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:53.351-04:00"},{"id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","created_at":"2026-05-22T21:11:55.485-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2acf059e-0dd4-4bcb-95f1-eab2f497c6c5","direction":"outgoing","index":143415,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"85e6e14b-b177-4504-917b-5e1ec1e9b6a6","direction":"outgoing","index":143416,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"d50bd030-d841-45e0-be69-efe00fdad279","direction":"outgoing","index":143417,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"f41147f6-2769-48fc-a6dd-7eb052dab7ed","direction":"outgoing","index":143418,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c046b7e-9949-4edc-a7c6-652dbce528bc","direction":"outgoing","index":143419,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56c9176b-0c8b-4d91-b879-1c93888ea0ca","direction":"outgoing","index":143420,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6e81cba-dfb1-4830-982d-7856e7c0e34e","direction":"outgoing","index":143421,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47cd19db-85f3-471d-967c-b98d7271b57d","direction":"outgoing","index":143422,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1112898a-de35-41ff-9265-bd0971dd86a5","direction":"outgoing","index":143423,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"954c117e-3e0c-4283-9567-72fb8ef1fde0","direction":"outgoing","index":143424,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76f8b14e-9f21-493f-9bf9-2d04157bcf8c","direction":"outgoing","index":143425,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc5e319a-622a-4744-bad3-9843c307b646","direction":"outgoing","index":143426,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5fc23602-4153-410c-910f-2925ad987443","direction":"outgoing","index":143427,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:55.485-04:00"},{"id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","created_at":"2026-05-22T21:11:56.634-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0eab903e-5aa6-45c2-adc8-979b6806c011","direction":"outgoing","index":143428,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"a74eccb2-9db7-4781-88bc-78415131eae8","direction":"outgoing","index":143429,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0e2f2f2c-6654-4f1c-a91e-53d591f649bf","direction":"outgoing","index":143430,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3aca742f-619e-4dcc-be32-02c39165d068","direction":"outgoing","index":143431,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c1553ed8-95a7-4a35-b9b8-0a0f15eb3d86","direction":"outgoing","index":143432,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5f9a44da-2514-4a32-9ac7-e7100eff3eeb","direction":"outgoing","index":143433,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"1b239477-0b80-40fc-9bb8-0e3cff7fdfeb","direction":"outgoing","index":143434,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:56.634-04:00"},{"id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","created_at":"2026-05-22T21:11:57.091-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d7311b8f-4358-4728-be64-df9b68da7b43","direction":"outgoing","index":143435,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"23ff6fef-60a8-40c5-898e-df1eac3d477a","direction":"outgoing","index":143436,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"cd1657a9-d4b4-4023-8661-422c75bebc3e","direction":"outgoing","index":143437,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:57.091-04:00"},{"id":"f0c1a53e-0746-48b9-8623-821c606b1499","created_at":"2026-05-22T21:11:57.256-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b2e51506-96d7-4dad-a3a2-06ba9dff4199","direction":"outgoing","index":143438,"result_id":"f0c1a53e-0746-48b9-8623-821c606b1499","status":200,"timestamp":"2026-05-22T21:11:57.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:57.256-04:00"},{"id":"272f3353-a747-4bd9-b47f-2ea830c46f77","created_at":"2026-05-22T21:11:57.761-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d54117f0-6f24-4c02-a668-d2770b970dfc","direction":"outgoing","index":143439,"result_id":"272f3353-a747-4bd9-b47f-2ea830c46f77","status":200,"timestamp":"2026-05-22T21:11:57.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=85","verb":"get"},{"id":"e73965c2-6055-4b24-a1bb-d2d7a65958d3","direction":"outgoing","index":143440,"result_id":"272f3353-a747-4bd9-b47f-2ea830c46f77","status":200,"timestamp":"2026-05-22T21:11:57.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=355","verb":"get"},{"id":"64d22d03-cae0-425d-a054-dee2df06700f","direction":"outgoing","index":143441,"result_id":"272f3353-a747-4bd9-b47f-2ea830c46f77","status":200,"timestamp":"2026-05-22T21:11:57.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=survey\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:57.761-04:00"},{"id":"3a62f763-d57b-4554-adbc-8a94a42f5917","created_at":"2026-05-22T21:11:58.433-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment'","type":"info"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[0].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-sdoh-assessment' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/be5b9ebc-6416-42be-abbf-c99363774f10: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation.value.ofType(Quantity): UCUM Codes that contain human readable annotations like {score} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/06a36a9e-e1b8-466e-ae75-c8b4dce46fdb: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation.category[1].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/62b4759c-c2ab-431b-8e75-455b49631142: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84da3f40-99fb-4810-940a-66d84d2285ef: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0d6160ac-cbec-47c8-a9b8-a285a7a5f266: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/a28b0850-feae-49a8-8bd6-19653b5ba7c1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history'","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[2].coding[0]: A definition for CodeSystem 'http://hl7.org/fhir/us/core/CodeSystem/us-core-tags' could not be found, so the code cannot be validated","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-social-history' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1bf189ad-f865-4848-bb25-da8aed53d347: Observation.category[1]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:58.433-04:00"},{"id":"1efc28ea-fa76-4270-a6a3-d8d100520e93","created_at":"2026-05-22T21:11:58.473-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:58.473-04:00"},{"id":"8cabb975-c712-467c-a950-aae8e5fb9d27","created_at":"2026-05-22T21:11:58.939-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0265c986-6a1e-404e-989c-a4e307d39c9f","direction":"outgoing","index":143442,"result_id":"8cabb975-c712-467c-a950-aae8e5fb9d27","status":200,"timestamp":"2026-05-22T21:11:58.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/be5b9ebc-6416-42be-abbf-c99363774f10","verb":"get"},{"id":"66997aca-420c-41fb-a3c3-a7ccdb305b58","direction":"outgoing","index":143443,"result_id":"8cabb975-c712-467c-a950-aae8e5fb9d27","status":200,"timestamp":"2026-05-22T21:11:58.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"5bee76b6-a584-4996-9d10-404d33daf69c","direction":"outgoing","index":143444,"result_id":"8cabb975-c712-467c-a950-aae8e5fb9d27","status":200,"timestamp":"2026-05-22T21:11:58.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:58.939-04:00"},{"id":"36990367-6057-4cea-81e7-2d3690c142af","created_at":"2026-05-22T21:11:58.998-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:58.998-04:00"},{"id":"20118640-ecd4-47b8-8bb1-90a13080b68f","created_at":"2026-05-22T21:11:59.878-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f4be9118-e3ee-4979-8be1-2ad5071e2056","direction":"outgoing","index":143445,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"f1bbe42f-7a45-4c76-a08e-3ca84c957d46","direction":"outgoing","index":143446,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"71f74da0-e9e3-44f8-bebc-d5c1018bf4d2","direction":"outgoing","index":143447,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"4a290697-d34c-41c0-b4d5-bd2e4cb8792e","direction":"outgoing","index":143448,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"f73385d3-dddd-4353-a329-7e1b50dd0743","direction":"outgoing","index":143449,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"0c962e63-23c2-4b9d-bb39-268563e822aa","direction":"outgoing","index":143450,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:11:59.878-04:00"},{"id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","created_at":"2026-05-22T21:12:00.799-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"95533512-e54a-4079-a5c7-eb109336adbf","direction":"outgoing","index":143451,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"302f2b8d-a07c-4f0e-87b3-2dd7d5c22b00","direction":"outgoing","index":143452,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f4f5c30f-3cce-4275-92e8-d5035a7f26b6","direction":"outgoing","index":143453,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"adfeb5d0-73c9-4676-88cd-8e6564fa2e96","direction":"outgoing","index":143454,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2dc0f25f-0d72-4145-9a05-281498f9ab54","direction":"outgoing","index":143455,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4dc96233-3a3d-4b5d-b898-0eadc2ec34c6","direction":"outgoing","index":143456,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:00.799-04:00"},{"id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","created_at":"2026-05-22T21:12:02.473-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"1f946d7d-cd3c-4269-8c96-dd2a68a359d1","direction":"outgoing","index":143457,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8b215bf6-a736-46a1-9ef0-25eb5d7cedb7","direction":"outgoing","index":143458,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7c53d4e-c013-4beb-bf95-f3f387cf17e2","direction":"outgoing","index":143459,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8e73985-cb0a-465a-a729-afe822ba939a","direction":"outgoing","index":143460,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"18d833a5-0138-41b5-9d33-23b4a2bc9f7f","direction":"outgoing","index":143461,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b9cb9c6-d075-41e0-a00a-e846381a5b48","direction":"outgoing","index":143462,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16e62a15-619f-4552-bd67-dd9e58e35e61","direction":"outgoing","index":143463,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"60f4b77e-4ac1-4347-a99e-3b158eed212f","direction":"outgoing","index":143464,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7efb76b-cff5-48cb-b03c-fc423d385cf9","direction":"outgoing","index":143465,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:02.473-04:00"},{"id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","created_at":"2026-05-22T21:12:05.189-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a4dbd4f7-64cf-4a69-9d6a-32c0daee2215","direction":"outgoing","index":143466,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d76248d2-3c9c-4d9b-ba9f-b6c4bb0e362b","direction":"outgoing","index":143467,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"53c6f96f-58b8-4507-9a87-8be527ef2010","direction":"outgoing","index":143468,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8a8bfde8-9568-40f5-a917-ca2decbfc166\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54c7d645-5f55-463e-9f70-9334654b135d","direction":"outgoing","index":143469,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"91d7d192-8332-46cd-a565-0745ad3fdf74","direction":"outgoing","index":143470,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2526abe-bd4e-49cb-b505-38954cfe783c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6def2e0a-7f01-48f2-9aad-11f2d94b0e01","direction":"outgoing","index":143471,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ece2361f-2ebe-4baa-9a90-911271fa7978","direction":"outgoing","index":143472,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f1068bb-79a9-4f73-8b29-fe5aa5f05270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"073fd4f6-4085-4ce6-852e-4a422005edf3","direction":"outgoing","index":143473,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9ac1391a-7887-430b-ac4d-6583cca40179","direction":"outgoing","index":143474,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6f3628c-3309-4a21-b917-4765e7f8e8c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a166b08b-99b6-4d67-b59d-2def2a707c0a","direction":"outgoing","index":143475,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:05.189-04:00"},{"id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","created_at":"2026-05-22T21:12:06.507-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b6292381-c82e-496c-b5d6-5f8fa8dd1e57","direction":"outgoing","index":143476,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c8dfe4a0-4ab4-46e8-a54b-9a7a77feb089","direction":"outgoing","index":143477,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6dc0135-7cf5-4e32-910d-93a227d97a26","direction":"outgoing","index":143478,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a330fc79-ada6-4dee-8860-5b18705806a3","direction":"outgoing","index":143479,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ec12350e-acc1-492a-848c-884572d2bb2e","direction":"outgoing","index":143480,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3867935f-5daa-4e85-b81d-510d2e873b4f","direction":"outgoing","index":143481,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:06.507-04:00"},{"id":"ca9d388d-d42b-4260-85c5-d50ebae0faa0","created_at":"2026-05-22T21:12:06.726-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"28872486-799a-4ba3-bbb6-ed1cb809c4e3","direction":"outgoing","index":143482,"result_id":"ca9d388d-d42b-4260-85c5-d50ebae0faa0","status":200,"timestamp":"2026-05-22T21:12:06.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/28380e0e-c7ae-4f20-b180-851dc0247865","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:06.726-04:00"},{"id":"3f729012-4005-40f0-beaf-e354b850ea0b","created_at":"2026-05-22T21:12:07.173-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b9d37416-d581-4814-addc-a1ab154df86e","direction":"outgoing","index":143483,"result_id":"3f729012-4005-40f0-beaf-e354b850ea0b","status":200,"timestamp":"2026-05-22T21:12:07.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=85","verb":"get"},{"id":"e67076d0-65bc-45e8-b791-f1bd918ad08c","direction":"outgoing","index":143484,"result_id":"3f729012-4005-40f0-beaf-e354b850ea0b","status":200,"timestamp":"2026-05-22T21:12:07.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=355","verb":"get"},{"id":"f12ca37f-1924-4b76-a94c-3e190457dcf1","direction":"outgoing","index":143485,"result_id":"3f729012-4005-40f0-beaf-e354b850ea0b","status":200,"timestamp":"2026-05-22T21:12:07.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=85354-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:07.173-04:00"},{"id":"3391e191-16b5-4264-bb42-eea58184035c","created_at":"2026-05-22T21:12:08.365-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:08.365-04:00"},{"id":"249dfd8a-6141-4b3c-8352-da53b878a845","created_at":"2026-05-22T21:12:08.395-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:08.395-04:00"},{"id":"c76f43cd-2d91-4d35-b99b-01e2fe9be959","created_at":"2026-05-22T21:12:08.398-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:08.398-04:00"},{"id":"d13b7adf-7a2b-4e57-a29a-757651c9fea1","created_at":"2026-05-22T21:12:08.399-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_blood_pressure","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:08.399-04:00"},{"id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","created_at":"2026-05-22T21:12:11.926-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ecf9ddbb-d5dd-4ef1-9bb9-11963593e6b4","direction":"outgoing","index":143486,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"e8ff9787-c1e9-444f-92d6-982df6d4191d","direction":"outgoing","index":143487,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"1ad5700c-23fc-4dbc-940b-44fb2d724bb6","direction":"outgoing","index":143488,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"01284cd7-1da7-44d8-a25c-dd5a1804309e","direction":"outgoing","index":143489,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"02fe14e1-c137-47e6-a045-698acf4b166c","direction":"outgoing","index":143490,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"269abb6b-c41e-479a-a79e-6f54b0fc761d","direction":"outgoing","index":143491,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"ae73eef4-61df-4f41-b6d3-3660d0482d86","direction":"outgoing","index":143492,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"e0a6e5f0-2a1f-429a-b470-db5da84fa6b2","direction":"outgoing","index":143493,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"a048e08d-239c-4410-948a-16dfe29da2ff","direction":"outgoing","index":143494,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"6384b613-c355-4e84-828c-0488b1479d5e","direction":"outgoing","index":143495,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b39dfaca-99e4-48e1-b0a6-dac9b5d1682b","direction":"outgoing","index":143496,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"557209dc-a060-4d44-a251-2cdab69a431c","direction":"outgoing","index":143497,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b40761a6-4490-401a-b02b-db11f5b5432c","direction":"outgoing","index":143498,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"7090bab0-b328-4fea-81b6-5541174f8dca","direction":"outgoing","index":143499,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"3847f544-9e1d-45df-b6dc-a92eaca4ff20","direction":"outgoing","index":143500,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"e4a892d2-4739-45c2-a62a-45a1d35c7db3","direction":"outgoing","index":143501,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d04b27ab-f599-4140-82cb-f73b3769caa3","direction":"outgoing","index":143502,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86583a4-71d4-436b-aa5b-481eab9c3423","direction":"outgoing","index":143503,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dc81c82-0b09-4e52-9c8d-17d087f29bb9","direction":"outgoing","index":143504,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"1265ff30-8a16-4d0a-ba92-0e4a82c11cb6","direction":"outgoing","index":143505,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"1e5155aa-2678-4ae8-89f6-2f029d5a934e","direction":"outgoing","index":143506,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"8b353425-c4bb-47fd-9022-f8dc6a98d977","direction":"outgoing","index":143507,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6132079b-ffd8-432e-a768-0da095434ed0","direction":"outgoing","index":143508,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"5a8609a9-1ae0-4fe7-a375-afefb0cb4a06","direction":"outgoing","index":143509,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"956574b1-ef3f-4d7e-8583-4749bdc89fce","direction":"outgoing","index":143510,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8c3ec7aa-4688-4ee4-8cec-f0bc55d33f88","direction":"outgoing","index":143511,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:11.926-04:00"},{"id":"957173c6-887d-4cef-a359-a4e1d2653bf8","created_at":"2026-05-22T21:12:13.303-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"107b1a6b-57a0-4125-8377-a63b758c3028","direction":"outgoing","index":143512,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7a0de248-65af-4aa9-b79b-b610fc54ec61","direction":"outgoing","index":143513,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"03502313-ea43-4c78-8254-96db7c6ada36","direction":"outgoing","index":143514,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"743db6c2-584b-4e53-accf-ffb9249378e7","direction":"outgoing","index":143515,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bb3beff7-036f-4cc2-b55e-36d8e7e09d47","direction":"outgoing","index":143516,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2726848c-fe23-4c5a-86bb-2bb9e5fb211b","direction":"outgoing","index":143517,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ea3a22ba-a9f6-4399-9fff-4965d8cfa07d","direction":"outgoing","index":143518,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:13.303-04:00"},{"id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","created_at":"2026-05-22T21:12:13.898-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c213e4dd-0ebd-4011-a2cc-6ce7daaea039","direction":"outgoing","index":143519,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fa252a59-0c36-48c1-8ede-e02b4e225a0d","direction":"outgoing","index":143520,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fd17024e-96cd-457a-b844-9d22f6bf193f","direction":"outgoing","index":143521,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"b81fc460-170c-4151-84bb-84d0483bdd9f","direction":"outgoing","index":143522,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:13.898-04:00"},{"id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","created_at":"2026-05-22T21:12:14.879-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6995a7a3-cac4-4dae-919c-4c4cbb79ddda","direction":"outgoing","index":143523,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7e36f3db-5259-4465-bac7-4a767aa40674","direction":"outgoing","index":143524,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"42b02cd5-cd71-4d94-b7a9-67f7ae343242","direction":"outgoing","index":143525,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e6442c2a-2264-471a-ba50-eab8afc0db6f","direction":"outgoing","index":143526,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0c8f1f1c-c9e8-49d7-bb96-ecebd4770d19","direction":"outgoing","index":143527,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"040034d7-d6b1-4bb9-b9dd-acafa46f490e","direction":"outgoing","index":143528,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"38401b7d-5077-408a-ab13-ceb646df4820","direction":"outgoing","index":143529,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:14.879-04:00"},{"id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","created_at":"2026-05-22T21:12:15.336-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c1ac860f-4478-4130-b3ce-1e33ede5a22a","direction":"outgoing","index":143530,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"3f87601d-b926-441c-8300-c5ed79d81db0","direction":"outgoing","index":143531,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"40e77c59-fcf6-4a05-b47c-7aaff8c446d9","direction":"outgoing","index":143532,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:15.336-04:00"},{"id":"57ef7f0f-78f8-4b3a-892b-117bdfe11f1b","created_at":"2026-05-22T21:12:15.493-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"d13eee83-eea5-43e9-b34a-7949e10c43a5","direction":"outgoing","index":143533,"result_id":"57ef7f0f-78f8-4b3a-892b-117bdfe11f1b","status":200,"timestamp":"2026-05-22T21:12:15.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:15.493-04:00"},{"id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","created_at":"2026-05-22T21:12:19.449-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"0ce2320d-0085-45d1-bab4-2eedd693ce8c","direction":"outgoing","index":143534,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=85","verb":"get"},{"id":"4bea1533-d174-4b86-8807-b45c4ed3754e","direction":"outgoing","index":143535,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=85","verb":"get"},{"id":"16de99eb-953b-4e4b-8a5e-1eb88ef93854","direction":"outgoing","index":143536,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.554-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=85","verb":"get"},{"id":"a3173ca6-2c89-4311-8343-bf0f6098f644","direction":"outgoing","index":143537,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=85","verb":"get"},{"id":"15a9ac54-5496-4ef1-8144-f1cdc828b02e","direction":"outgoing","index":143538,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=85","verb":"get"},{"id":"30262237-a121-490b-9019-9d5c70ff39bb","direction":"outgoing","index":143539,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=85","verb":"get"},{"id":"58c8b4a9-58d2-4192-9a29-89e70739f901","direction":"outgoing","index":143540,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=85","verb":"get"},{"id":"e7fde333-60fa-4b6d-ab57-36484dc17fd9","direction":"outgoing","index":143541,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=355","verb":"get"},{"id":"d73619e7-16d6-4938-87fc-a7aecc996310","direction":"outgoing","index":143542,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=355","verb":"get"},{"id":"d849d1f8-7e62-4b9c-91a8-85b6240c11fa","direction":"outgoing","index":143543,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=355","verb":"get"},{"id":"4b6040d7-153d-465a-8b3a-a70e180de46b","direction":"outgoing","index":143544,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=355","verb":"get"},{"id":"41c099bc-c3f3-487b-b1d9-47358f227970","direction":"outgoing","index":143545,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=355","verb":"get"},{"id":"e521be05-559a-44d3-93ec-875f770c55ac","direction":"outgoing","index":143546,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=355","verb":"get"},{"id":"0a50d2a8-d457-4a48-9d6e-1f43ba5cd80f","direction":"outgoing","index":143547,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6322d271-5831-4b79-a554-eb558477c7d0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92b95da0-8666-42df-921c-f58ee015ab6d","direction":"outgoing","index":143548,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6322d271-5831-4b79-a554-eb558477c7d0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f2dd6a49-7848-443c-8108-a6f981d99732","direction":"outgoing","index":143549,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=355","verb":"get"},{"id":"b1eafaaf-7e62-449d-a489-772aa82204b6","direction":"outgoing","index":143550,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=laboratory\u0026patient=907","verb":"get"},{"id":"88f8fedf-9ca2-442d-ab16-301c810faa0e","direction":"outgoing","index":143551,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=exam\u0026patient=907","verb":"get"},{"id":"87833ef4-6747-4f6d-9bd4-9856e7f7ddbf","direction":"outgoing","index":143552,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=therapy\u0026patient=907","verb":"get"},{"id":"768e34a3-7f71-4763-b312-264bbdc2ce73","direction":"outgoing","index":143553,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=imaging\u0026patient=907","verb":"get"},{"id":"e05d1b03-bb1c-406c-88ae-14657b554cdb","direction":"outgoing","index":143554,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=procedure\u0026patient=907","verb":"get"},{"id":"fe9065bf-7b29-428f-8f26-363bdc2f8275","direction":"outgoing","index":143555,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=vital-signs\u0026patient=907","verb":"get"},{"id":"2bcf0bde-bb6f-44e9-8ea5-cd08e95cd533","direction":"outgoing","index":143556,"result_id":"3b2b84ef-989c-4823-9e39-9c1acdd54f57","status":200,"timestamp":"2026-05-22T21:12:19.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026category=activity\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:19.449-04:00"},{"id":"d59b4c08-f784-4ba7-a530-16e6395becd9","created_at":"2026-05-22T21:12:20.959-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c1acf7df-5fdc-4338-bb91-add5b859696b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/35ce0029-a343-4e3e-a6a8-18ef3da0c29d: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0db2a932-d53a-4fa5-9267-e9d4af13a7f1: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0a2ec919-47fa-4b9e-9aa1-f769fc8a3668: Observation: Validate Observation against the Head circumference profile (http://hl7.org/fhir/StructureDefinition/headcircum) which is required by the FHIR specification because the LOINC code 9843-4 was found","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/fb43e94e-6deb-4eaf-a811-93ccc6101441: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation.component[0].value.ofType(Quantity): The code provided (http://unitsofmeasure.org#L/min) is not in the value set 'Vital Signs Units' (http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1), and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)","type":"warning"},{"message":"Observation/281e515f-0221-4828-8753-092cd760b510: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/7809d859-5c14-436f-a0d8-d431b61d91f3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Validate Observation against the Oxygen saturation profile (http://hl7.org/fhir/StructureDefinition/oxygensat) which is required by the FHIR specification because the LOINC code 2708-6 was found","type":"info"},{"message":"Observation/f8bf7a73-5854-479b-bf03-9f4ad9d4c65b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f2668f45-d325-4172-9e4c-171f0bc48056: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b4904dee-b799-48ae-8b65-8f1228baedaa: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/49ecbdc0-ed86-43d5-bae5-bc91977f92f1: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3ec61e13-7365-4a81-9a21-8bfd54fbb4d4: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/6bba0ee1-244c-4c7c-8871-61afcb1614fc: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/942c5a66-f0aa-4334-941b-67c31680741f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/2d0fc77c-d277-4a2c-98d1-839775beb3c3: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0f7e115d-0d04-4eeb-a563-b35e71eb40a5: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/17b243c7-d8ad-4176-aaac-a46344e8b94a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0fc75b0f-4eb5-42c7-b74e-ad0119a121ad: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c80ce13e-ce50-43ef-8a23-4bc308428c43: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: A definition could not be found for Canonical URL 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging'","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/83f87fa2-f8a8-4a3a-89e3-dbcf1fc1a028: Observation.meta.profile[1]: Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-imaging' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0bda3f3e-ebc1-47e2-90ce-6fc3ce0a603f: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/29b4cb4f-c80b-4aaf-b677-225ce803a058: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/28380e0e-c7ae-4f20-b180-851dc0247865: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[0].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/1d88c48b-9753-4560-b9c0-ffd9f5376df9: Observation.component[1].code.coding[1]: This element does not match any known slice defined in the profile http://hl7.org/fhir/StructureDefinition/bp|4.0.1 (this may not be a problem, but you should check that it's not intended to match a slice)","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/ea94702c-bd31-4363-98bc-0ee18157a64f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/c90dc80b-cbc4-4033-9d32-e78e18459e3a: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/8eb16720-0e2d-4be0-ad45-31126509c985: Observation: Validate Observation against the Body mass index profile (http://hl7.org/fhir/StructureDefinition/bmi) which is required by the FHIR specification because the LOINC code 39156-5 was found","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/cb38943d-42b4-401c-bdd1-847e34834957: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1b5653a9-0262-48fa-955f-26714392e5c3: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/c256f67e-35db-479a-ba8c-fc5bc27e69fc: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/98913069-e6af-4954-9a26-43540329e369: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/e8df62aa-f0cc-482d-ac35-780a0f546143: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Validate Observation against the Respiratory Rate profile (http://hl7.org/fhir/StructureDefinition/resprate) which is required by the FHIR specification because the LOINC code 9279-1 was found","type":"info"},{"message":"Observation/9d9c8aca-5b74-4d1d-b8c3-03e9dc65de7b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Validate Observation against the Heart rate profile (http://hl7.org/fhir/StructureDefinition/heartrate) which is required by the FHIR specification because the LOINC code 8867-4 was found","type":"info"},{"message":"Observation/0c15b4a4-4a3b-471b-a166-adf20d6b16ff: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Validate Observation against the Blood pressure systolic and diastolic profile (http://hl7.org/fhir/StructureDefinition/bp) which is required by the FHIR specification because the LOINC code 85354-9 was found","type":"info"},{"message":"Observation/f3cf75ab-9c6f-4c75-a1b7-a589bcbab32b: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/d762bb01-83d1-4421-92b5-fab592cde755: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Validate Observation against the Body height profile (http://hl7.org/fhir/StructureDefinition/bodyheight) which is required by the FHIR specification because the LOINC code 8302-2 was found","type":"info"},{"message":"Observation/88e905c0-1953-4bc0-8894-454bd9c8052e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation.category[0]: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/observation-category|0.1.0","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Validate Observation against the Body temperature profile (http://hl7.org/fhir/StructureDefinition/bodytemp) which is required by the FHIR specification because the LOINC code 8310-5 was found","type":"info"},{"message":"Observation/5e8cb12a-504b-45cf-ab64-e9d4e6df19fe: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:20.959-04:00"},{"id":"95c467fe-e75e-421d-9ab7-194b36c873ff","created_at":"2026-05-22T21:12:21.134-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:21.134-04:00"},{"id":"7d795a7e-2dc7-4805-b756-be76f3a6d70f","created_at":"2026-05-22T21:12:21.137-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:21.137-04:00"},{"id":"e9a752e6-b8c9-47a6-8e37-7c333afdfaf1","created_at":"2026-05-22T21:12:21.138-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_observation_clinical_result","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:21.138-04:00"},{"id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","created_at":"2026-05-22T21:12:21.893-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"140941c3-c43e-4803-9df5-0e56ab4174e2","direction":"outgoing","index":143557,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"26887f4e-73da-4bd6-8092-e41b5f4211f2","direction":"outgoing","index":143558,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"70de16b2-3ba1-4672-b2f1-f127b6ec2da6","direction":"outgoing","index":143559,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"d2d0d9f2-f4db-41eb-9ce7-eed9819ff594","direction":"outgoing","index":143560,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"65d3f7c2-b8d1-44b9-8030-fb62a8519243","direction":"outgoing","index":143561,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"efe26882-f817-4070-908f-ae2729d7deab","direction":"outgoing","index":143562,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:21.893-04:00"},{"id":"19ccdde9-97da-4920-bda4-26c736cfc95f","created_at":"2026-05-22T21:12:22.873-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"e7fca1ee-e5b5-4caf-b1b9-9e6d3d53c27f","direction":"outgoing","index":143563,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3c686e55-4019-49e4-854f-6d70970cc2a0","direction":"outgoing","index":143564,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"99b041ac-71b0-4768-a500-b9db9216efaa","direction":"outgoing","index":143565,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8a7e4372-1c31-49d4-88e7-67d0b71e7a1b","direction":"outgoing","index":143566,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ddacdaa7-8b40-4123-b994-a0cda8ab2fbb","direction":"outgoing","index":143567,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fcebdd71-1d9c-422f-9a94-3d0b5be80389","direction":"outgoing","index":143568,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:22.873-04:00"},{"id":"0e58c81a-610e-4e82-a225-d2c46035a817","created_at":"2026-05-22T21:12:24.390-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8bc30444-2575-415c-8ee9-1adf435943a0","direction":"outgoing","index":143569,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"22b41fd8-21e3-4797-bb1a-b2020d3c8334","direction":"outgoing","index":143570,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f08e513-4511-43d8-a5a1-08cf3a50f854","direction":"outgoing","index":143571,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8055ba9-0e68-4494-9021-d51c27eefdab","direction":"outgoing","index":143572,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f86548dd-f4c8-4344-a937-1715da770c05","direction":"outgoing","index":143573,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e70cd87-975e-4e15-a89d-d3b4552421ee","direction":"outgoing","index":143574,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4935bdf-596e-489b-9994-21953b37ab6c","direction":"outgoing","index":143575,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"713a273b-1870-4215-9b4e-930876cf316f","direction":"outgoing","index":143576,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88d9aeea-0a08-4952-b1a6-b134718df6a2","direction":"outgoing","index":143577,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:24.390-04:00"},{"id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","created_at":"2026-05-22T21:12:27.067-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3488eebf-b505-4c50-b64f-070e3b0996b4","direction":"outgoing","index":143578,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2c9e8d3f-8182-4b7c-ae46-b38a34a1ed86","direction":"outgoing","index":143579,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5f8b46fa-3ad6-425c-a297-49f0dd948e11","direction":"outgoing","index":143580,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c45c0c8c-c23b-4b2b-b633-50e7183fa3f3","direction":"outgoing","index":143581,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e502a95-d091-4ab9-b7bd-bd9b6a7b5c23","direction":"outgoing","index":143582,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a1898e2f-9cd6-4ff3-90a4-d31e04a20536","direction":"outgoing","index":143583,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c012fde-ac17-4299-8681-7804a3e11b0f","direction":"outgoing","index":143584,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad76a49a-d3e4-49d1-81c6-7f194680f3e2","direction":"outgoing","index":143585,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05a71be1-ce12-491c-8cd2-cc68ad9b322f","direction":"outgoing","index":143586,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4447b7d8-d425-4501-a1c0-fbf21817059b","direction":"outgoing","index":143587,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:27.067-04:00"},{"id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","created_at":"2026-05-22T21:12:28.154-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"48b1797d-1521-4441-abcf-2b9e45078bd0","direction":"outgoing","index":143588,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4326098-4601-485d-94bd-b8e2e3698731","direction":"outgoing","index":143589,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737b3999-a752-4c98-ae57-739b41fadce8","direction":"outgoing","index":143590,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f2e4c43-346e-4d50-b697-0a587e2fca78","direction":"outgoing","index":143591,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"781f6a73-0b6b-4aa8-9ce2-9c55f7d17a44","direction":"outgoing","index":143592,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7665367d-3d30-4bcd-84bb-c1c3f6597daa","direction":"outgoing","index":143593,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.154-04:00"},{"id":"007e0910-72fd-4e26-a6e0-80616b07b896","created_at":"2026-05-22T21:12:28.355-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"247cb6d4-b5f1-45c7-a268-d2fe7bf4be14","direction":"outgoing","index":143594,"result_id":"007e0910-72fd-4e26-a6e0-80616b07b896","status":200,"timestamp":"2026-05-22T21:12:28.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/4d1034ca-a617-4f52-9abf-f4b895412f30","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.355-04:00"},{"id":"53c09742-fd6f-482a-84bb-9a9f3aae7352","created_at":"2026-05-22T21:12:28.790-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e81b7a52-5ad3-4c0d-8d9a-0e1198bd4740","direction":"outgoing","index":143595,"result_id":"53c09742-fd6f-482a-84bb-9a9f3aae7352","status":200,"timestamp":"2026-05-22T21:12:28.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=85","verb":"get"},{"id":"8a4d6cdd-ae95-46c9-a8f5-e9ffcee70d76","direction":"outgoing","index":143596,"result_id":"53c09742-fd6f-482a-84bb-9a9f3aae7352","status":200,"timestamp":"2026-05-22T21:12:28.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=355","verb":"get"},{"id":"06181758-f0d9-4cc7-9024-547e65bf2bce","direction":"outgoing","index":143597,"result_id":"53c09742-fd6f-482a-84bb-9a9f3aae7352","status":200,"timestamp":"2026-05-22T21:12:28.826-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=59576-9\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.790-04:00"},{"id":"d28e3da3-d40f-49ff-9bf1-5f06d2772e40","created_at":"2026-05-22T21:12:28.894-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/4d1034ca-a617-4f52-9abf-f4b895412f30: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/37aa934a-084b-4af7-864c-d89156ae3d62: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.894-04:00"},{"id":"d69d954b-e354-4053-a4fb-c57a299a0bb1","created_at":"2026-05-22T21:12:28.903-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.903-04:00"},{"id":"88c6b6f5-6f4b-4fda-be33-3c7d086a4e4f","created_at":"2026-05-22T21:12:28.906-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.906-04:00"},{"id":"8d731503-5b63-4d6f-a85a-3dec817a1cef","created_at":"2026-05-22T21:12:28.908-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:28.908-04:00"},{"id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","created_at":"2026-05-22T21:12:29.612-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7a4baabf-d356-4d87-b886-d9a1a20623cc","direction":"outgoing","index":143598,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"aa01796b-c23d-463c-95d4-1b38723d319f","direction":"outgoing","index":143599,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"f25e82d9-0d3e-43c5-95e5-e67e75f48021","direction":"outgoing","index":143600,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"cea0157d-0de1-4b7a-a9cc-40c90ec6787c","direction":"outgoing","index":143601,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"2dfc8a97-c6ab-4805-b8fd-2ef8c9e98db3","direction":"outgoing","index":143602,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"540c371a-cc2b-4c5f-8572-8a1110fd5591","direction":"outgoing","index":143603,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:29.612-04:00"},{"id":"903cdc06-3a39-45a1-855a-7b70c46421fd","created_at":"2026-05-22T21:12:30.472-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"a54c85cc-9254-4301-af86-3e73e28f4f29","direction":"outgoing","index":143604,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"502a443e-f694-4ea8-9ead-acd406805bd5","direction":"outgoing","index":143605,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"12f8480e-db33-412d-a1f6-470fc31f5c89","direction":"outgoing","index":143606,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"c609f1ac-1127-4ee8-b914-f584f585507b","direction":"outgoing","index":143607,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"b1c5f8d0-5ef7-439e-a190-c4611651f91e","direction":"outgoing","index":143608,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b9b4ea5-3c66-4c43-b1cb-cde00386645a","direction":"outgoing","index":143609,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:30.472-04:00"},{"id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","created_at":"2026-05-22T21:12:32.000-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"8f97cd38-f8c0-40a5-8495-4fdb1802fff3","direction":"outgoing","index":143610,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"83b36181-9120-4897-8cdd-9c93d991f7a1","direction":"outgoing","index":143611,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e744160-f20d-424f-8925-0c3ef1f80a68","direction":"outgoing","index":143612,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ae845c-586e-4c5b-98ea-c8f660a37f1e","direction":"outgoing","index":143613,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9bf7e0b1-e401-46dc-b76a-7e07a154877a","direction":"outgoing","index":143614,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"948c995d-294e-4f48-a69f-a87fae18626f","direction":"outgoing","index":143615,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a026f5d4-1610-442f-9e59-9355032af082","direction":"outgoing","index":143616,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"e204b9e8-7e0e-4734-a6a2-09790499a66c","direction":"outgoing","index":143617,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de25e52-39e3-4ce9-8a05-1768cd23bc51","direction":"outgoing","index":143618,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:32.000-04:00"},{"id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","created_at":"2026-05-22T21:12:34.629-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9b0fa213-e9ee-4d9c-b18f-fc2645df3641","direction":"outgoing","index":143619,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0caf861b-9b98-487e-aec3-4da33a7c407f","direction":"outgoing","index":143620,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"4094398f-8327-4c2b-b7f2-50958a6c2dea","direction":"outgoing","index":143621,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c15b4015-f6bc-45b0-b7a6-d359a5e10d0d","direction":"outgoing","index":143622,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1908f13f-bb73-4d25-b79f-8c341e90a232","direction":"outgoing","index":143623,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"21b9df12-a7f3-46e1-b20e-e0d4f4b5f101","direction":"outgoing","index":143624,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a621a520-d1e3-4686-8f8f-07d402f45ccc","direction":"outgoing","index":143625,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c47c900-6ecf-485d-b269-9de2dd2d5190","direction":"outgoing","index":143626,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9acf49db-3ccf-4c9d-84d3-064c42790921","direction":"outgoing","index":143627,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f7827a00-12d5-4a68-80b2-a26835082001","direction":"outgoing","index":143628,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:34.629-04:00"},{"id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","created_at":"2026-05-22T21:12:35.669-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6bc42d96-48d4-4298-b26e-2a53a031ee27","direction":"outgoing","index":143629,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e565cf2f-1921-4ea4-87db-a37d8f7e99e1","direction":"outgoing","index":143630,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95426d4a-9020-44ae-9647-da7444aef23f","direction":"outgoing","index":143631,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b5b18c5-3d89-4ef9-a194-2cb7284ac2ad","direction":"outgoing","index":143632,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a82c0a3-5819-4f41-bd85-1b5bd33b99ff","direction":"outgoing","index":143633,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53e4455d-c273-4e3b-ab58-7af46cd751a6","direction":"outgoing","index":143634,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:35.669-04:00"},{"id":"6898e273-69ea-400b-bf67-5237175a5bb2","created_at":"2026-05-22T21:12:35.871-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8b83d3fa-525e-40c7-b3f7-8e3051efce5f","direction":"outgoing","index":143635,"result_id":"6898e273-69ea-400b-bf67-5237175a5bb2","status":200,"timestamp":"2026-05-22T21:12:35.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/84dc8135-1456-4edd-a382-324915ae1555","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:35.871-04:00"},{"id":"9e2ae3e7-312a-475b-a51d-1073158c11d8","created_at":"2026-05-22T21:12:36.332-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c6858c1f-107f-42fd-9256-8341c16f16b0","direction":"outgoing","index":143636,"result_id":"9e2ae3e7-312a-475b-a51d-1073158c11d8","status":200,"timestamp":"2026-05-22T21:12:36.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=85","verb":"get"},{"id":"435c2cfb-aa8d-47f6-bdff-109e4fa84c1d","direction":"outgoing","index":143637,"result_id":"9e2ae3e7-312a-475b-a51d-1073158c11d8","status":200,"timestamp":"2026-05-22T21:12:36.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=355","verb":"get"},{"id":"cc6573d5-0b32-4b98-8a73-e3cdaaba2d48","direction":"outgoing","index":143638,"result_id":"9e2ae3e7-312a-475b-a51d-1073158c11d8","status":200,"timestamp":"2026-05-22T21:12:36.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=8289-1\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:36.332-04:00"},{"id":"5a3ffe96-78c6-4945-ad1b-65fc985503e5","created_at":"2026-05-22T21:12:36.453-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/84dc8135-1456-4edd-a382-324915ae1555: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/1d70e1af-a023-4470-9b70-20b443bc518e: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/3a0b7c00-1994-4c99-9592-19f47cb30751: Observation.code: None of the codings provided are in the value set 'Vital Signs' (http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://loinc.org#8289-1)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:36.453-04:00"},{"id":"006cb89c-448b-4f20-a401-21aac0452bab","created_at":"2026-05-22T21:12:36.471-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:36.471-04:00"},{"id":"4b764a25-64cb-4d57-be7b-a797e6ffeee0","created_at":"2026-05-22T21:12:36.476-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:36.476-04:00"},{"id":"28999819-79c3-401e-8140-f0f8a1db897e","created_at":"2026-05-22T21:12:36.479-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:36.479-04:00"},{"id":"9376ce30-9a8f-47af-ad85-0e992616cfea","created_at":"2026-05-22T21:12:37.263-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"748cec38-d716-4376-b35e-351f921c7e1c","direction":"outgoing","index":143639,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"a1f7ce7e-1376-4742-a461-c6dabaca6a4c","direction":"outgoing","index":143640,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"119411c9-de07-4800-b0c8-45229681159c","direction":"outgoing","index":143641,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/_search","verb":"post"},{"id":"5a25eceb-6862-425b-a7a8-f88f66ebf937","direction":"outgoing","index":143642,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"b8f3e113-d04b-4af4-b9fd-c72f28c0b395","direction":"outgoing","index":143643,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"d954f74a-ddd2-4011-b636-9c7d1572f1fa","direction":"outgoing","index":143644,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:37.263-04:00"},{"id":"62498566-1510-4680-aca1-509559296623","created_at":"2026-05-22T21:12:38.162-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"d710c206-ed6f-4048-b15f-2c1598f01cf8","direction":"outgoing","index":143645,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4af30b4a-653c-45d2-9aea-e11decb92d1e","direction":"outgoing","index":143646,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c7a5ea13-2665-4171-9687-2317560524c9","direction":"outgoing","index":143647,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6acd32b5-5551-42ef-adf0-d8540591b8d6","direction":"outgoing","index":143648,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"be1744b5-8efb-45ea-969d-d16f0125abcb","direction":"outgoing","index":143649,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ce87c449-baf2-4cd3-9e13-45263b802942","direction":"outgoing","index":143650,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:38.162-04:00"},{"id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","created_at":"2026-05-22T21:12:41.300-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"47be4939-11d5-44d7-8123-1d284d635073","direction":"outgoing","index":143651,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1f4f37d0-a743-4f29-ab20-5b578bf99eb3","direction":"outgoing","index":143652,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e158617d-749a-4f74-bc92-04486b9c1a49","direction":"outgoing","index":143653,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e618ba7-5c63-4a0f-8462-e2ba22317d1c","direction":"outgoing","index":143654,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"26317b80-1191-4d47-b128-a34265bb60b1","direction":"outgoing","index":143655,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"02d11ca5-66e1-4107-bb5f-15bb1d8df620","direction":"outgoing","index":143656,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dad32566-efb3-49ed-8a05-5f357d185c2c","direction":"outgoing","index":143657,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"8d0a5baa-c291-48ca-9c08-7180c5707ed3","direction":"outgoing","index":143658,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcb495ec-1667-4719-86e7-a90286ef545b","direction":"outgoing","index":143659,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:41.300-04:00"},{"id":"1f789080-257a-427a-a794-e035fb026fc7","created_at":"2026-05-22T21:12:45.061-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"78cb1c19-d9b7-438f-8b68-832ea9f7c181","direction":"outgoing","index":143660,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"21155383-1691-4960-9f9f-0843606b2f10","direction":"outgoing","index":143661,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"175ce37b-f06d-4c3a-89f3-27afb8f70765","direction":"outgoing","index":143662,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9c05dca3-f437-42a1-805a-4dc72a7715de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b178a76b-4130-43bc-970c-b7d2a3ef7538","direction":"outgoing","index":143663,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b7070ae0-0fa2-4c1d-bd6d-c6dfd379ee3e","direction":"outgoing","index":143664,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f3ada986-6bc0-4c01-808c-518ea2bc9d69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8cdfa5fc-af93-49ba-9a60-07a793eaaf65","direction":"outgoing","index":143665,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"508c93dd-60c9-489d-ab54-30debd69cc9f","direction":"outgoing","index":143666,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=80194c56-9cd3-410d-9fb3-19729350bd7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e514bb3-5af8-43a5-a804-e8725ceadc62","direction":"outgoing","index":143667,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2346b492-00d1-4d03-ad74-25d44e1ffffa","direction":"outgoing","index":143668,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=55851eba-1f56-4d96-8b22-7f2db55140db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"669b92ef-7744-41e9-80a2-7f632156e791","direction":"outgoing","index":143669,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:45.061-04:00"},{"id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","created_at":"2026-05-22T21:12:47.306-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"939eec64-091f-46f5-b9a3-5a8fb826911a","direction":"outgoing","index":143670,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"88bc25d0-bf6a-475e-855b-8118b4810953","direction":"outgoing","index":143671,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d2ffc94-54e3-4504-8c76-20d7658e0b90","direction":"outgoing","index":143672,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceefd20-e371-4ba8-b1b5-033fadde57c7","direction":"outgoing","index":143673,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a561b33-ace9-4a12-bd7b-1fa681c20b70","direction":"outgoing","index":143674,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa537135-26a8-4bfe-a1da-3034d9dbff4f","direction":"outgoing","index":143675,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:47.306-04:00"},{"id":"7ac77c3c-6598-42a7-b916-fb1ef9ba02d9","created_at":"2026-05-22T21:12:47.515-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a7886246-2128-46f5-97ce-86c3f55dbb7c","direction":"outgoing","index":143676,"result_id":"7ac77c3c-6598-42a7-b916-fb1ef9ba02d9","status":200,"timestamp":"2026-05-22T21:12:47.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:47.515-04:00"},{"id":"74ee3595-7b1b-4022-a5ba-27d60244373b","created_at":"2026-05-22T21:12:47.950-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3b822deb-eded-4d44-9da6-d5e72addc144","direction":"outgoing","index":143677,"result_id":"74ee3595-7b1b-4022-a5ba-27d60244373b","status":200,"timestamp":"2026-05-22T21:12:47.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=85","verb":"get"},{"id":"d7669b1e-67bc-4f01-8d82-1e9ef081d680","direction":"outgoing","index":143678,"result_id":"74ee3595-7b1b-4022-a5ba-27d60244373b","status":200,"timestamp":"2026-05-22T21:12:47.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=355","verb":"get"},{"id":"a355721d-dc0c-4e97-a3e4-61fb72f0a544","direction":"outgoing","index":143679,"result_id":"74ee3595-7b1b-4022-a5ba-27d60244373b","status":200,"timestamp":"2026-05-22T21:12:47.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?_revinclude=Provenance:target\u0026code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:47.950-04:00"},{"id":"0171315b-6a62-4e89-8299-04d4c255bb1e","created_at":"2026-05-22T21:12:48.419-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/87e3ff1e-ed93-420a-ac43-e6775de60fbc: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/7679d1a6-2b6a-40f1-9888-c831c1d1201f: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Validate Observation against the Body weight profile (http://hl7.org/fhir/StructureDefinition/bodyweight) which is required by the FHIR specification because the LOINC code 29463-7 was found","type":"info"},{"message":"Observation/81d8962c-e055-4338-9549-9e8f6e8acd06: Observation: Best Practice Recommendation: In general, all observations should have a performer","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:48.419-04:00"},{"id":"690b1ae4-8bc0-4714-a4d2-fa8200df0497","created_at":"2026-05-22T21:12:48.432-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:48.432-04:00"},{"id":"709504d8-3684-47f2-93d2-d76cd28b7a5c","created_at":"2026-05-22T21:12:48.435-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:48.435-04:00"},{"id":"50811cf5-2499-43a1-ac25-8065d7d3d53a","created_at":"2026-05-22T21:12:48.436-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_body_weight","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:48.436-04:00"},{"id":"4137c2be-0d2c-48c1-a20f-4853723ae697","created_at":"2026-05-22T21:12:51.353-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"a0103b0f-f94e-404f-b596-bc5fd7f10920","direction":"outgoing","index":143680,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85","verb":"get"},{"id":"f114ec88-42cf-4745-87c8-fdbc0f46662f","direction":"outgoing","index":143681,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c241a042-525b-411c-a1c1-6a675f6ef9e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e291f00e-1635-4278-9026-428ee3a40dc7","direction":"outgoing","index":143682,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/_search","verb":"post"},{"id":"16fc139c-fd0c-4f2f-b628-6c0139ff0978","direction":"outgoing","index":143683,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c241a042-525b-411c-a1c1-6a675f6ef9e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa65c635-c600-4c37-afd3-a9e251f03cb1","direction":"outgoing","index":143684,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=Patient/85","verb":"get"},{"id":"38b0924f-06c2-4773-8a24-96c695ca2f32","direction":"outgoing","index":143685,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3b861c4d-434f-41f0-ada0-4efd05a83f61\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7333d9ca-c7d3-418e-b1d5-f6765e871cda","direction":"outgoing","index":143686,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355","verb":"get"},{"id":"16c8900e-b3ba-4e67-99df-f75ed7985354","direction":"outgoing","index":143687,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=56e616e1-3cce-492a-88dd-5f6617df895e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86fab4b-8892-4042-a1ec-d586402bf076","direction":"outgoing","index":143688,"result_id":"4137c2be-0d2c-48c1-a20f-4853723ae697","status":200,"timestamp":"2026-05-22T21:12:51.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:51.353-04:00"},{"id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","created_at":"2026-05-22T21:12:52.652-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"bced3354-e7c7-41e0-992d-6bfc148df7f1","direction":"outgoing","index":143689,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"62f5578b-dc6a-4b21-894a-c3e67c9c6377","direction":"outgoing","index":143690,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"217cb1e0-3a34-4d46-907e-1efbcffcd5bf","direction":"outgoing","index":143691,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"18ef79bf-b8ba-494d-af1e-05ebe511e5cc","direction":"outgoing","index":143692,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.710-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9b382578-a8fd-4f91-805c-4eb1feff289d","direction":"outgoing","index":143693,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c029e5ed-ba82-4158-b133-1480c0d07cc0","direction":"outgoing","index":143694,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=http://snomed.info/sct%7C430193006\u0026date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c83fb66b-1535-4f32-8a23-a8f0857eaaa6","direction":"outgoing","index":143695,"result_id":"6e5c8549-eced-401d-aa3f-f603d2c4628f","status":200,"timestamp":"2026-05-22T21:12:52.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?code=430193006\u0026date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_code_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:52.652-04:00"},{"id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","created_at":"2026-05-22T21:12:55.283-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"27cafcbe-2ac3-4da5-8e84-d2ca50723b36","direction":"outgoing","index":143696,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=completed","verb":"get"},{"id":"62cb2b3c-7257-4bf8-9db7-efaab63354b0","direction":"outgoing","index":143697,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b216583e-affa-4756-9215-5ac83afc3359\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e477e7e3-97c2-497a-ae6a-a62eb76be014","direction":"outgoing","index":143698,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=355\u0026status=completed","verb":"get"},{"id":"3a46943f-6f57-4a61-bfce-667ec604f5d5","direction":"outgoing","index":143699,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2f0a8ca3-8f29-46b0-bfae-c81bd10d4460\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"250c7bb6-cd28-4ef0-9a9c-4dee30fe38c4","direction":"outgoing","index":143700,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?patient=85\u0026status=preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown","verb":"get"},{"id":"40184c92-85cf-41a5-a368-793689c47b17","direction":"outgoing","index":143701,"result_id":"8fd96ac0-a68d-4cd4-9560-8912375edcd2","status":200,"timestamp":"2026-05-22T21:12:55.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94435684-4728-4013-a04f-68e70e63e7f5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:55.283-04:00"},{"id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","created_at":"2026-05-22T21:12:57.843-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8699c059-b1ed-4867-b9ef-2216725fca03","direction":"outgoing","index":143702,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:57.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e22b43b2-0baa-41f2-9279-fd3595798654","direction":"outgoing","index":143703,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33fcd712-ae33-43d0-b6b0-bc2ac9733c31\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dbeca182-a5d4-4999-98e2-031d80fa4225","direction":"outgoing","index":143704,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.041-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=gt1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"836c471f-0f95-4c7e-83b8-4a200c62ef84","direction":"outgoing","index":143705,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=33fcd712-ae33-43d0-b6b0-bc2ac9733c31\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c17ebab-77c4-4203-b9e1-2c05187ef57b","direction":"outgoing","index":143706,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=ge1940-09-05T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c7734b65-d358-476f-b3b2-f3bf13f98398","direction":"outgoing","index":143707,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fbe419b3-bfb8-40ed-8173-3ee70f0e6ef5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe151781-4bf4-4315-a901-f1f29bd3033a","direction":"outgoing","index":143708,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=lt1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e5918d6c-39e3-4a16-86bf-700ee43066e4","direction":"outgoing","index":143709,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=le1940-09-07T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4b7c23c4-57bd-4a04-bf20-e408b4a9dda9","direction":"outgoing","index":143710,"result_id":"b88c0787-6816-4062-9c9f-0fa89ec83a85","status":200,"timestamp":"2026-05-22T21:12:58.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?date=1941-02-13T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:57.843-04:00"},{"id":"5714d3a4-595d-48a2-919d-be6464a8e907","created_at":"2026-05-22T21:12:58.232-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"ee318bbf-4bf9-4d09-af8d-37b86086df5d","direction":"outgoing","index":143711,"result_id":"5714d3a4-595d-48a2-919d-be6464a8e907","status":200,"timestamp":"2026-05-22T21:12:58.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:12:58.232-04:00"},{"id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","created_at":"2026-05-22T21:13:00.163-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"7a103897-b7f8-4000-89f8-c39aea54ee9d","direction":"outgoing","index":143712,"result_id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","status":200,"timestamp":"2026-05-22T21:13:00.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"4f3a02fd-4f87-4e95-b256-5b4b03581cb3","direction":"outgoing","index":143713,"result_id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","status":200,"timestamp":"2026-05-22T21:13:00.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2624ff9b-3f18-4ee6-b872-7e9ec44fa5bd\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"586b66ff-07ef-48dc-8e3d-d83b8dc21c6f","direction":"outgoing","index":143714,"result_id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","status":200,"timestamp":"2026-05-22T21:13:00.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"f4c1c7e4-9455-41a9-a33f-dfed7d69a03c","direction":"outgoing","index":143715,"result_id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","status":200,"timestamp":"2026-05-22T21:13:00.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f9427724-1606-45fe-8e23-7ca51258df37\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c92d44a9-d96d-494a-a50c-e6bb95dc0ab9","direction":"outgoing","index":143716,"result_id":"224777b8-e0b3-482b-9d8a-974b56d93f9f","status":200,"timestamp":"2026-05-22T21:13:00.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Procedure?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:00.163-04:00"},{"id":"2bca8dcf-e463-4b02-81a4-a091648dc984","created_at":"2026-05-22T21:13:04.369-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Procedure/f9d03c48-0c1e-4988-b44c-c4647d6e6e3b: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f82528c3-9149-45f5-ac75-7fbfa1c91ec9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a2749ea6-0829-4598-ab44-00db801a1bf6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0785374f-3c02-48d1-94d6-2860879070fd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/0d28934e-e17f-420d-88b3-dc91bdbcfdfe: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/bb4a8e0d-bcbb-499e-80e1-da3a844e054d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/372ac8ed-8f89-4148-b37f-894bea2262c9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/822ad070-17a1-4eb4-b4e9-f5dd8bec4fff: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3621bd55-6d7d-4ba4-9d3e-05f14a52f3ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/85d02f4c-47bd-4e63-a80e-3dcbe07e7400: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb1828cb-10d1-4d78-9881-5843f9bb19f4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/574e39ff-f37c-4b84-8026-45c85a7cc7e5: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/5fb0c9b4-da49-4e2a-9ce7-4a7822fc9114: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/425e6660-7561-45b8-9fcb-c066d7c6d255: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f2663fa4-5a5e-4540-929c-45b00a6c9e50: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/1dc6e805-8825-442f-9bf5-97bfdfae37d6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/3fa9aa0d-48cd-449c-a72a-b14ffcffa81a: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/00536519-2051-4723-aca0-e74726117c0f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/7b9ca6ea-9519-4568-a092-ef45bf39ae88: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ed4afa75-b3a5-4521-ae7b-65550c8d1abd: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4d96eb6a-3b38-49a8-858f-f2d30600a3a6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4b0fcf56-2f30-455a-af02-d342a43bba93: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/efc783ae-5c65-4845-a2d9-7ca27393bc85: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/ffd16af7-4a10-42ef-8ef3-42f85e8f5cdc: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/127bd751-1931-406d-9568-0c47a82ab6ac: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/592c1af1-6257-4698-95c7-20236f95337f: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/fe7754b0-1b71-46f5-851b-b3043b822ce1: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/37318f41-aefb-403b-acfa-9384e3ae3ce0: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/6083c4c6-9416-4bd2-8749-6b038c1785f9: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/60e306c6-9b4d-49d5-a7a8-b6dcdb05fc4c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/a55e6576-fa61-4363-a605-57e6ce58af23: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/934e7b9f-6eec-4a16-9093-b50b281d817c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/f1f3cd7e-d4fd-468a-b570-0026f324f76d: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/53b950e4-f196-4485-a38e-633d6b18dec7: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/b11dc5f8-6414-41ca-9125-9fa9ea4dab26: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/c74861ac-3e13-4963-bd7a-d9b0649f2fb6: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/4ce2ccca-306a-4ff7-a88f-55561c110341: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/9047ce5f-5b9d-43a6-82ef-d59f7b88069c: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/720982cd-0d15-4d3a-b1c2-af4932c2c5b4: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Procedure/cb039cd7-e19d-4922-a3aa-0f2d4f63df06: Procedure: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:04.369-04:00"},{"id":"d8de0e1c-38ff-48ad-beba-8ff2fb3cbedd","created_at":"2026-05-22T21:13:04.528-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:04.528-04:00"},{"id":"c9256cf4-5464-4ddc-9782-4764e5ad3537","created_at":"2026-05-22T21:13:04.635-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6e734bca-b4c7-48d1-936f-8fbee548fc74","direction":"outgoing","index":143717,"result_id":"c9256cf4-5464-4ddc-9782-4764e5ad3537","status":200,"timestamp":"2026-05-22T21:13:04.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:04.635-04:00"},{"id":"13b8a1e6-0415-4511-a7f9-f92734c53ef2","created_at":"2026-05-22T21:13:04.654-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_procedure","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:04.654-04:00"},{"id":"7ccbb470-1151-4553-9fe4-bccd0cadec4e","created_at":"2026-05-22T21:13:05.001-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"38640de0-77dc-4cc9-9bd1-a15c28b896a3","direction":"outgoing","index":143718,"result_id":"7ccbb470-1151-4553-9fe4-bccd0cadec4e","status":200,"timestamp":"2026-05-22T21:13:05.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=85","verb":"get"},{"id":"42471ee8-dda9-48c2-82cb-5a9074490076","direction":"outgoing","index":143719,"result_id":"7ccbb470-1151-4553-9fe4-bccd0cadec4e","status":200,"timestamp":"2026-05-22T21:13:05.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=355","verb":"get"},{"id":"bcb1291f-7e84-4875-b6ea-61a69798f48c","direction":"outgoing","index":143720,"result_id":"7ccbb470-1151-4553-9fe4-bccd0cadec4e","status":200,"timestamp":"2026-05-22T21:13:05.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?patient=907","verb":"get"}],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.001-04:00"},{"id":"82beba4f-c1ef-436e-8274-cd41eb129b9f","created_at":"2026-05-22T21:13:05.061-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `_id`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.061-04:00"},{"id":"78507ea2-369f-4b59-9004-7fff7738713c","created_at":"2026-05-22T21:13:05.064-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `questionnaire`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_questionnaire_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.064-04:00"},{"id":"b6dc7eb3-fad4-4294-9d67-44329c518b4f","created_at":"2026-05-22T21:13:05.066-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `authored`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_authored_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.066-04:00"},{"id":"71a259ca-4bdd-40e9-9a72-21d82087a548","created_at":"2026-05-22T21:13:05.068-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","result_message":"Could not find values for all search params `patient`, `status`","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.068-04:00"},{"id":"796de732-18cf-45f2-b7b4-6b7de6c554f6","created_at":"2026-05-22T21:13:05.070-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.070-04:00"},{"id":"8b762909-c386-4d42-b7ee-34c607931410","created_at":"2026-05-22T21:13:05.424-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c3b54adf-f0f5-4985-b9be-bb523a3dc2ab","direction":"outgoing","index":143721,"result_id":"8b762909-c386-4d42-b7ee-34c607931410","status":200,"timestamp":"2026-05-22T21:13:05.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"a83ecc96-410f-49ae-99df-ed0cf3fe290e","direction":"outgoing","index":143722,"result_id":"8b762909-c386-4d42-b7ee-34c607931410","status":200,"timestamp":"2026-05-22T21:13:05.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"910a5a00-02db-4b32-be16-cc437a4429c4","direction":"outgoing","index":143723,"result_id":"8b762909-c386-4d42-b7ee-34c607931410","status":200,"timestamp":"2026-05-22T21:13:05.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4/QuestionnaireResponse?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"skip","result_message":"No Provenance resources appear to be available. Please use patients with more information","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.424-04:00"},{"id":"774bcc2c-591d-4d81-a335-834e48e76647","created_at":"2026-05-22T21:13:05.480-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources conforming to the http://hl7.org/fhir/us/core/StructureDefinition/us-core-questionnaireresponse profile were returned","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.480-04:00"},{"id":"d7cbc63c-28e0-4d6c-b3db-2a0368c28441","created_at":"2026-05-22T21:13:05.483-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources were found","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.483-04:00"},{"id":"e2daf746-d325-4af1-a01c-2be17a131882","created_at":"2026-05-22T21:13:05.484-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"skip","result_message":"No QuestionnaireResponse resources appear to be available. Please use patients with more information.","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.484-04:00"},{"id":"6996dd7f-a96c-4a61-adcb-f51f7fb192e3","created_at":"2026-05-22T21:13:05.486-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"skip","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_questionnaire_response","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:05.486-04:00"},{"id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","created_at":"2026-05-22T21:13:06.108-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"df7bb4a7-d242-4481-9cd9-03ee242d2a84","direction":"outgoing","index":143724,"result_id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","status":200,"timestamp":"2026-05-22T21:13:06.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=85","verb":"get"},{"id":"ef28a669-b192-41f1-8d7a-28ba46ace2f2","direction":"outgoing","index":143725,"result_id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","status":200,"timestamp":"2026-05-22T21:13:06.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355","verb":"get"},{"id":"134ba22d-e0c3-4c91-903c-5b03f51c6af7","direction":"outgoing","index":143726,"result_id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","status":200,"timestamp":"2026-05-22T21:13:06.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/_search","verb":"post"},{"id":"115b082f-5022-4894-ae05-b5114c0f3812","direction":"outgoing","index":143727,"result_id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","status":200,"timestamp":"2026-05-22T21:13:06.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=Patient/355","verb":"get"},{"id":"040fdbb1-ee8e-43e9-91e9-d4d3ceee4630","direction":"outgoing","index":143728,"result_id":"754971eb-772b-4246-9282-aa1e7bb4a7b0","status":200,"timestamp":"2026-05-22T21:13:06.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:06.108-04:00"},{"id":"8492c5b3-24ad-4f26-ad32-18ebd339324d","created_at":"2026-05-22T21:13:06.323-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"6d17b837-ace3-44cc-a677-c58844c3f679","direction":"outgoing","index":143729,"result_id":"8492c5b3-24ad-4f26-ad32-18ebd339324d","status":200,"timestamp":"2026-05-22T21:13:06.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_id=3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:06.323-04:00"},{"id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","created_at":"2026-05-22T21:13:07.091-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"e65a7644-9203-4037-8b00-181b53e176e2","direction":"outgoing","index":143730,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"2ef82928-2baa-4fb7-8522-4c548c365a34","direction":"outgoing","index":143731,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"a98d12b6-d9cf-4d6b-8bdc-a2495cd7f536","direction":"outgoing","index":143732,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"b4c55460-1d2d-4bc0-882d-aea760a76547","direction":"outgoing","index":143733,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"a76d1376-4727-4610-b88d-735619c49a33","direction":"outgoing","index":143734,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026category=387713003\u0026patient=355","verb":"get"},{"id":"6da16a1b-af2f-4076-b819-7406246fd901","direction":"outgoing","index":143735,"result_id":"be456034-ae69-426f-a0ff-8c1cde6b63a2","status":200,"timestamp":"2026-05-22T21:13:07.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:07.091-04:00"},{"id":"48b71f9d-1f57-4e4c-a4a9-284fb1dadacb","created_at":"2026-05-22T21:13:07.415-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"3143b796-ea9b-40ce-8575-54f8f6fe669f","direction":"outgoing","index":143736,"result_id":"48b71f9d-1f57-4e4c-a4a9-284fb1dadacb","status":200,"timestamp":"2026-05-22T21:13:07.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=completed","verb":"get"},{"id":"4ebbaa31-ca24-4127-b9f3-a33578a25728","direction":"outgoing","index":143737,"result_id":"48b71f9d-1f57-4e4c-a4a9-284fb1dadacb","status":200,"timestamp":"2026-05-22T21:13:07.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?patient=355\u0026status=draft,active,on-hold,revoked,completed,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_status_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:07.415-04:00"},{"id":"38a9cae9-f313-4bab-a418-fd2e52a0fa1a","created_at":"2026-05-22T21:13:07.675-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"2267ea66-a9a5-4d2a-a5b4-a30fdffcaadf","direction":"outgoing","index":143738,"result_id":"38a9cae9-f313-4bab-a418-fd2e52a0fa1a","status":200,"timestamp":"2026-05-22T21:13:07.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=387713003\u0026patient=355","verb":"get"},{"id":"8135acb4-9da6-4bf2-997c-78e52583edce","direction":"outgoing","index":143739,"result_id":"38a9cae9-f313-4bab-a418-fd2e52a0fa1a","status":200,"timestamp":"2026-05-22T21:13:07.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?category=http://snomed.info/sct%7C387713003\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:07.675-04:00"},{"id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","created_at":"2026-05-22T21:13:08.442-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"f4d774d7-5f34-415b-bced-71d07863d1df","direction":"outgoing","index":143740,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"af9def80-8c5e-485d-9cab-0d5769f106ca","direction":"outgoing","index":143741,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=gt2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"c7b75899-9e6f-46b3-94d5-eb49cba33422","direction":"outgoing","index":143742,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=ge2015-03-29T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"3447d166-0d02-4471-bf61-1462fd0fd012","direction":"outgoing","index":143743,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=lt2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"8407637a-1408-43d0-ad3d-e675b2ff172a","direction":"outgoing","index":143744,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=le2015-03-31T00:00:00%2B00:00\u0026code=233169004\u0026patient=355","verb":"get"},{"id":"e14a1665-92ff-4696-81f4-30694bc3e9bd","direction":"outgoing","index":143745,"result_id":"afe2e030-51ec-4540-a9b8-935b2a3b04f0","status":200,"timestamp":"2026-05-22T21:13:08.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?authored=2015-03-30\u0026code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_authored_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:08.442-04:00"},{"id":"0b6b6aff-c36f-4ed9-9d22-7053d29bfc57","created_at":"2026-05-22T21:13:08.766-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"c23b66fb-f5e0-4937-b839-821ac75a15a8","direction":"outgoing","index":143746,"result_id":"0b6b6aff-c36f-4ed9-9d22-7053d29bfc57","status":200,"timestamp":"2026-05-22T21:13:08.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=233169004\u0026patient=355","verb":"get"},{"id":"78cb7804-c08e-4a2a-a37b-e851afdd7816","direction":"outgoing","index":143747,"result_id":"0b6b6aff-c36f-4ed9-9d22-7053d29bfc57","status":200,"timestamp":"2026-05-22T21:13:08.784-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?code=http://snomed.info/sct%7C233169004\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:08.766-04:00"},{"id":"c7d38232-396f-44d7-bf9d-7d4a5e68b595","created_at":"2026-05-22T21:13:08.907-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"9cbb180e-3c54-49a2-a5be-98c8bbff6de0","direction":"outgoing","index":143748,"result_id":"c7d38232-396f-44d7-bf9d-7d4a5e68b595","status":200,"timestamp":"2026-05-22T21:13:08.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:08.907-04:00"},{"id":"2e5ced48-7dd2-4609-af7c-786364dc3270","created_at":"2026-05-22T21:13:09.376-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"82dd0021-214b-4731-affa-fa2de21b66eb","direction":"outgoing","index":143749,"result_id":"2e5ced48-7dd2-4609-af7c-786364dc3270","status":200,"timestamp":"2026-05-22T21:13:09.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"ed78fcfe-641b-481f-990b-44a8b0f11714","direction":"outgoing","index":143750,"result_id":"2e5ced48-7dd2-4609-af7c-786364dc3270","status":200,"timestamp":"2026-05-22T21:13:09.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"c9f645a9-60da-433d-ad4c-4b90cb1c7c44","direction":"outgoing","index":143751,"result_id":"2e5ced48-7dd2-4609-af7c-786364dc3270","status":200,"timestamp":"2026-05-22T21:13:09.412-04:00","url":"https://inferno.healthit.gov/reference-server/r4/ServiceRequest?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:09.376-04:00"},{"id":"8e5e2a41-200b-437f-9735-6d4be12acf85","created_at":"2026-05-22T21:13:11.819-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest.category[0]: Reference to draft ValueSet http://hl7.org/fhir/ValueSet/servicerequest-category|4.0.1","type":"info"},{"message":"ServiceRequest/3545ff18-c7e4-45e1-94fc-3f7d644ebdd2: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"ServiceRequest/d1ab235c-2f94-4a51-8d36-45b9fc9dfd5f: ServiceRequest: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:11.819-04:00"},{"id":"ebd72e3d-6412-4259-a21e-d3aa75f5111a","created_at":"2026-05-22T21:13:11.856-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:11.856-04:00"},{"id":"cd8ae64d-02d6-4f82-8c88-4156490e0362","created_at":"2026-05-22T21:13:12.010-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"926331fa-aad3-40be-8aa7-972e9836aa95","direction":"outgoing","index":143752,"result_id":"cd8ae64d-02d6-4f82-8c88-4156490e0362","status":200,"timestamp":"2026-05-22T21:13:12.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.010-04:00"},{"id":"6c04cd04-2bcc-405b-a57d-9c51357bba66","created_at":"2026-05-22T21:13:12.036-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_service_request","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.036-04:00"},{"id":"19266259-b203-4aaa-88c2-519453b565ca","created_at":"2026-05-22T21:13:12.157-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Organization reference used for this test was pulled from resource\nProvenance/7e949737-762e-4f31-8842-556092e108c1\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"a37dd788-ac76-4ee8-8e87-3b0b3415b71c","direction":"outgoing","index":143753,"result_id":"19266259-b203-4aaa-88c2-519453b565ca","status":200,"timestamp":"2026-05-22T21:13:12.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.157-04:00"},{"id":"84f3ec75-11af-4474-96f2-9f795359e1d8","created_at":"2026-05-22T21:13:12.415-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"87aa4f3a-f8a2-4eb7-a227-7bf236015b75","direction":"outgoing","index":143754,"result_id":"84f3ec75-11af-4474-96f2-9f795359e1d8","status":200,"timestamp":"2026-05-22T21:13:12.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?name=PCP87052","verb":"get"},{"id":"c2c6cdb0-ae1c-4e1f-9124-6f409cdacdc3","direction":"outgoing","index":143755,"result_id":"84f3ec75-11af-4474-96f2-9f795359e1d8","status":200,"timestamp":"2026-05-22T21:13:12.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/_search","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.415-04:00"},{"id":"26a69f31-deb1-4939-82e1-ab404e47c69e","created_at":"2026-05-22T21:13:12.560-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"5ef5428b-b7c0-44fd-85c1-68dc79126d90","direction":"outgoing","index":143756,"result_id":"26a69f31-deb1-4939-82e1-ab404e47c69e","status":200,"timestamp":"2026-05-22T21:13:12.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization?address=DRACUT","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.560-04:00"},{"id":"e7d507e3-ab09-4485-ac5c-e66b2b44bef0","created_at":"2026-05-22T21:13:12.614-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Organization/1c330b8c-de6c-4ab2-afa4-7da83cb436f0: Organization: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.614-04:00"},{"id":"5087e3b2-7c64-4a46-b849-68925099ad64","created_at":"2026-05-22T21:13:12.620-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.620-04:00"},{"id":"7055b9fc-f8da-4b7f-a0cb-b8440ec66284","created_at":"2026-05-22T21:13:12.621-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_organization","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.621-04:00"},{"id":"a6fdf56f-af85-464e-8c17-d31e314e5ac1","created_at":"2026-05-22T21:13:12.739-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Practitioner reference used for this test was pulled from resource\nProvenance/a11a74ce-3064-4891-81ad-6184c49c53ec\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"cc10f9cd-13e1-42a8-b358-c2e4c1d1ffaa","direction":"outgoing","index":143757,"result_id":"a6fdf56f-af85-464e-8c17-d31e314e5ac1","status":200,"timestamp":"2026-05-22T21:13:12.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.739-04:00"},{"id":"a10e6bd7-bb99-4c65-acf3-53da43626bd0","created_at":"2026-05-22T21:13:12.995-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"2d0229ff-313c-45ae-bddf-0ebb262d6e0b","direction":"outgoing","index":143758,"result_id":"a10e6bd7-bb99-4c65-acf3-53da43626bd0","status":200,"timestamp":"2026-05-22T21:13:12.998-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?_id=d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"},{"id":"9fa99062-dc07-48e3-a327-87e4a26c3245","direction":"outgoing","index":143759,"result_id":"a10e6bd7-bb99-4c65-acf3-53da43626bd0","status":200,"timestamp":"2026-05-22T21:13:13.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/_search","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:12.995-04:00"},{"id":"25df6a8a-e64b-4bd0-aa9d-dbf185934c30","created_at":"2026-05-22T21:13:13.292-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"b096ba9e-c01e-4e9c-896a-8d8ece8c84a4","direction":"outgoing","index":143760,"result_id":"25df6a8a-e64b-4bd0-aa9d-dbf185934c30","status":200,"timestamp":"2026-05-22T21:13:13.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?name=Christiansen251","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.292-04:00"},{"id":"0bdb480f-0241-431d-8821-7702c4fe1923","created_at":"2026-05-22T21:13:13.695-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"499c9975-e5b7-4a4c-a858-a2f54343bfc1","direction":"outgoing","index":143761,"result_id":"0bdb480f-0241-431d-8821-7702c4fe1923","status":200,"timestamp":"2026-05-22T21:13:13.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=9999944819","verb":"get"},{"id":"ae3b3dcb-8bc8-40fc-9468-912b678335db","direction":"outgoing","index":143762,"result_id":"0bdb480f-0241-431d-8821-7702c4fe1923","status":200,"timestamp":"2026-05-22T21:13:13.711-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi%7C9999944819","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.695-04:00"},{"id":"72bb65af-8432-4b89-8dd5-c7fe23b9d0b0","created_at":"2026-05-22T21:13:13.753-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763: Practitioner: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.753-04:00"},{"id":"3abcd8bd-b8fc-4f15-a6f5-7d5d80638db9","created_at":"2026-05-22T21:13:13.758-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.758-04:00"},{"id":"05bdcd91-80d4-4900-a61a-337d03df9be3","created_at":"2026-05-22T21:13:13.867-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8379ea30-97f4-4943-9923-73484cc57272","direction":"outgoing","index":143763,"result_id":"05bdcd91-80d4-4900-a61a-337d03df9be3","status":200,"timestamp":"2026-05-22T21:13:13.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Practitioner/d4d2b962-3359-467c-89bf-a26e4b655763","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_address_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.867-04:00"},{"id":"169a2624-4586-4fb6-9d43-9a7a78dcffe7","created_at":"2026-05-22T21:13:13.886-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:13.886-04:00"},{"id":"e3e4d52f-5caf-4557-8514-79c4aa00356a","created_at":"2026-05-22T21:13:14.000-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe PractitionerRole reference used for this test was pulled from resource\nMedicationDispense/28031ae6-41ab-49a4-9618-94a96b14fbb4\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"b42fb04c-39ad-41f4-b285-9f02c45a1002","direction":"outgoing","index":143764,"result_id":"e3e4d52f-5caf-4557-8514-79c4aa00356a","status":200,"timestamp":"2026-05-22T21:13:14.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:14.000-04:00"},{"id":"4e16e851-bd38-4bd6-aaf0-7e34a40364e0","created_at":"2026-05-22T21:13:14.428-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"342a01f3-aa9e-4a5b-bf2b-0184567a6a38","direction":"outgoing","index":143765,"result_id":"4e16e851-bd38-4bd6-aaf0-7e34a40364e0","status":200,"timestamp":"2026-05-22T21:13:14.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=208D00000X","verb":"get"},{"id":"94b0baec-b9a2-4dd4-ab4b-6247e907758c","direction":"outgoing","index":143766,"result_id":"4e16e851-bd38-4bd6-aaf0-7e34a40364e0","status":200,"timestamp":"2026-05-22T21:13:14.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole/_search","verb":"post"},{"id":"482c7e4e-46b0-40a1-ad41-5c7de25a57e9","direction":"outgoing","index":143767,"result_id":"4e16e851-bd38-4bd6-aaf0-7e34a40364e0","status":200,"timestamp":"2026-05-22T21:13:14.462-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?specialty=http://nucc.org/provider-taxonomy%7C208D00000X","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:14.428-04:00"},{"id":"300fc8cf-9b89-4ebd-886b-467f9c8a1c76","created_at":"2026-05-22T21:13:14.583-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"932eb43d-ae8c-4f12-b4dd-9000c5d4a10d","direction":"outgoing","index":143768,"result_id":"300fc8cf-9b89-4ebd-886b-467f9c8a1c76","status":200,"timestamp":"2026-05-22T21:13:14.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/PractitionerRole?practitioner=Practitioner/4bb7a6c6-1283-474e-9e67-423ee2415da1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:14.583-04:00"},{"id":"4319a7e3-f936-4193-9134-25e05925609b","created_at":"2026-05-22T21:13:16.677-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/5cd31fbc-5da6-46d7-981f-8137c722d6c8: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/pdex-PractitionerRole: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/34f58138-bf60-4055-be68-806f6b5b8ffb: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/34f58138-bf60-4055-be68-806f6b5b8ffb: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/5d82c59e-5838-496e-97c7-f5297313eace: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/5d82c59e-5838-496e-97c7-f5297313eace: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/faef14c4-c15a-4157-af21-2fd9d8be2273: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/faef14c4-c15a-4157-af21-2fd9d8be2273: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/e03dff92-eb66-4dab-b394-799983cf2b22: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"PractitionerRole/us-core-client-tests-practitioner-role: PractitionerRole.code[0]: None of the codings provided are in the value set 'Care Team Member Function' (http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1099.30|20190418), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://nucc.org/provider-taxonomy#208D00000X)","type":"warning"},{"message":"PractitionerRole/us-core-client-tests-practitioner-role: PractitionerRole: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:16.677-04:00"},{"id":"f5fc3a65-ef22-4635-a865-e2cfb4be973f","created_at":"2026-05-22T21:13:16.709-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:16.709-04:00"},{"id":"f2f980d6-05c6-4675-aae8-8a609cb7a058","created_at":"2026-05-22T21:13:17.099-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8061fc47-ba0d-48ce-85e4-baabb75525c6","direction":"outgoing","index":143769,"result_id":"f2f980d6-05c6-4675-aae8-8a609cb7a058","status":200,"timestamp":"2026-05-22T21:13:17.104-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Organization/26494c16-bac6-4b4a-8cb0-d1d1212210db","verb":"get"},{"id":"6c035a69-c893-43ce-9b66-b4fd47a23e97","direction":"outgoing","index":143770,"result_id":"f2f980d6-05c6-4675-aae8-8a609cb7a058","status":200,"timestamp":"2026-05-22T21:13:17.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Location/2aaf3922-72e6-4cb8-8f17-a8a709886a89","verb":"get"},{"id":"7fd0e56f-0006-4a7b-b454-75a6dc1bbd3b","direction":"outgoing","index":143771,"result_id":"f2f980d6-05c6-4675-aae8-8a609cb7a058","status":200,"timestamp":"2026-05-22T21:13:17.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Endpoint/b5ebb5af-57fa-4ae8-a224-35a0e3ed0ea1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:17.099-04:00"},{"id":"91688c48-1afa-48cf-b5a2-a18241166a77","created_at":"2026-05-22T21:13:17.163-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_practitioner_role","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:17.163-04:00"},{"id":"15cdf676-9d41-4eaa-87cc-51c6ad281017","created_at":"2026-05-22T21:13:17.324-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"3c676e36-5cde-429b-83b9-717c862ca4a4","direction":"outgoing","index":143772,"result_id":"15cdf676-9d41-4eaa-87cc-51c6ad281017","status":200,"timestamp":"2026-05-22T21:13:17.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Provenance/7e949737-762e-4f31-8842-556092e108c1","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:17.324-04:00"},{"id":"e6d213ad-dc4e-4018-8b97-bb60cc9a3134","created_at":"2026-05-22T21:13:25.051-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/8903d76b-2dfc-4e35-a293-40c8a5face1a: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/7e949737-762e-4f31-8842-556092e108c1: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance.agent[0].type: Reference to draft CodeSystem http://terminology.hl7.org/CodeSystem/provenance-participant-type|0.1.0","type":"info"},{"message":"Provenance/a11a74ce-3064-4891-81ad-6184c49c53ec: Provenance: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:25.051-04:00"},{"id":"2ba4b6de-c584-4261-8efa-7a1769e7f171","created_at":"2026-05-22T21:13:25.334-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:25.334-04:00"},{"id":"8b3c2077-6052-46f6-af47-3e0f59b02b0c","created_at":"2026-05-22T21:13:25.338-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:25.338-04:00"},{"id":"519e69a6-3665-47f1-9567-2497b123c687","created_at":"2026-05-22T21:13:25.339-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_provenance","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:25.339-04:00"},{"id":"55df54f5-5225-4c95-afad-68b93da262a6","created_at":"2026-05-22T21:13:25.479-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe RelatedPerson reference used for this test was pulled from resource\nCareTeam/f50bb598-1326-4dd6-9941-5e7753e69e89\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"79511482-65a7-40ea-819f-2439649bdcf4","direction":"outgoing","index":143773,"result_id":"55df54f5-5225-4c95-afad-68b93da262a6","status":200,"timestamp":"2026-05-22T21:13:25.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:25.479-04:00"},{"id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","created_at":"2026-05-22T21:13:26.111-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c16d6473-b480-4f79-b6d9-d554a2326170","direction":"outgoing","index":143774,"result_id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","status":200,"timestamp":"2026-05-22T21:13:26.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=85","verb":"get"},{"id":"497aa663-aca2-4687-bb10-15f60e1a0103","direction":"outgoing","index":143775,"result_id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","status":200,"timestamp":"2026-05-22T21:13:26.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson/_search","verb":"post"},{"id":"3d3134cd-18fb-49a4-86b0-f7ca159fc5c7","direction":"outgoing","index":143776,"result_id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","status":200,"timestamp":"2026-05-22T21:13:26.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=Patient/85","verb":"get"},{"id":"48e25f17-687d-4eb0-94b6-05e5b425542f","direction":"outgoing","index":143777,"result_id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","status":200,"timestamp":"2026-05-22T21:13:26.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=355","verb":"get"},{"id":"39a85ad0-7316-4ef2-8e42-f1412f91b525","direction":"outgoing","index":143778,"result_id":"3090957b-1a4e-4c5c-809c-fe64780bbb63","status":200,"timestamp":"2026-05-22T21:13:26.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:26.111-04:00"},{"id":"620834e2-ad6a-43c6-a72f-a685badad623","created_at":"2026-05-22T21:13:26.317-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"f8afc499-4821-4792-9ab8-97e1a56f24ee","direction":"outgoing","index":143779,"result_id":"620834e2-ad6a-43c6-a72f-a685badad623","status":200,"timestamp":"2026-05-22T21:13:26.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_id=4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:26.317-04:00"},{"id":"d7768af2-1ad7-44b4-8bed-e374f23d9a11","created_at":"2026-05-22T21:13:26.465-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"294f65e2-c063-4259-89f4-74f706863a7c","direction":"outgoing","index":143780,"result_id":"d7768af2-1ad7-44b4-8bed-e374f23d9a11","status":200,"timestamp":"2026-05-22T21:13:26.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:26.465-04:00"},{"id":"3e289d77-779c-431e-807e-c922b99ad7ed","created_at":"2026-05-22T21:13:26.595-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"c5b77ca3-c059-452f-8852-5b345a227300","direction":"outgoing","index":143781,"result_id":"3e289d77-779c-431e-807e-c922b99ad7ed","status":200,"timestamp":"2026-05-22T21:13:26.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?name=Jefferson174\u0026patient=85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_patient_name_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:26.595-04:00"},{"id":"132f3b96-348c-48a4-b743-4b5883f57279","created_at":"2026-05-22T21:13:26.997-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"087cadcf-48bd-4902-b4a0-f5a0c6496b6d","direction":"outgoing","index":143782,"result_id":"132f3b96-348c-48a4-b743-4b5883f57279","status":200,"timestamp":"2026-05-22T21:13:27.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=85","verb":"get"},{"id":"a1ad4c14-3336-4ae8-aff5-38a5038b64bf","direction":"outgoing","index":143783,"result_id":"132f3b96-348c-48a4-b743-4b5883f57279","status":200,"timestamp":"2026-05-22T21:13:27.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=355","verb":"get"},{"id":"8bc94fd4-5e76-4d5c-bc85-23a84efe2d25","direction":"outgoing","index":143784,"result_id":"132f3b96-348c-48a4-b743-4b5883f57279","status":200,"timestamp":"2026-05-22T21:13:27.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/RelatedPerson?_revinclude=Provenance:target\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_provenance_revinclude_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:26.997-04:00"},{"id":"fc76c5fe-0c5f-4b99-8229-772b73ea352d","created_at":"2026-05-22T21:13:27.088-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"RelatedPerson/4897ffc7-f2dd-40cf-b1d3-dbbaee8e449a: RelatedPerson: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.088-04:00"},{"id":"02abee22-999c-4712-9e31-b36572411731","created_at":"2026-05-22T21:13:27.091-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.091-04:00"},{"id":"06af220d-42b7-4c45-9b60-9ffd175faa6e","created_at":"2026-05-22T21:13:27.094-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.094-04:00"},{"id":"4330e8f6-4a34-4630-b28b-58e4a8c16cd8","created_at":"2026-05-22T21:13:27.095-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_related_person","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.095-04:00"},{"id":"4ad70311-cbe2-4e73-887e-64ff36a985a6","created_at":"2026-05-22T21:13:27.208-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"\nThe Specimen reference used for this test was pulled from resource\nObservation/c1acf7df-5fdc-4338-bb91-add5b859696b\n\n","type":"info"}],"optional":false,"outputs":[],"requests":[{"id":"74843029-68a4-4de9-a9a8-9475c7f38dbc","direction":"outgoing","index":143785,"result_id":"4ad70311-cbe2-4e73-887e-64ff36a985a6","status":200,"timestamp":"2026-05-22T21:13:27.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_read_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.208-04:00"},{"id":"1f173736-f505-403a-b6b2-932002b0e47f","created_at":"2026-05-22T21:13:27.834-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[{"id":"343d3dd5-d5f6-47ea-ba51-072eac5604b0","direction":"outgoing","index":143786,"result_id":"1f173736-f505-403a-b6b2-932002b0e47f","status":200,"timestamp":"2026-05-22T21:13:27.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=85","verb":"get"},{"id":"3a2eb596-3a6a-4b8c-9232-c9effed1bfc4","direction":"outgoing","index":143787,"result_id":"1f173736-f505-403a-b6b2-932002b0e47f","status":200,"timestamp":"2026-05-22T21:13:27.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen/_search","verb":"post"},{"id":"c64bc2b1-d2cc-4a88-b713-66e507d14515","direction":"outgoing","index":143788,"result_id":"1f173736-f505-403a-b6b2-932002b0e47f","status":200,"timestamp":"2026-05-22T21:13:27.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=Patient/85","verb":"get"},{"id":"f8716186-de96-41f8-8557-78f0505baefc","direction":"outgoing","index":143789,"result_id":"1f173736-f505-403a-b6b2-932002b0e47f","status":200,"timestamp":"2026-05-22T21:13:27.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=355","verb":"get"},{"id":"9bf5b68b-e312-44e1-8e66-147cbedf5f74","direction":"outgoing","index":143790,"result_id":"1f173736-f505-403a-b6b2-932002b0e47f","status":200,"timestamp":"2026-05-22T21:13:27.912-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_patient_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:27.834-04:00"},{"id":"134594e6-7048-4e8a-8871-0873271fe9d6","created_at":"2026-05-22T21:13:28.045-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"8534b4ee-9d5f-4d4b-96e1-fa9b0da13145","direction":"outgoing","index":143791,"result_id":"134594e6-7048-4e8a-8871-0873271fe9d6","status":200,"timestamp":"2026-05-22T21:13:28.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Specimen?_id=95acdc9a-9530-46f8-9a5b-d3aadffaa647","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:28.045-04:00"},{"id":"4e3ca10e-53a2-44d7-96a2-9648e18c8ce9","created_at":"2026-05-22T21:13:28.083-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen.collection.bodySite.coding[0]: The concept '106004' has a status of inactive and its use should be reviewed","type":"warning"},{"message":"Specimen/95acdc9a-9530-46f8-9a5b-d3aadffaa647: Specimen: Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)","type":"warning"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:28.083-04:00"},{"id":"461b6c2a-96e5-4851-90f4-c7fcb30c0acf","created_at":"2026-05-22T21:13:28.089-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:28.089-04:00"},{"id":"ae2bf9d4-96e6-4eea-9180-84d5235df8a6","created_at":"2026-05-22T21:13:28.091-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_reference_resolution_test","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:28.091-04:00"},{"id":"77485d5c-bc78-4680-bfe2-c4fc1f4cd8f9","created_at":"2026-05-22T21:13:28.093-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_specimen","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:28.093-04:00"},{"id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","created_at":"2026-05-22T21:13:32.193-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"4716b3c7-fada-4310-87cd-cba5e4c656db","direction":"outgoing","index":143792,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=85","verb":"get"},{"id":"438b588b-4567-48e3-8702-774cfdfdfaf2","direction":"outgoing","index":143793,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=285e31ab-31d9-4430-84d2-34d3b9266b7b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14fc5b1d-8907-41db-b804-5a303b537b10","direction":"outgoing","index":143794,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=285e31ab-31d9-4430-84d2-34d3b9266b7b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d11d56c5-9a87-4fba-890c-98287dbe1c82","direction":"outgoing","index":143795,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=85","verb":"get"},{"id":"795818e6-383a-429e-962b-6c2315863728","direction":"outgoing","index":143796,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=25b42a6c-c020-43e4-8648-97957cb86bbb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0adf176-4a71-4d2f-b3f7-b0cd85454bfa","direction":"outgoing","index":143797,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=355","verb":"get"},{"id":"6100fd4c-eb93-44c1-9415-3ad22508a983","direction":"outgoing","index":143798,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14911ac7-2d8a-48bd-9593-8b707e6932c0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89a23665-e4dd-450b-b4ea-752425d785b7","direction":"outgoing","index":143799,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14911ac7-2d8a-48bd-9593-8b707e6932c0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"908a9013-cb0c-4a32-af1f-8412e8d3ab2f","direction":"outgoing","index":143800,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=355","verb":"get"},{"id":"21e3966e-968e-4a2e-9cd0-1b2d222591fa","direction":"outgoing","index":143801,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=39cd8d0b-0cd5-45fd-b2df-caded5992ba5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74554af0-56a5-4512-87db-8a3839f338bc","direction":"outgoing","index":143802,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=39cd8d0b-0cd5-45fd-b2df-caded5992ba5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5c7c188c-c61b-4ed0-9b77-af71668c73d9","direction":"outgoing","index":143803,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DocumentReference?patient=907","verb":"get"},{"id":"72199a87-5914-4982-a94f-b408440aeace","direction":"outgoing","index":143804,"result_id":"f5d1f238-0f8e-4d45-bbe8-892d78ba140b","status":200,"timestamp":"2026-05-22T21:13:32.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/DiagnosticReport?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_types","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:32.193-04:00"},{"id":"9fe98882-911b-4e4c-9885-30d1a07d5d56","created_at":"2026-05-22T21:13:32.380-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance-us_core_clinical_note_attachments","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:32.380-04:00"},{"id":"27f5cabb-70bb-4d3f-a0de-15194776e33b","created_at":"2026-05-22T21:13:32.381-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:32.381-04:00"},{"id":"14b630de-b4b4-4ac5-975b-d96adf653e13","created_at":"2026-05-22T21:13:33.006-04:00","inputs":[{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[{"id":"764c3162-75ed-4a6d-8443-95fc2489f672","direction":"outgoing","index":143805,"result_id":"14b630de-b4b4-4ac5-975b-d96adf653e13","status":200,"timestamp":"2026-05-22T21:13:33.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"697a8946-bb29-47f6-a4b9-e422d9e9e201","direction":"outgoing","index":143806,"result_id":"14b630de-b4b4-4ac5-975b-d96adf653e13","status":200,"timestamp":"2026-05-22T21:13:33.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"d4cef126-2b33-4c60-8fd3-0be3375eeae9","direction":"outgoing","index":143807,"result_id":"14b630de-b4b4-4ac5-975b-d96adf653e13","status":200,"timestamp":"2026-05-22T21:13:33.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"aeb1ae21-a377-49b8-b3a8-c35eb23a047a","direction":"outgoing","index":143808,"result_id":"14b630de-b4b4-4ac5-975b-d96adf653e13","status":200,"timestamp":"2026-05-22T21:13:33.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"63a45676-922c-4640-b6e8-e33148b4a26e","direction":"outgoing","index":143809,"result_id":"14b630de-b4b4-4ac5-975b-d96adf653e13","status":200,"timestamp":"2026-05-22T21:13:33.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_screening_assessment-us_core_screening_assessment_category","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.006-04:00"},{"id":"b1e38bbd-db9f-4285-a032-b62880594fd4","created_at":"2026-05-22T21:13:33.088-04:00","inputs":[{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_v610_screening_assessment","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.088-04:00"},{"id":"360ae296-07b0-4aaf-a2c7-f7849d30feb6","created_at":"2026-05-22T21:13:33.097-04:00","inputs":[{"name":"dar_extension_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_extension","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.097-04:00"},{"id":"dcaa87f8-031d-4166-9e52-dff8d063c8bc","created_at":"2026-05-22T21:13:33.098-04:00","inputs":[{"name":"dar_code_found","value":"true","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason-us_core_311_data_absent_reason_code_system","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.098-04:00"},{"id":"d3a3856f-e20b-4ec8-9f87-5f2c7a70c4f2","created_at":"2026-05-22T21:13:33.099-04:00","inputs":[{"name":"dar_extension_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"dar_code_found","label":"Data Absent Reason Extension Found","description":null,"value":"true","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api-us_core_311_data_absent_reason","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.099-04:00"},{"id":"88041a03-0f58-479e-b215-b5a4f46c953c","created_at":"2026-05-22T21:13:33.110-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"smart_auth_info","label":"OAuth Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Patient.rs patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs patient/Condition.rs patient/Coverage.rs patient/Device.rs patient/DiagnosticReport.rs patient/DocumentReference.rs patient/Encounter.rs patient/Endpoint.rs patient/Goal.rs patient/Immunization.rs patient/Location.rs patient/Media.rs patient/Medication.rs patient/MedicationDispense.rs patient/MedicationRequest.rs patient/Observation.rs patient/Organization.rs patient/Practitioner.rs patient/PractitionerRole.rs patient/Procedure.rs patient/Provenance.rs patient/QuestionnaireResponse.rs patient/RelatedPerson.rs patient/ServiceRequest.rs patient/Specimen.rs\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"93f94aab-c859-4289-85fe-5b7f409d82bc\",\"refresh_token\":\"99bd5822-a268-4b4d-8010-f1e4a1891514\",\"issue_time\":\"2026-05-22T21:04:32-04:00\",\"expires_in\":3600,\"name\":\"smart_auth_info\"}","type":"auth_info"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"implantable_device_codes","label":"Implantable Device Type Code","description":"Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile","value":null,"type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_fhir_api","test_run_id":"1ad7f728-c40f-4dcb-97e3-c44265ca9029","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:33.110-04:00"},{"id":"6500ef42-c60c-4913-85df-4850cc881e43","created_at":"2026-05-22T21:13:34.418-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/6500ef42-c60c-4913-85df-4850cc881e43/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"4c0f3f23-8d39-4086-aaf1-e5e1f2446bff","direction":"outgoing","index":143810,"result_id":"6500ef42-c60c-4913-85df-4850cc881e43","status":200,"timestamp":"2026-05-22T21:13:34.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:34.418-04:00"},{"id":"a27c91e5-f173-40a3-a499-d7081efa3ddb","created_at":"2026-05-22T21:13:34.434-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/a27c91e5-f173-40a3-a499-d7081efa3ddb/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:34.434-04:00"},{"id":"01b82798-1b0d-4b03-80c7-a3d6fe3fa975","created_at":"2026-05-22T21:13:34.832-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_auth_tls","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:34.832-04:00"},{"id":"a286811b-3e38-428c-9fcd-d7ac2f08b7e8","created_at":"2026-05-22T21:13:34.862-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cencounter-diagnosis+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fcondition-category%7Chealth-concern+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Claboratory+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csocial-history\u0026state=9adb8be1-0e1b-4b06-bacc-e545ed3dbd85\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=8Ubl9X7DNr02becpJYrEtSALk9Z8UcXxpv9jOcvjX7A\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"standalone_state","type":"text","value":"9adb8be1-0e1b-4b06-bacc-e545ed3dbd85"},{"name":"pkce_code_verifier","type":"text","value":"619f43f7-cfa5-40b2-ae62-9dd2a7325f1e-683dae2b-0975-4db2-87a5-c9413fe7623a"},{"name":"pkce_code_challenge","type":"text","value":"8Ubl9X7DNr02becpJYrEtSALk9Z8UcXxpv9jOcvjX7A"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cencounter-diagnosis+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fcondition-category%7Chealth-concern+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Claboratory+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csocial-history\u0026state=9adb8be1-0e1b-4b06-bacc-e545ed3dbd85\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=8Ubl9X7DNr02becpJYrEtSALk9Z8UcXxpv9jOcvjX7A\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_app_redirect_stu2","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.180-04:00"},{"id":"78f76ac4-162d-4941-949b-9aba0d67cb22","created_at":"2026-05-22T21:13:40.213-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.213-04:00"},{"id":"1e2c9b93-1330-49bf-851a-beb5c700e1b4","created_at":"2026-05-22T21:13:40.259-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiY29kZUNoYWxsZW5nZSI6IjhVYmw5WDdETnIwMmJlY3BKWXJFdFNBTGs5WjhVY1h4cHY5ak9jdmpYN0EiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9"}],"requests":[{"id":"047d3437-541f-4e41-bf80-c33e0c873432","direction":"incoming","index":143811,"result_id":"a286811b-3e38-428c-9fcd-d7ac2f08b7e8","status":null,"timestamp":"2026-05-22T21:13:40.181-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiY29kZUNoYWxsZW5nZSI6IjhVYmw5WDdETnIwMmJlY3BKWXJFdFNBTGs5WjhVY1h4cHY5ak9jdmpYN0EiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9\u0026state=9adb8be1-0e1b-4b06-bacc-e545ed3dbd85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_code_received","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.259-04:00"},{"id":"01af2cec-4056-4281-b7b3-974e4d5433db","created_at":"2026-05-22T21:13:40.634-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_token_tls","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.634-04:00"},{"id":"58c71748-024b-4d07-888f-394c192cc55d","created_at":"2026-05-22T21:13:40.901-04:00","inputs":[{"name":"standalone_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiY29kZUNoYWxsZW5nZSI6IjhVYmw5WDdETnIwMmJlY3BKWXJFdFNBTGs5WjhVY1h4cHY5ak9jdmpYN0EiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9","type":"text"},{"name":"pkce_code_verifier","value":"619f43f7-cfa5-40b2-ae62-9dd2a7325f1e-683dae2b-0975-4db2-87a5-c9413fe7623a","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-05-22T21:13:40-04:00"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"047d3437-541f-4e41-bf80-c33e0c873432","direction":"incoming","index":143811,"result_id":"a286811b-3e38-428c-9fcd-d7ac2f08b7e8","status":null,"timestamp":"2026-05-22T21:13:40.181-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiY29kZUNoYWxsZW5nZSI6IjhVYmw5WDdETnIwMmJlY3BKWXJFdFNBTGs5WjhVY1h4cHY5ak9jdmpYN0EiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoiUzI1NiJ9\u0026state=9adb8be1-0e1b-4b06-bacc-e545ed3dbd85","verb":"get"},{"id":"c6dc5cb3-90ac-4bac-947d-3ebdd302ccc3","direction":"outgoing","index":143812,"result_id":"58c71748-024b-4d07-888f-394c192cc55d","status":200,"timestamp":"2026-05-22T21:13:40.903-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_exchange","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.901-04:00"},{"id":"68e375b9-824a-4c5d-b18b-77d07fbad892","created_at":"2026-05-22T21:13:40.919-04:00","inputs":[{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgyMCwiaWF0IjoxNzc5NDk4ODIwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.b9YQ0VKljaH97mCvdVHkzUZTs8QFoySdaHxNSvXCxacjAmmuDkzAoJueBwgVKYZaDvuEr1bqs1kNLFm3OHNiJmyZTNHV6Fssue0498JEyYUTBoQp9yMnyzmdwo57b65mBhKvJfwKYKjz9C5RffUB2sq-1_qFhjKphPqYKvgCli_2QZ-OZP3aQMuhRcDkx08R-NetLBOFpyiQbo3nrm7lg9nPsstMy9pc6rCQyAiMFXEZpncc1YPqwPYj5fm3PxKa5lK_qyhdcaHOXDMp6krA8FElapw53rFUCvWoopRenlw8Wc5ywsdJcEjf0mwMGiXm1k-tx9z4FQboHMHrSLiB2Q"},{"name":"standalone_refresh_token","type":"text","value":"143c656a-2cc8-45ce-88d6-5b2978f2adf8"},{"name":"standalone_access_token","type":"text","value":"69f95d87-1401-4840-b40a-ce701a5bceac"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_patient_id","type":"text","value":"85"},{"name":"standalone_encounter_id","type":"text","value":""},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history"},{"name":"standalone_intent","type":"text","value":""},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"c6dc5cb3-90ac-4bac-947d-3ebdd302ccc3","direction":"outgoing","index":143812,"result_id":"58c71748-024b-4d07-888f-394c192cc55d","status":200,"timestamp":"2026-05-22T21:13:40.903-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_body","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.919-04:00"},{"id":"e5a731f2-494c-45bd-843e-e33a07a9b755","created_at":"2026-05-22T21:13:40.922-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"c6dc5cb3-90ac-4bac-947d-3ebdd302ccc3","direction":"outgoing","index":143812,"result_id":"58c71748-024b-4d07-888f-394c192cc55d","status":200,"timestamp":"2026-05-22T21:13:40.903-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_headers","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.922-04:00"},{"id":"debf1756-edfd-4a94-b0e4-93ce8919c726","created_at":"2026-05-22T21:13:40.935-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-us_core_granted_granular_scopes","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.935-04:00"},{"id":"aed601e9-9022-490e-b6fd-f3887d1f3b5f","created_at":"2026-05-22T21:13:40.936-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.936-04:00"},{"id":"42867600-2acf-44fb-931b-13754fac9a37","created_at":"2026-05-22T21:13:40.945-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgyMCwiaWF0IjoxNzc5NDk4ODIwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.b9YQ0VKljaH97mCvdVHkzUZTs8QFoySdaHxNSvXCxacjAmmuDkzAoJueBwgVKYZaDvuEr1bqs1kNLFm3OHNiJmyZTNHV6Fssue0498JEyYUTBoQp9yMnyzmdwo57b65mBhKvJfwKYKjz9C5RffUB2sq-1_qFhjKphPqYKvgCli_2QZ-OZP3aQMuhRcDkx08R-NetLBOFpyiQbo3nrm7lg9nPsstMy9pc6rCQyAiMFXEZpncc1YPqwPYj5fm3PxKa5lK_qyhdcaHOXDMp6krA8FElapw53rFUCvWoopRenlw8Wc5ywsdJcEjf0mwMGiXm1k-tx9z4FQboHMHrSLiB2Q","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034820,\"iat\":1779498820,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:40.945-04:00"},{"id":"34992197-52ae-4aa2-8867-d1c22fe39f95","created_at":"2026-05-22T21:13:41.051-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034820,\"iat\":1779498820,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"8e8a9922-eb6b-4c86-9d95-f79906cf753e","direction":"outgoing","index":143813,"result_id":"34992197-52ae-4aa2-8867-d1c22fe39f95","status":200,"timestamp":"2026-05-22T21:13:41.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.051-04:00"},{"id":"0fdcd71a-d50f-444b-a032-22bb97c9a51e","created_at":"2026-05-22T21:13:41.064-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.064-04:00"},{"id":"a763e497-96fb-4797-9d1d-fb7a06c0b144","created_at":"2026-05-22T21:13:41.176-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"941831ba-c33e-484a-84b4-a25ba1c29e00","direction":"outgoing","index":143814,"result_id":"a763e497-96fb-4797-9d1d-fb7a06c0b144","status":200,"timestamp":"2026-05-22T21:13:41.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.176-04:00"},{"id":"4f717076-07ec-4424-bc04-5e865b5324ce","created_at":"2026-05-22T21:13:41.190-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.190-04:00"},{"id":"55fa035b-32e9-4bfa-8c55-f4ef44b39b7d","created_at":"2026-05-22T21:13:41.195-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgyMCwiaWF0IjoxNzc5NDk4ODIwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.b9YQ0VKljaH97mCvdVHkzUZTs8QFoySdaHxNSvXCxacjAmmuDkzAoJueBwgVKYZaDvuEr1bqs1kNLFm3OHNiJmyZTNHV6Fssue0498JEyYUTBoQp9yMnyzmdwo57b65mBhKvJfwKYKjz9C5RffUB2sq-1_qFhjKphPqYKvgCli_2QZ-OZP3aQMuhRcDkx08R-NetLBOFpyiQbo3nrm7lg9nPsstMy9pc6rCQyAiMFXEZpncc1YPqwPYj5fm3PxKa5lK_qyhdcaHOXDMp6krA8FElapw53rFUCvWoopRenlw8Wc5ywsdJcEjf0mwMGiXm1k-tx9z4FQboHMHrSLiB2Q","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.195-04:00"},{"id":"5ee46199-7552-48ee-890b-4a16571d0d41","created_at":"2026-05-22T21:13:41.315-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034820,\"iat\":1779498820,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"43dc8182-db29-47bc-8c80-d8c10670c437","direction":"outgoing","index":143815,"result_id":"5ee46199-7552-48ee-890b-4a16571d0d41","status":200,"timestamp":"2026-05-22T21:13:41.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.315-04:00"},{"id":"7f17438c-777c-4b01-8a9d-0bdf897da2bc","created_at":"2026-05-22T21:13:41.335-04:00","inputs":[{"name":"standalone_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgyMCwiaWF0IjoxNzc5NDk4ODIwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.b9YQ0VKljaH97mCvdVHkzUZTs8QFoySdaHxNSvXCxacjAmmuDkzAoJueBwgVKYZaDvuEr1bqs1kNLFm3OHNiJmyZTNHV6Fssue0498JEyYUTBoQp9yMnyzmdwo57b65mBhKvJfwKYKjz9C5RffUB2sq-1_qFhjKphPqYKvgCli_2QZ-OZP3aQMuhRcDkx08R-NetLBOFpyiQbo3nrm7lg9nPsstMy9pc6rCQyAiMFXEZpncc1YPqwPYj5fm3PxKa5lK_qyhdcaHOXDMp6krA8FElapw53rFUCvWoopRenlw8Wc5ywsdJcEjf0mwMGiXm1k-tx9z4FQboHMHrSLiB2Q","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.335-04:00"},{"id":"8632a326-739f-4243-9ce7-80049df5ce9c","created_at":"2026-05-22T21:13:41.443-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:13:41-04:00"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"682f61af-90d3-4568-a4f8-da9856acf8ef","direction":"outgoing","index":143816,"result_id":"8632a326-739f-4243-9ce7-80049df5ce9c","status":200,"timestamp":"2026-05-22T21:13:41.444-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.443-04:00"},{"id":"89d2de91-f38b-4d31-ab40-488238334d4b","created_at":"2026-05-22T21:13:41.462-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"35b63539-ff76-445a-bffb-5f122976bf94"},{"name":"access_token","type":"text","value":"684ac222-6cb2-4641-b4ee-a9a62934448b"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:13:41-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"682f61af-90d3-4568-a4f8-da9856acf8ef","direction":"outgoing","index":143816,"result_id":"8632a326-739f-4243-9ce7-80049df5ce9c","status":200,"timestamp":"2026-05-22T21:13:41.444-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.462-04:00"},{"id":"b31c210a-0290-4827-bb31-7fb0e483b249","created_at":"2026-05-22T21:13:41.465-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"682f61af-90d3-4568-a4f8-da9856acf8ef","direction":"outgoing","index":143816,"result_id":"8632a326-739f-4243-9ce7-80049df5ce9c","status":200,"timestamp":"2026-05-22T21:13:41.444-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.465-04:00"},{"id":"113e7039-1251-4fa7-bc18-bf39cba700a9","created_at":"2026-05-22T21:13:41.467-04:00","inputs":[{"name":"standalone_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"69f95d87-1401-4840-b40a-ce701a5bceac\",\"refresh_token\":\"143c656a-2cc8-45ce-88d6-5b2978f2adf8\",\"issue_time\":\"2026-05-22T21:13:40-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.467-04:00"},{"id":"1369191e-07f5-47fe-a442-75a474630b43","created_at":"2026-05-22T21:13:41.470-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_standalone_launch_stu2","test_run_id":"cb8ec1ee-4a9f-455a-bbd8-57c7801b7ecf","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:41.470-04:00"},{"id":"a91b6716-bcd3-44e9-878e-52940e18f76b","created_at":"2026-05-22T21:13:45.232-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/a91b6716-bcd3-44e9-878e-52940e18f76b/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"1ff5cdd6-8688-4a74-8201-f070cf7a870e","direction":"outgoing","index":143817,"result_id":"a91b6716-bcd3-44e9-878e-52940e18f76b","status":200,"timestamp":"2026-05-22T21:13:45.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:45.232-04:00"},{"id":"8766bf52-a85b-4126-8f78-804151897974","created_at":"2026-05-22T21:13:45.247-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/8766bf52-a85b-4126-8f78-804151897974/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:45.247-04:00"},{"id":"42075b9e-b3e8-4edc-9207-04ca2471b393","created_at":"2026-05-22T21:13:45.253-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"launch_uri","type":"text","value":"http://localhost:4567/custom/smart/launch"},{"name":"target_iss","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_launch","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:50.920-04:00"},{"id":"faf83be8-0cb3-492d-988d-166afd272d58","created_at":"2026-05-22T21:13:50.956-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_launch","type":"text","value":"85 cac22925-f852-4ed3-af57-50afe02288bd"}],"requests":[{"id":"a9abf47f-769a-44cb-bbfa-162c3788bd78","direction":"incoming","index":143818,"result_id":"42075b9e-b3e8-4edc-9207-04ca2471b393","status":null,"timestamp":"2026-05-22T21:13:50.921-04:00","url":"http://localhost:4567/custom/smart/launch?launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026iss=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_launch_received","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:50.956-04:00"},{"id":"9fac6491-5f4b-4aa3-8e7d-4da1746b08dc","created_at":"2026-05-22T21:13:51.316-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_auth_tls","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:51.316-04:00"},{"id":"8a6e775f-77a4-4bed-8330-7ba7fdffdddd","created_at":"2026-05-22T21:13:51.536-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"ehr_launch","value":"85 cac22925-f852-4ed3-af57-50afe02288bd","type":"text"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cencounter-diagnosis+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fcondition-category%7Chealth-concern+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Claboratory+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csocial-history\u0026state=49fa2e05-7a7f-4dfc-b0a7-ee8925381079\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=h2wWl0fOFs9sYBLEMq2e0b-LDph65Xdnf5mJCaqJqaU\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"ehr_state","type":"text","value":"49fa2e05-7a7f-4dfc-b0a7-ee8925381079"},{"name":"pkce_code_verifier","type":"text","value":"8da102eb-a058-47e2-92f0-84b186b1a254-f9311a45-1b66-49f9-bed3-1b8dcfff979f"},{"name":"pkce_code_challenge","type":"text","value":"h2wWl0fOFs9sYBLEMq2e0b-LDph65Xdnf5mJCaqJqaU"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cencounter-diagnosis+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fcondition-category%7Chealth-concern+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Claboratory+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csocial-history\u0026state=49fa2e05-7a7f-4dfc-b0a7-ee8925381079\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=h2wWl0fOFs9sYBLEMq2e0b-LDph65Xdnf5mJCaqJqaU\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_redirect_stu2","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.260-04:00"},{"id":"b0415667-2007-4120-8972-0cc9a8fb6d72","created_at":"2026-05-22T21:13:55.287-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.287-04:00"},{"id":"dcc96471-f185-4a16-827a-8ffd37ef803f","created_at":"2026-05-22T21:13:55.296-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiJjYWMyMjkyNS1mODUyLTRlZDMtYWY1Ny01MGFmZTAyMjg4YmQiLCJjb2RlQ2hhbGxlbmdlIjoiaDJ3V2wwZk9GczlzWUJMRU1xMmUwYi1MRHBoNjVYZG5mNW1KQ2FxSnFhVSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0="}],"requests":[{"id":"d2003ecd-b3ea-48de-9c4a-d245d47eedd2","direction":"incoming","index":143819,"result_id":"8a6e775f-77a4-4bed-8330-7ba7fdffdddd","status":null,"timestamp":"2026-05-22T21:13:55.260-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiJjYWMyMjkyNS1mODUyLTRlZDMtYWY1Ny01MGFmZTAyMjg4YmQiLCJjb2RlQ2hhbGxlbmdlIjoiaDJ3V2wwZk9GczlzWUJMRU1xMmUwYi1MRHBoNjVYZG5mNW1KQ2FxSnFhVSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=\u0026state=49fa2e05-7a7f-4dfc-b0a7-ee8925381079","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_code_received","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.296-04:00"},{"id":"534ec233-e5a0-43d3-a1f5-3fae8ec7f854","created_at":"2026-05-22T21:13:55.653-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_token_tls","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.653-04:00"},{"id":"4bd7c618-bf35-4eca-8123-e38e6bfa1f26","created_at":"2026-05-22T21:13:55.778-04:00","inputs":[{"name":"ehr_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiJjYWMyMjkyNS1mODUyLTRlZDMtYWY1Ny01MGFmZTAyMjg4YmQiLCJjb2RlQ2hhbGxlbmdlIjoiaDJ3V2wwZk9GczlzWUJMRU1xMmUwYi1MRHBoNjVYZG5mNW1KQ2FxSnFhVSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=","type":"text"},{"name":"pkce_code_verifier","value":"8da102eb-a058-47e2-92f0-84b186b1a254-f9311a45-1b66-49f9-bed3-1b8dcfff979f","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-05-22T21:13:55-04:00"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"d2003ecd-b3ea-48de-9c4a-d245d47eedd2","direction":"incoming","index":143819,"result_id":"8a6e775f-77a4-4bed-8330-7ba7fdffdddd","status":null,"timestamp":"2026-05-22T21:13:55.260-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8ZW5jb3VudGVyLWRpYWdub3NpcyBwYXRpZW50L0NvbmRpdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8aGVhbHRoLWNvbmNlcm4gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fGxhYm9yYXRvcnkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHNvY2lhbC1oaXN0b3J5ICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiJjYWMyMjkyNS1mODUyLTRlZDMtYWY1Ny01MGFmZTAyMjg4YmQiLCJjb2RlQ2hhbGxlbmdlIjoiaDJ3V2wwZk9GczlzWUJMRU1xMmUwYi1MRHBoNjVYZG5mNW1KQ2FxSnFhVSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=\u0026state=49fa2e05-7a7f-4dfc-b0a7-ee8925381079","verb":"get"},{"id":"c2199e8c-d9ac-4da5-9870-d38711a35838","direction":"outgoing","index":143820,"result_id":"4bd7c618-bf35-4eca-8123-e38e6bfa1f26","status":200,"timestamp":"2026-05-22T21:13:55.781-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_exchange","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.778-04:00"},{"id":"ae55218c-2a5d-441b-9046-1f92b74e43cf","created_at":"2026-05-22T21:13:55.796-04:00","inputs":[{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgzNSwiaWF0IjoxNzc5NDk4ODM1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.R8Uy8j54_gubxoW52n3guGVBn7txNQaY5jzvuSh1x0N3cfTL-LptYdSKtWTqgo1h1Z6ZwEqiKBAFdTIDAP4IRm-uymjWiKt8UTTXEPt8Q7Cf_CM5pNXXbs66nBaYssG0b9ErP9SH-jfrgSLe1M4WLjvSxRKUVvh9u4AvLL88NILqhjAVxoLXl29TFp-_2tPgzg0Nr-qX86_sfWr7KDrxsaaING-xHVDXZKuLChcFQGkuqiIVNPdqwUKTnH9or-kqGF1YxO57TF-4--UEvD9eOBtvzbQv0fmTujNBq0OQHtHPNVMNf_-pqHriElaEYcpNbAb1TKxfuta1kpxblv0EIg"},{"name":"ehr_refresh_token","type":"text","value":"ba6edd64-99e3-47ae-926d-f209a1f26d57"},{"name":"ehr_access_token","type":"text","value":"b55f5ece-66bf-438b-9fd0-988d1e3606fa"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_patient_id","type":"text","value":"85"},{"name":"ehr_encounter_id","type":"text","value":""},{"name":"ehr_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history"},{"name":"ehr_intent","type":"text","value":""},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"c2199e8c-d9ac-4da5-9870-d38711a35838","direction":"outgoing","index":143820,"result_id":"4bd7c618-bf35-4eca-8123-e38e6bfa1f26","status":200,"timestamp":"2026-05-22T21:13:55.781-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_body","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.796-04:00"},{"id":"6a22e5de-8bc8-4836-a1fd-e5c903dd53fa","created_at":"2026-05-22T21:13:55.799-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"c2199e8c-d9ac-4da5-9870-d38711a35838","direction":"outgoing","index":143820,"result_id":"4bd7c618-bf35-4eca-8123-e38e6bfa1f26","status":200,"timestamp":"2026-05-22T21:13:55.781-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_headers","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.799-04:00"},{"id":"0f82cfaa-c600-41fa-a4fb-9fa8d779ad29","created_at":"2026-05-22T21:13:55.801-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-us_core_granted_granular_scopes","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.801-04:00"},{"id":"05911100-e73d-4565-8361-dda9a2531137","created_at":"2026-05-22T21:13:55.803-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.803-04:00"},{"id":"450a1b85-8381-49f5-bd82-d5acd21d5dac","created_at":"2026-05-22T21:13:55.809-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.809-04:00"},{"id":"b1046abb-bb5f-4b06-a6d0-2534efb745c2","created_at":"2026-05-22T21:13:55.813-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgzNSwiaWF0IjoxNzc5NDk4ODM1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.R8Uy8j54_gubxoW52n3guGVBn7txNQaY5jzvuSh1x0N3cfTL-LptYdSKtWTqgo1h1Z6ZwEqiKBAFdTIDAP4IRm-uymjWiKt8UTTXEPt8Q7Cf_CM5pNXXbs66nBaYssG0b9ErP9SH-jfrgSLe1M4WLjvSxRKUVvh9u4AvLL88NILqhjAVxoLXl29TFp-_2tPgzg0Nr-qX86_sfWr7KDrxsaaING-xHVDXZKuLChcFQGkuqiIVNPdqwUKTnH9or-kqGF1YxO57TF-4--UEvD9eOBtvzbQv0fmTujNBq0OQHtHPNVMNf_-pqHriElaEYcpNbAb1TKxfuta1kpxblv0EIg","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034835,\"iat\":1779498835,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.813-04:00"},{"id":"74a49897-509e-433e-b2b2-9280c8381c88","created_at":"2026-05-22T21:13:55.915-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034835,\"iat\":1779498835,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"73578482-0d69-4410-a9cd-e5595875e613","direction":"outgoing","index":143821,"result_id":"74a49897-509e-433e-b2b2-9280c8381c88","status":200,"timestamp":"2026-05-22T21:13:55.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.915-04:00"},{"id":"70924268-2a3e-4396-837e-633b8cbda896","created_at":"2026-05-22T21:13:55.928-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:55.928-04:00"},{"id":"53222882-8705-44b5-ab34-42573a5df6d1","created_at":"2026-05-22T21:13:56.035-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"96034939-1881-4dfa-870b-856869a7e3c2","direction":"outgoing","index":143822,"result_id":"53222882-8705-44b5-ab34-42573a5df6d1","status":200,"timestamp":"2026-05-22T21:13:56.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.035-04:00"},{"id":"ec972a52-74a0-4440-94e0-3e23994741c5","created_at":"2026-05-22T21:13:56.055-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.055-04:00"},{"id":"1acf39b0-4a34-4fd3-bc6c-aec78df096e8","created_at":"2026-05-22T21:13:56.064-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgzNSwiaWF0IjoxNzc5NDk4ODM1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.R8Uy8j54_gubxoW52n3guGVBn7txNQaY5jzvuSh1x0N3cfTL-LptYdSKtWTqgo1h1Z6ZwEqiKBAFdTIDAP4IRm-uymjWiKt8UTTXEPt8Q7Cf_CM5pNXXbs66nBaYssG0b9ErP9SH-jfrgSLe1M4WLjvSxRKUVvh9u4AvLL88NILqhjAVxoLXl29TFp-_2tPgzg0Nr-qX86_sfWr7KDrxsaaING-xHVDXZKuLChcFQGkuqiIVNPdqwUKTnH9or-kqGF1YxO57TF-4--UEvD9eOBtvzbQv0fmTujNBq0OQHtHPNVMNf_-pqHriElaEYcpNbAb1TKxfuta1kpxblv0EIg","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.064-04:00"},{"id":"12b30bd7-227d-4fec-b946-e5d6daadcb2f","created_at":"2026-05-22T21:13:56.195-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811034835,\"iat\":1779498835,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"19112f5b-bf33-45d5-8380-b0bf929a2b00","direction":"outgoing","index":143823,"result_id":"12b30bd7-227d-4fec-b946-e5d6daadcb2f","status":200,"timestamp":"2026-05-22T21:13:56.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.195-04:00"},{"id":"93b8b10f-c552-4859-8a0a-4124396f3c41","created_at":"2026-05-22T21:13:56.214-04:00","inputs":[{"name":"ehr_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNDgzNSwiaWF0IjoxNzc5NDk4ODM1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.R8Uy8j54_gubxoW52n3guGVBn7txNQaY5jzvuSh1x0N3cfTL-LptYdSKtWTqgo1h1Z6ZwEqiKBAFdTIDAP4IRm-uymjWiKt8UTTXEPt8Q7Cf_CM5pNXXbs66nBaYssG0b9ErP9SH-jfrgSLe1M4WLjvSxRKUVvh9u4AvLL88NILqhjAVxoLXl29TFp-_2tPgzg0Nr-qX86_sfWr7KDrxsaaING-xHVDXZKuLChcFQGkuqiIVNPdqwUKTnH9or-kqGF1YxO57TF-4--UEvD9eOBtvzbQv0fmTujNBq0OQHtHPNVMNf_-pqHriElaEYcpNbAb1TKxfuta1kpxblv0EIg","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.214-04:00"},{"id":"347081ec-d338-4d16-a3bf-f23f5f127172","created_at":"2026-05-22T21:13:56.328-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:13:56-04:00"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"350220eb-e87a-481c-8bbc-b071da9a26ed","direction":"outgoing","index":143824,"result_id":"347081ec-d338-4d16-a3bf-f23f5f127172","status":200,"timestamp":"2026-05-22T21:13:56.329-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.328-04:00"},{"id":"1172f0d5-a0dc-4d93-902b-9b6759008c1e","created_at":"2026-05-22T21:13:56.343-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33"},{"name":"access_token","type":"text","value":"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:13:56-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history"},{"name":"granular_scopes_1_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}"}],"requests":[{"id":"350220eb-e87a-481c-8bbc-b071da9a26ed","direction":"outgoing","index":143824,"result_id":"347081ec-d338-4d16-a3bf-f23f5f127172","status":200,"timestamp":"2026-05-22T21:13:56.329-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.343-04:00"},{"id":"b8e864b1-8089-4ebd-becf-82bb40afe6da","created_at":"2026-05-22T21:13:56.347-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"350220eb-e87a-481c-8bbc-b071da9a26ed","direction":"outgoing","index":143824,"result_id":"347081ec-d338-4d16-a3bf-f23f5f127172","status":200,"timestamp":"2026-05-22T21:13:56.329-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.347-04:00"},{"id":"651fcde8-eb5e-4275-a833-7bc38f7ebd35","created_at":"2026-05-22T21:13:56.349-04:00","inputs":[{"name":"ehr_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"b55f5ece-66bf-438b-9fd0-988d1e3606fa\",\"refresh_token\":\"ba6edd64-99e3-47ae-926d-f209a1f26d57\",\"issue_time\":\"2026-05-22T21:13:55-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.349-04:00"},{"id":"4a73fc55-2baf-4c72-ae1d-4c73dcb40d68","created_at":"2026-05-22T21:13:56.351-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_1_auth_info","label":"Granular Scopes 1 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"684ac222-6cb2-4641-b4ee-a9a62934448b\",\"refresh_token\":\"35b63539-ff76-445a-bffb-5f122976bf94\",\"issue_time\":\"2026-05-22T21:13:41-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-Group01-us_core_smart_ehr_launch_stu2","test_run_id":"b5ab1474-dd2f-43f0-8c20-13e1b35fd65c","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:13:56.351-04:00"},{"id":"ffba5214-6104-494e-942a-d0978c2e993e","created_at":"2026-05-22T21:14:03.114-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"fe2db488-7bad-4d57-a0df-efb60bb57d68","direction":"outgoing","index":141977,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b70e0d34-fb85-43e9-87b0-988d1f4b5af5","direction":"outgoing","index":141978,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8adaa43a-f744-48fc-9029-8ac05d0db5c2","direction":"outgoing","index":141981,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"0b8f0eed-4e4e-45e2-8b33-907eea2dbbbd","direction":"outgoing","index":141982,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b736de7-c029-4941-9a25-ee9f128fb7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb240da-e95a-45fa-8e41-4ac4c4a0158d","direction":"outgoing","index":141983,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"fea155a9-6a7b-4e09-a493-ff85f70acbd7","direction":"outgoing","index":141984,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a2c6a2-af34-4878-99a4-861b9ad48f5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c2bf07-11b2-4fa4-a57f-1720eceb39fe","direction":"outgoing","index":141985,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"64f7fced-f070-4007-9abb-e8cb2213082f","direction":"outgoing","index":141986,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fd84ce6-9675-417a-8d81-7a6f3d2efc94","direction":"outgoing","index":141987,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dd99a78-596e-4428-a702-8173ec63a55f","direction":"outgoing","index":141988,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"c67a7836-6852-44c0-8dfc-5c09de709ac1","direction":"outgoing","index":142048,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"bc9a20af-3297-43ad-8c06-dc84ed6c426a","direction":"outgoing","index":142049,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"de9393f8-ff98-4e55-a055-9fb31c57b240","direction":"outgoing","index":142050,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"8a3c808a-8d32-41b3-997f-be8b622bc978","direction":"outgoing","index":142052,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"2021775a-acf4-4690-ac04-1a3c8d93f742","direction":"outgoing","index":142053,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"a0960115-fa0f-49d8-91b7-07716ac1b274","direction":"outgoing","index":142054,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a1678bf1-b514-43cd-8c27-754c47de40d7","direction":"outgoing","index":142055,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"0e25f673-8444-4a42-abda-c0c3d674cb86","direction":"outgoing","index":142056,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"},{"id":"3cc6f3eb-b9f4-4f22-aead-f3a85a38cae7","direction":"outgoing","index":143825,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"7547eff6-c403-4a5c-8da2-056405794f50","direction":"outgoing","index":143826,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=388a0784-fd44-4f34-a7b3-8c58759b4882\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c4b4b20b-9368-4d80-a770-433c92d9693a","direction":"outgoing","index":143827,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"22a41b86-1982-43c1-ad67-58f9ef7cd433","direction":"outgoing","index":143828,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fa2a38ea-b7df-4f67-a518-0e8976ba191f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"43c94258-a661-4925-af72-d6d07b7deaa5","direction":"outgoing","index":143829,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"40a34ff6-5193-456b-ac60-b43903eced49","direction":"outgoing","index":143830,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c4789088-df24-4a17-940b-10f21c83785c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"567d8c77-cc27-45d8-8666-204765417415","direction":"outgoing","index":143831,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"017661fb-9d46-484e-97f6-05d43748a1c8","direction":"outgoing","index":143832,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88b49edc-e1f4-4a06-ba99-94040279e9c4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"69b4c57b-9a70-41d7-b474-b591e93117a3","direction":"outgoing","index":143833,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88b49edc-e1f4-4a06-ba99-94040279e9c4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dee3aa76-946d-4673-90ba-a9152981a90e","direction":"outgoing","index":143834,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"d5df63ac-230b-46f2-86bb-9b4f04f2416a","direction":"outgoing","index":143835,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"90a69b4e-6c2e-4df2-8c4e-3d359f3ecacb","direction":"outgoing","index":143836,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"e8368942-4468-4a30-8b53-04b33846876f","direction":"outgoing","index":143837,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"5d2e3864-5bea-4da9-a943-6836bafed130","direction":"outgoing","index":143838,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"552d8f95-00e4-4d12-a38e-8a84e8906668","direction":"outgoing","index":143839,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"affed5d6-e9f1-4bc6-8f6b-3ab9d6279bcf","direction":"outgoing","index":143840,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a9946828-1062-4406-b9f5-c719db0985dd","direction":"outgoing","index":143841,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"f09625fb-2ed7-4682-b2b3-1f30d5a91bf1","direction":"outgoing","index":143842,"result_id":"ffba5214-6104-494e-942a-d0978c2e993e","status":200,"timestamp":"2026-05-22T21:14:03.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_category_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:03.114-04:00"},{"id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","created_at":"2026-05-22T21:14:05.699-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"7515ea90-92dd-43cd-ab2e-e5772efcd7fe","direction":"outgoing","index":141989,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"7a6cb487-bf0a-4879-8e57-6331a1f76731","direction":"outgoing","index":141990,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc4adcaa-9fc7-4c11-aa79-7c05d5974623","direction":"outgoing","index":141991,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"d6743b28-14ea-49bc-8638-9b84e1cdad69","direction":"outgoing","index":141992,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e351070-62fb-4cab-b90f-869d03f29ed4","direction":"outgoing","index":141993,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13b72625-5001-4bda-b8af-fd3254452a81","direction":"outgoing","index":141994,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a53376f5-20cf-43a8-a28d-7cea03db5be3","direction":"outgoing","index":141995,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"b53bd588-39fd-4789-9781-1ddd3f5fcfe1","direction":"outgoing","index":142057,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"0de289ae-a788-4b6f-bc26-bead5f1275d3","direction":"outgoing","index":142058,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd21f4c4-8282-4ee6-b5ba-5204127a8519","direction":"outgoing","index":142059,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"804a5d89-82a8-48d2-a2cd-abeb6f33fc74","direction":"outgoing","index":142060,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ff5046f-506a-4fc9-be87-9c6a9965e799","direction":"outgoing","index":142061,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a97b7f98-6b90-427a-b11b-e688d724c1f5","direction":"outgoing","index":142062,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9a68b82c-6478-4090-9b80-df4a404bc9de","direction":"outgoing","index":142063,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"d0e389ea-587f-4367-b506-ac76d33235b7","direction":"outgoing","index":143843,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"74fceffb-ae9a-4e1f-a5ed-1f39a158e825","direction":"outgoing","index":143844,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29daf535-1d1b-4d8e-8606-73c9c77e9796\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3ee44036-3569-4843-b901-ae7dd0299e4d","direction":"outgoing","index":143845,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"a1684cc2-382c-4d61-b55e-df8c210a3f7a","direction":"outgoing","index":143846,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.768-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f4864f9-ee28-46f1-8613-8a4e43d9cb44\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b92116d5-80b2-4a8c-b98f-741c061c64c3","direction":"outgoing","index":143847,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f4864f9-ee28-46f1-8613-8a4e43d9cb44\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90d9a5de-4509-46cd-b443-2a35dc50700b","direction":"outgoing","index":143848,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"41bcf2c2-79bd-4a9d-b4ef-fc50809e1ba7","direction":"outgoing","index":143849,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"7aba1a04-105b-49cb-97b4-4cc752951401","direction":"outgoing","index":143850,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29daf535-1d1b-4d8e-8606-73c9c77e9796\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18e86761-84e5-479f-9e3b-1cc03ad3ffca","direction":"outgoing","index":143851,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"2ddc221f-7adf-4826-a8f3-d5eb8030b288","direction":"outgoing","index":143852,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f4864f9-ee28-46f1-8613-8a4e43d9cb44\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5c599c7-edae-46e3-b148-492e4717c213","direction":"outgoing","index":143853,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f4864f9-ee28-46f1-8613-8a4e43d9cb44\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7518bdaf-7270-4c72-b31f-3ed18f9353fd","direction":"outgoing","index":143854,"result_id":"5fbde3ee-747a-41b4-ac4c-a4b60fee5da3","status":200,"timestamp":"2026-05-22T21:14:05.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:05.699-04:00"},{"id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","created_at":"2026-05-22T21:14:09.792-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"7b624b98-b115-46b1-91cc-712c44cf1d48","direction":"outgoing","index":141996,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"7dbb7458-0112-42e1-ab4a-a45c1857fb6d","direction":"outgoing","index":141997,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c5840fe3-e371-4316-a92d-801f51ec26c8","direction":"outgoing","index":141998,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccaf1278-7b7a-4a60-92bb-0f83b24d2e5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"480c788b-9ade-4fce-afc8-6b2947c9c859","direction":"outgoing","index":141999,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c0759d02-85ba-4287-b480-bf9b9312cd01","direction":"outgoing","index":142000,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cff6ea9a-8a17-4278-aa71-eba2e41df0c3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87adc814-45b1-4606-beaa-fc02d4bdefba","direction":"outgoing","index":142001,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"5990a97a-d962-41e6-9ba6-36bb4ec06a92","direction":"outgoing","index":142002,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"ff6a0751-f8c0-4d6c-bfb7-a1913384a837","direction":"outgoing","index":142003,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"},{"id":"dbd1769a-9272-450a-b241-3a2d7c294fd7","direction":"outgoing","index":142064,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"b7c39ab5-de0e-449c-846a-7e0da463479d","direction":"outgoing","index":142065,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"51aa1216-6cc4-493f-b52e-b43a93038b12","direction":"outgoing","index":142066,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"0dd8b0e3-b549-4385-9926-9b93c545fbf8","direction":"outgoing","index":142067,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"aad67e2e-3f63-420b-9226-57cce0916688","direction":"outgoing","index":142068,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50861fdb-d10c-488e-8cd0-73562297d4b5","direction":"outgoing","index":142069,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"631709b7-e254-4aeb-a94a-35b9d77b2c2c","direction":"outgoing","index":142070,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"c64427b3-d770-4590-8171-50bec2d5bd11","direction":"outgoing","index":142071,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fbdd4f6-d801-46e9-82b7-651efd633353","direction":"outgoing","index":142072,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f635682d-2be0-489c-95cc-f977f2db6791","direction":"outgoing","index":143855,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"0b59a227-1c06-416b-986e-fdb7d3cafd98","direction":"outgoing","index":143856,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"07c70779-9eb2-4339-8108-55bd92501c1c","direction":"outgoing","index":143857,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6b518282-8d19-4501-98c8-1e9338bf54a7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c99f249f-9f65-43c0-9155-00ef290c9248","direction":"outgoing","index":143858,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"d59305ae-a910-4452-8ef0-fc21a596f918","direction":"outgoing","index":143859,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.874-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7679d072-6eb4-4156-8179-f733c28dc91f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b419c2e-6e38-4698-a359-84fc299c8c67","direction":"outgoing","index":143860,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"d0311ad8-cbd2-4c21-8415-512871eabd4a","direction":"outgoing","index":143861,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"a9765055-0965-4854-a32f-76b74c2a879d","direction":"outgoing","index":143862,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"},{"id":"6a9ee271-43be-4a61-83cd-9d403b510fa9","direction":"outgoing","index":143863,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"42309364-035d-4e13-959d-b8204513c941","direction":"outgoing","index":143864,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"fc8457c2-f432-4cd3-8c43-1c7fffca19ca","direction":"outgoing","index":143865,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"dc15cd8f-7a0c-4025-8359-3dde92282a70","direction":"outgoing","index":143866,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:09.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"25319a55-bd16-4ccb-9609-e7abc5d7a412","direction":"outgoing","index":143867,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:10.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fa229d-3e88-4042-975a-2ccc262fb98d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0ef844f-25ec-4f77-92cc-b105b707683f","direction":"outgoing","index":143868,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:10.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d3fa229d-3e88-4042-975a-2ccc262fb98d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e2b7dd6d-15e4-47f9-9648-477ba89b0099","direction":"outgoing","index":143869,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:10.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"ad30848d-d4e0-4f74-b8db-6a9ab50a678a","direction":"outgoing","index":143870,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:10.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ee60149-ffff-4a46-b933-f594f5c612a2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a0d4680-d0c4-4d3d-abdc-29962d4056e0","direction":"outgoing","index":143871,"result_id":"888120e5-5b44-4af3-9afd-6870f5f8ef47","status":200,"timestamp":"2026-05-22T21:14:10.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4ee60149-ffff-4a46-b933-f594f5c612a2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_recorded_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:09.792-04:00"},{"id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","created_at":"2026-05-22T21:14:10.819-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"e2a3a3b1-3885-4a39-970f-9c3a3c8be983","direction":"outgoing","index":142073,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"f9ff5f70-c04b-48a1-87db-58acaba3ab0b","direction":"outgoing","index":142074,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"37eacfac-1fe8-4b9e-a4cc-93d8cc2afd45","direction":"outgoing","index":142075,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"7033828d-b9f3-4179-9908-50b7d19fcaf4","direction":"outgoing","index":142076,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e4a068a4-d054-4260-9404-c700536f8db4","direction":"outgoing","index":142077,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"c0fa244c-0184-4d36-8044-196af2852e09","direction":"outgoing","index":143872,"result_id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","status":200,"timestamp":"2026-05-22T21:14:10.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"a0eed25a-7141-404f-8439-16c18bd9bee6","direction":"outgoing","index":143873,"result_id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","status":200,"timestamp":"2026-05-22T21:14:10.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"a3b0acb0-1480-40ec-966e-de3d8fc70fb8","direction":"outgoing","index":143874,"result_id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","status":200,"timestamp":"2026-05-22T21:14:10.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0a582d04-0a3c-44c0-8b3d-e4d6da98ae02","direction":"outgoing","index":143875,"result_id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","status":200,"timestamp":"2026-05-22T21:14:10.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0e0c4551-8434-4264-b6e9-c562584e1d88","direction":"outgoing","index":143876,"result_id":"fe058cf4-8800-4dd1-ae93-48c0eef2748a","status":200,"timestamp":"2026-05-22T21:14:10.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_asserted_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:10.819-04:00"},{"id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","created_at":"2026-05-22T21:14:13.219-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"fba58db2-a383-46e8-9df3-8300854191d2","direction":"outgoing","index":142004,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"fdd033a5-9825-442a-9200-cc187af09ee9","direction":"outgoing","index":142005,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2041af2d-4703-45ae-a519-3aaa5c843922\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d92f61e4-ef25-442c-a731-18cd82956bb8","direction":"outgoing","index":142006,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"61b43448-3645-4292-9690-9214276bdd20","direction":"outgoing","index":142007,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2c4f8755-3892-430e-9dd5-fdb5a4e511ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea2842b4-7e33-4add-9021-922086285161","direction":"outgoing","index":142008,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"75b399aa-4914-473c-8e7f-bacb0a112de5","direction":"outgoing","index":142009,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db86eb51-57a0-4f26-b059-1f565c7221fb","direction":"outgoing","index":142010,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38738fde-bc49-4774-bbb0-125915897b27","direction":"outgoing","index":142078,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"318c2b8d-e45b-4cce-9b43-68bc3efa62c1","direction":"outgoing","index":142079,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"1f30f62f-fd5f-4790-af22-5f29041a41d2","direction":"outgoing","index":143877,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"c37f9a57-5668-4fa6-b35a-0f7821009c2b","direction":"outgoing","index":143878,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b6f70b26-5c58-4a94-9e81-18f2c075c403\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7b6622ae-5e24-4c11-a00a-741daa397171","direction":"outgoing","index":143879,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"7208eb8a-6629-4458-ae7e-dffd528584cc","direction":"outgoing","index":143880,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7bff1f96-8b84-4282-a266-05b08809bc87\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"108736f2-d3fb-4634-8077-9d273526d56d","direction":"outgoing","index":143881,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"2000e283-fc66-429d-8f07-c713ba4eb4e9","direction":"outgoing","index":143882,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fe058cb-3f1e-4a0d-bf2d-8c0359e151b1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ba0f9a4-3c51-47c3-bbdb-45726d66e258","direction":"outgoing","index":143883,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fe058cb-3f1e-4a0d-bf2d-8c0359e151b1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45dfb478-67d0-4e48-9575-d77cfbfec9b3","direction":"outgoing","index":143884,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.341-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"90160d39-c5f4-43ba-96c6-8ffd903f687d","direction":"outgoing","index":143885,"result_id":"120b2383-e95c-47b3-96f2-8c8dee91d9ef","status":200,"timestamp":"2026-05-22T21:14:13.352-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_category_clinical_status_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:13.219-04:00"},{"id":"94821d11-5149-4951-a07b-86971b31573f","created_at":"2026-05-22T21:14:17.149-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"b7ec9f63-18ab-4fa2-9609-5e8266fecf88","direction":"outgoing","index":142011,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7fcd5c4b-1c9d-40c6-bc40-5fa9b6b67910","direction":"outgoing","index":142012,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"16cb25a1-e22b-4e54-8737-d05a1c3b3964","direction":"outgoing","index":142013,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=faa0bf4f-3ee1-427e-8a14-e8ab90035551\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"303d412a-5f02-4ed4-8433-113b82fdef4b","direction":"outgoing","index":142014,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"6f5bba5b-af5f-4c70-afff-0da53be81c2d","direction":"outgoing","index":142015,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9248228f-7f91-4240-8319-a7f579a3a917\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e731a25-7357-4a59-af86-b7bbeaa264e5","direction":"outgoing","index":142016,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"cadb1dca-71ee-4157-a93e-a4b8a98b2a54","direction":"outgoing","index":142017,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"fc4db21d-a586-45a6-950c-c801f8609327","direction":"outgoing","index":142018,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c10696c6-0320-418a-87c7-5fb4594469f8","direction":"outgoing","index":142080,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b15ae07-9f72-441c-93e1-25ffa4997d64","direction":"outgoing","index":142081,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"03eb08c0-5c8c-4484-aa2d-1dde8be4426f","direction":"outgoing","index":142082,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"650a79dd-a6e9-4adb-9f33-704f2cda7d53","direction":"outgoing","index":142083,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"364cd213-484a-40f7-a160-65b91cb9738a","direction":"outgoing","index":142084,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26f93c4b-7bb0-44ff-bba3-6787dff3b3ae","direction":"outgoing","index":142085,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f8785f1-17dd-4860-92e9-d5e6f603d4e1","direction":"outgoing","index":142086,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"68c46253-9124-472f-bd2f-a36f9ca85dba","direction":"outgoing","index":142087,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f6e0ff7-b283-4b75-b91d-2b6f2bd6e796","direction":"outgoing","index":142088,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75db7a1e-8bc1-4f87-96b7-4b0cc93829b9","direction":"outgoing","index":143886,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"21757bff-faf1-4f26-bba9-ad76ff225fb0","direction":"outgoing","index":143887,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"cc0aa663-65ed-4112-8687-d2060e5e0438","direction":"outgoing","index":143888,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=05b44eb7-2c1d-48b9-97e5-f5278e3b29b4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"650d701a-bf8b-48f3-9b5c-b3bb57baf05a","direction":"outgoing","index":143889,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"3fb5e3b9-e4ed-43d3-be0d-2bc3080116d1","direction":"outgoing","index":143890,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e5f3680f-04ad-4891-b0a4-7b4792918efa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"585dacc2-e1cf-4a8a-ab0a-f3596cda19a7","direction":"outgoing","index":143891,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"e2fbf10b-64f3-4f9b-92ae-322973f689a1","direction":"outgoing","index":143892,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"afda2db4-259a-4db2-8965-cbb7747e5c29","direction":"outgoing","index":143893,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"cd810cd8-e826-4b3f-925f-9e4f332f7e7e","direction":"outgoing","index":143894,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"08eabdd2-ead9-4e2e-9848-5b18abea3e77","direction":"outgoing","index":143895,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"dbaa3942-7d68-4d01-925c-fc1ad9128b26","direction":"outgoing","index":143896,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5255f88d-29e0-4ba3-90af-df28d59078ac","direction":"outgoing","index":143897,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"d991e393-dc9a-449d-bb28-48735266fc78","direction":"outgoing","index":143898,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d0e2600-6727-4522-9772-6f50ffb7cb3d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"55ddc289-20ee-4624-9e11-784d2a953e52","direction":"outgoing","index":143899,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d0e2600-6727-4522-9772-6f50ffb7cb3d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3f2bd67-aca7-46f3-9c49-010b0ac2e59d","direction":"outgoing","index":143900,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"ef078a01-9c35-438d-8bb4-646e2c612be4","direction":"outgoing","index":143901,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a47fde65-3da6-42f1-8cfc-c039ba967254\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca2fef33-7ef1-45a1-8eb3-7f50af01c727","direction":"outgoing","index":143902,"result_id":"94821d11-5149-4951-a07b-86971b31573f","status":200,"timestamp":"2026-05-22T21:14:17.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a47fde65-3da6-42f1-8cfc-c039ba967254\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_onset_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:17.149-04:00"},{"id":"82857070-0817-4ebc-8036-01756770ec35","created_at":"2026-05-22T21:14:20.475-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"c1ab64d4-2909-4f7f-8025-4fc0d069fbdd","direction":"outgoing","index":142019,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"475753a0-9ca3-4536-b2e8-d947ce9c226f","direction":"outgoing","index":142020,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"3e6d28b2-0d82-47a6-9195-4d4fd70897da","direction":"outgoing","index":142021,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0734047-36ec-400f-a5ae-545cedb8bfba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5274fdae-123e-4ff7-85c6-606a97bbad32","direction":"outgoing","index":142022,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"bcec1dc4-c8f1-49c8-872c-ccaa3577d544","direction":"outgoing","index":142023,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1513088c-90f3-4e42-8b84-f4cac466c6ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"653ad080-1cdb-4122-bef6-6e3b2357b497","direction":"outgoing","index":142024,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2f1120cb-9f53-4695-9c48-171247557112","direction":"outgoing","index":142025,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"1f703794-6565-4ed4-a562-ad6706e9b395","direction":"outgoing","index":142026,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ea4f0c92-5007-4344-a6b6-7f927ce3dc1a","direction":"outgoing","index":142089,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"a1827f7c-2de1-4caf-93c0-bdaa7539398d","direction":"outgoing","index":142090,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"6598d5d8-b497-4a18-bf5d-59ec0a3001c7","direction":"outgoing","index":142091,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"182697c0-48ea-4e54-96f1-d8e1dcd4d0e1","direction":"outgoing","index":142092,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"4790c427-0a27-46f1-8cc2-1160962ab1f4","direction":"outgoing","index":142093,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0f48f57-3bfb-4246-8d4a-e2c725c58065\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d1b2b53b-a5df-41aa-9207-2ca9228ac28e","direction":"outgoing","index":142094,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"50bd9b11-60cf-4ee3-8fec-d7fa507be805","direction":"outgoing","index":142095,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6641717-2448-4c18-a234-10a767654283\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b731310-bfc8-4fd9-bc03-71b30d777417","direction":"outgoing","index":143903,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7ab2ce7d-9393-41c9-bf9b-bb1c03cff3b9","direction":"outgoing","index":143904,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7cd0ea84-fb9d-4cea-b38a-5342e86b5303","direction":"outgoing","index":143905,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"4d6aef72-6336-4e0e-985e-ea99809a938e","direction":"outgoing","index":143906,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"96197f38-c056-4bc7-a1ba-c1e0019f215b","direction":"outgoing","index":143907,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2bb0c3d2-2700-4ab9-a5af-c3aa0aff20e3","direction":"outgoing","index":143908,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.600-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"7290a1bf-2ce9-4877-9acc-e262e9440234","direction":"outgoing","index":143909,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.612-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"7d8cad60-7405-497f-b698-4f09f9e8f254","direction":"outgoing","index":143910,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"b4b2b429-277e-45bf-b7e2-605c048482c5","direction":"outgoing","index":143911,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"4001ff6c-9f2f-46ce-a519-9e6cecb5aafd","direction":"outgoing","index":143912,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"84c2e172-38a2-4f7c-be78-3719450418b9","direction":"outgoing","index":143913,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebb9885c-d96f-44e9-b0d2-d6676554d4ad\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3721dbd7-2231-4bae-94ad-2ab898f9e26f","direction":"outgoing","index":143914,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"22d6268b-e7dc-4f50-849a-6aa75f66d790","direction":"outgoing","index":143915,"result_id":"82857070-0817-4ebc-8036-01756770ec35","status":200,"timestamp":"2026-05-22T21:14:20.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c336a0e3-ddc5-466f-ad45-182d87b8cbb8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_abatement_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:20.475-04:00"},{"id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","created_at":"2026-05-22T21:14:23.814-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"da51872a-14f2-44ae-99d6-a1b6444a78d7","direction":"outgoing","index":142027,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"ef49fbe1-4d02-4b5c-bcc5-8e5a25c050bf","direction":"outgoing","index":142028,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3865b2c-5503-4e5c-8a4c-a83b13c542a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56201d15-8f97-4ed2-958b-0d6d0d81ba8c","direction":"outgoing","index":142029,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"7c89696d-f71b-49a1-a631-98cd29e81ae2","direction":"outgoing","index":142030,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28ba7ec7-d03b-4d39-93b7-5494615c3ff6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2d12db0-e60d-4b6b-9b82-d47daddaef28","direction":"outgoing","index":142031,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"11e0df16-a4d6-4556-8cc4-06e795e12c2e","direction":"outgoing","index":142032,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5c0c1a3-e222-4218-86dc-6d287fb44f0e","direction":"outgoing","index":142033,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff3fe17f-af15-4200-b9cc-e74233f96f3f","direction":"outgoing","index":142096,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"7796aa10-0a89-4034-8acc-32a26751c53a","direction":"outgoing","index":142097,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5092c47-92cf-4d99-a0de-e1d4e4975c81","direction":"outgoing","index":142098,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b55e4778-6cee-4aa0-b223-36cc7537a8b6","direction":"outgoing","index":142099,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"547ae386-6b4c-4cc6-8cfb-3ecaee996c86","direction":"outgoing","index":142100,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54b0fd4c-0919-4945-8326-5b3d50d2486d","direction":"outgoing","index":142101,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1911b1c8-f653-4d16-b8b3-ac6daeafd088","direction":"outgoing","index":143916,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"396c4b2b-744c-4cc5-ba62-c8107f7e1b48","direction":"outgoing","index":143917,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.857-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4f93b596-a851-4464-8125-c64398d9dcdb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb8d6c6a-dd9c-4cf9-b698-09b292bd336c","direction":"outgoing","index":143918,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"6dd58887-c071-4e86-b3ad-ba37c55f5561","direction":"outgoing","index":143919,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e97f310c-ecaf-427e-99b9-1771ea4c33ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ec41ef4-823b-4bcd-8e50-514b9f174d54","direction":"outgoing","index":143920,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"dfe5f536-8792-4eeb-ba93-4b9992f92107","direction":"outgoing","index":143921,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=459075b8-10ef-48c2-b186-4eaa01d1e8aa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89687d00-a18a-407a-8bbe-17f9514debda","direction":"outgoing","index":143922,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=459075b8-10ef-48c2-b186-4eaa01d1e8aa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aeac6bdf-ef43-4150-87fe-38d9547cd2c1","direction":"outgoing","index":143923,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"b7442201-d281-4c26-b3d7-520b74634ec9","direction":"outgoing","index":143924,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=459075b8-10ef-48c2-b186-4eaa01d1e8aa\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"607763e5-f412-417b-9807-4858949fa881","direction":"outgoing","index":143925,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=459075b8-10ef-48c2-b186-4eaa01d1e8aa\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d9ec1baf-03e3-405c-b999-da9bbb985f1f","direction":"outgoing","index":143926,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"0fb1940a-8a03-40ee-957f-3860ba770dcf","direction":"outgoing","index":143927,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:23.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d0b44da-0d7e-4506-a67a-ab3a4a00531f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4fc2785-eaab-43af-b730-ee25f1c45eea","direction":"outgoing","index":143928,"result_id":"b706cd9a-f160-4069-86e2-0cf8acc62a50","status":200,"timestamp":"2026-05-22T21:14:24.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2d0b44da-0d7e-4506-a67a-ab3a4a00531f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_clinical_status_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:23.814-04:00"},{"id":"ed6b1938-9753-4b6e-8948-d3f8cea945aa","created_at":"2026-05-22T21:14:24.383-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"f2b3b40b-6f8e-475a-b68a-3a44681f602c","direction":"outgoing","index":142034,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5f885a58-cebb-4fe6-9574-4864cc221ebb","direction":"outgoing","index":142035,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5ac13dff-371c-4ef9-b708-1c7354321e04","direction":"outgoing","index":142036,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"},{"id":"b2ff8f94-3fdb-4cff-a7b9-06371ee3ab11","direction":"outgoing","index":143929,"result_id":"ed6b1938-9753-4b6e-8948-d3f8cea945aa","status":200,"timestamp":"2026-05-22T21:14:24.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"80494202-0291-4d5a-aff0-3858055c8fe3","direction":"outgoing","index":143930,"result_id":"ed6b1938-9753-4b6e-8948-d3f8cea945aa","status":200,"timestamp":"2026-05-22T21:14:24.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"17fd1f97-53db-41fc-9384-d23dc53f1f02","direction":"outgoing","index":143931,"result_id":"ed6b1938-9753-4b6e-8948-d3f8cea945aa","status":200,"timestamp":"2026-05-22T21:14:24.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_category_encounter_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:24.383-04:00"},{"id":"ea7b9e11-176e-467f-87e6-2582d322216a","created_at":"2026-05-22T21:14:25.193-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"ee2f7825-9fff-4c3c-9ce0-53e7bc9a424e","direction":"outgoing","index":142037,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"8cf11ea1-34a5-41cf-ba2b-b283b266e526","direction":"outgoing","index":142038,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"d0bac533-a7ef-46a0-be1d-c3ff350b5b80","direction":"outgoing","index":142039,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"},{"id":"70f26b34-c502-47a7-8e61-3b2019c3d88e","direction":"outgoing","index":142102,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"374abb8f-73ff-45f7-aaf0-e05aa8a61863","direction":"outgoing","index":142103,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"},{"id":"c96b01e0-9628-4066-a268-c9c4b833f943","direction":"outgoing","index":143932,"result_id":"ea7b9e11-176e-467f-87e6-2582d322216a","status":200,"timestamp":"2026-05-22T21:14:25.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"8325c93b-d472-48f3-898b-4be721db3b99","direction":"outgoing","index":143933,"result_id":"ea7b9e11-176e-467f-87e6-2582d322216a","status":200,"timestamp":"2026-05-22T21:14:25.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"29ce1204-d4b3-439c-943a-d9e89b9321eb","direction":"outgoing","index":143934,"result_id":"ea7b9e11-176e-467f-87e6-2582d322216a","status":200,"timestamp":"2026-05-22T21:14:25.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"},{"id":"c7885abf-0d6e-41c0-91e5-c1ae0a1b3677","direction":"outgoing","index":143935,"result_id":"ea7b9e11-176e-467f-87e6-2582d322216a","status":200,"timestamp":"2026-05-22T21:14:25.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"0f322583-eec0-44d6-9a83-ce1d676e7413","direction":"outgoing","index":143936,"result_id":"ea7b9e11-176e-467f-87e6-2582d322216a","status":200,"timestamp":"2026-05-22T21:14:25.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_patient_code_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:25.193-04:00"},{"id":"3d597d73-b70c-42bc-9677-e0ce3590dfe3","created_at":"2026-05-22T21:14:25.784-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"fe2db488-7bad-4d57-a0df-efb60bb57d68","direction":"outgoing","index":141977,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b70e0d34-fb85-43e9-87b0-988d1f4b5af5","direction":"outgoing","index":141978,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8adaa43a-f744-48fc-9029-8ac05d0db5c2","direction":"outgoing","index":141981,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"0b8f0eed-4e4e-45e2-8b33-907eea2dbbbd","direction":"outgoing","index":141982,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b736de7-c029-4941-9a25-ee9f128fb7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb240da-e95a-45fa-8e41-4ac4c4a0158d","direction":"outgoing","index":141983,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"fea155a9-6a7b-4e09-a493-ff85f70acbd7","direction":"outgoing","index":141984,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a2c6a2-af34-4878-99a4-861b9ad48f5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c2bf07-11b2-4fa4-a57f-1720eceb39fe","direction":"outgoing","index":141985,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"64f7fced-f070-4007-9abb-e8cb2213082f","direction":"outgoing","index":141986,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fd84ce6-9675-417a-8d81-7a6f3d2efc94","direction":"outgoing","index":141987,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dd99a78-596e-4428-a702-8173ec63a55f","direction":"outgoing","index":141988,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"c67a7836-6852-44c0-8dfc-5c09de709ac1","direction":"outgoing","index":142048,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"bc9a20af-3297-43ad-8c06-dc84ed6c426a","direction":"outgoing","index":142049,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"de9393f8-ff98-4e55-a055-9fb31c57b240","direction":"outgoing","index":142050,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"8a3c808a-8d32-41b3-997f-be8b622bc978","direction":"outgoing","index":142052,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"2021775a-acf4-4690-ac04-1a3c8d93f742","direction":"outgoing","index":142053,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"a0960115-fa0f-49d8-91b7-07716ac1b274","direction":"outgoing","index":142054,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a1678bf1-b514-43cd-8c27-754c47de40d7","direction":"outgoing","index":142055,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"0e25f673-8444-4a42-abda-c0c3d674cb86","direction":"outgoing","index":142056,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"},{"id":"465ee528-9c42-4025-832e-887ea5f4a2d0","direction":"outgoing","index":143937,"result_id":"3d597d73-b70c-42bc-9677-e0ce3590dfe3","status":200,"timestamp":"2026-05-22T21:14:25.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"},{"id":"f0809524-56a6-410a-b7d9-4dca1471db57","direction":"outgoing","index":143938,"result_id":"3d597d73-b70c-42bc-9677-e0ce3590dfe3","status":200,"timestamp":"2026-05-22T21:14:25.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0dacdb76-35e9-40dc-bf90-7fde85cbaa5d","verb":"get"},{"id":"f8040878-b5a0-4753-8765-2e9f487d5a98","direction":"outgoing","index":143939,"result_id":"3d597d73-b70c-42bc-9677-e0ce3590dfe3","status":401,"timestamp":"2026-05-22T21:14:25.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group-us_core_v610_Condition_granular_scope_read_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:25.784-04:00"},{"id":"fc40e4d2-6e5e-4105-a0f6-e28e546279bb","created_at":"2026-05-22T21:14:25.862-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","label":"SMART Credentials for Granular Scopes 1","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_condition_granular_scope_1_group","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:25.862-04:00"},{"id":"51ce9694-64af-4ee1-baad-0e9129426efa","created_at":"2026-05-22T21:14:53.887-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"bcac1d20-e0e8-44b1-9cbb-9775a37f8664","direction":"outgoing","index":142591,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"f83ecd5a-2bdd-45c1-abbd-10041eae889f","direction":"outgoing","index":142593,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"afecd385-cb69-42cc-b986-441fb1504d36","direction":"outgoing","index":142594,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"aff98444-6771-4a03-80cd-54919b393c1a","direction":"outgoing","index":142595,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"0b2fb35b-a9f2-4452-8f58-e8ba3dd3d365","direction":"outgoing","index":142596,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"5745fd30-e520-4bcf-b74a-03a54252310f","direction":"outgoing","index":142664,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"cd4cbcbc-b124-48cd-95bd-0751e42c61a0","direction":"outgoing","index":142665,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e26d690-4d6d-4409-9c93-e3854ef031a8","direction":"outgoing","index":142666,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6210dcf7-606b-4fae-b912-5a743d4435fb","direction":"outgoing","index":142667,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"815666dd-41df-4897-9901-a84a8e6e542d","direction":"outgoing","index":142668,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e0d7764-478a-4841-9da8-adc09b790b29","direction":"outgoing","index":142669,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"959f4f26-f6ef-4d4d-8d93-6298facd444d","direction":"outgoing","index":142670,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d1b80dd-eb92-4f88-a8ef-973ef40f33f6","direction":"outgoing","index":142671,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ef2d32-2c43-4208-a573-32c580abdc8f","direction":"outgoing","index":142672,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cb9f1d0-a814-4729-b9e3-3c6f9924b02f","direction":"outgoing","index":142673,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1bb721-edf9-4266-9598-0693d5ffc425","direction":"outgoing","index":142719,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"059a0b3b-d4b2-4049-bf35-28b6dd7574a1","direction":"outgoing","index":142720,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb4672a8-9406-4daa-b7cc-e3fd7c27f860","direction":"outgoing","index":142721,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1dac884b-9dd9-4ccb-82d9-5b8e03169162","direction":"outgoing","index":142722,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c6216ab-8a83-4a4a-8844-e50050ebd39d","direction":"outgoing","index":142723,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f2ff6d3-a44d-4192-b091-81bceec696c9","direction":"outgoing","index":142724,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"425db202-cd36-4eca-b977-4ca977d00c74","direction":"outgoing","index":142725,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18053de1-0eeb-41c8-88e8-dd070b174283","direction":"outgoing","index":142726,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a8c2077-b9e2-4246-85bf-448894258687","direction":"outgoing","index":142727,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0972690-2b92-4444-8efc-c4eadd6864dc","direction":"outgoing","index":142728,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e8eed58-ee86-4905-9174-f6bd5dadf2b6","direction":"outgoing","index":142772,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"9ef3f8e8-f9e3-48a8-9739-b5b69e8b69d6","direction":"outgoing","index":142773,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6dccb5f-802e-42d0-8c6f-b930dd3bc1f8","direction":"outgoing","index":142774,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dea0a695-3e62-4bbf-b43a-399856b7a44d","direction":"outgoing","index":142775,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9cb5635-6614-4b1d-b3bb-25087edc66d5","direction":"outgoing","index":142776,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083a559f-13fd-4887-966e-071329bbeba1","direction":"outgoing","index":142777,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"8363287c-3d86-4fb5-b43a-7d41facb7267","direction":"outgoing","index":142778,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ca77962-f22c-4c78-a091-ba4706a4badf","direction":"outgoing","index":142779,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab96f973-ca9c-4463-8a23-71000bce51dc","direction":"outgoing","index":142780,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8888fdec-defb-488e-a66a-5f72ee30fc09","direction":"outgoing","index":142781,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6855ee1-782e-47c7-96e5-4fbb30d3d5de","direction":"outgoing","index":142817,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"5391e6d0-8032-4dbd-b06b-002bed62f125","direction":"outgoing","index":142818,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58dcaba7-6f05-4df5-b06b-7efc5778e4cb","direction":"outgoing","index":142819,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52de6d98-c2f1-4520-91d4-4c23b78160e6","direction":"outgoing","index":142820,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"418396cb-bf67-415e-86f7-96fd134dcb3c","direction":"outgoing","index":142821,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a1d55d1-fe25-4dfd-8ca7-4db9b9bd55b9","direction":"outgoing","index":142822,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63b598a3-6852-4ea0-b21c-24507a97257d","direction":"outgoing","index":142827,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"aad5e6ac-a1c0-4a2f-ba6a-5de9b87fdb2c","direction":"outgoing","index":142829,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"2a65687d-c556-400c-81e3-3d62c7a4e995","direction":"outgoing","index":142830,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d70be5a5-daf0-42a0-b0dd-f3020ebbf857","direction":"outgoing","index":142831,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"8f83d094-9235-4b4f-8dbe-b0f83075eb95","direction":"outgoing","index":142832,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"1a7f6149-67c3-4281-a651-a611c298c786","direction":"outgoing","index":142833,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"2399c404-7eff-4ae4-9ba6-fd27e27efb5d","direction":"outgoing","index":142834,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"725d36c8-0dbc-4bff-b4a6-112f70176127","direction":"outgoing","index":142835,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2387874b-c764-4680-b5ed-8a768061cd73","direction":"outgoing","index":142836,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58af7d25-b398-4222-8588-6e0e680aa899","direction":"outgoing","index":142837,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0054e5ef-b1d9-4249-9dcf-5ddec19af092","direction":"outgoing","index":142838,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36fa8689-0e3c-4535-97cc-ed358539d998","direction":"outgoing","index":142839,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"134a0e96-01bf-4419-a7ae-87661b28f0f2","direction":"outgoing","index":142840,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"03b7910a-db92-46d6-bed0-1c92a9361c0a","direction":"outgoing","index":142841,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"c400a2fd-60e5-4dfd-ba83-4bac1174c07b","direction":"outgoing","index":142842,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"de1c0fcd-2828-4611-a29b-241f076f8d5b","direction":"outgoing","index":142843,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0c6f7170-cea9-4935-8649-74a74d9eaf34","direction":"outgoing","index":142844,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"9a261e52-0644-4140-b487-f7490a835024","direction":"outgoing","index":142845,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"d17f9d68-8b52-4922-9dc9-914e43a17afc","direction":"outgoing","index":142846,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a8f2e0e0-008b-462a-9781-f5f50344c0c7","direction":"outgoing","index":142847,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"355d2bba-57b9-4071-af4a-7ba5ef865a01","direction":"outgoing","index":142848,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"feb51d0c-8693-4765-9694-b4a192f2ad51","direction":"outgoing","index":142849,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"34216cab-0337-4128-8baa-f66e404a816b","direction":"outgoing","index":142850,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"b437299a-2349-43b0-9c17-f083273e1524","direction":"outgoing","index":142851,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"8829186d-c81f-4a60-8abc-2e984fd64f16","direction":"outgoing","index":142852,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e51374-0536-4572-935e-ffb965d49277","direction":"outgoing","index":142853,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5031e7a-713a-4ca8-ad5f-b67756843cdb","direction":"outgoing","index":142854,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"910b9110-3d8e-4bac-af3e-245291968dd0","direction":"outgoing","index":142855,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af3e5e5d-ee92-4a59-aa33-c8de29869a77","direction":"outgoing","index":142856,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56d2d961-4b86-4fe1-aca6-394d1325ef98","direction":"outgoing","index":142857,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7321a724-b61f-4425-b03f-98ce7b3158eb","direction":"outgoing","index":142858,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d3cdb25-0553-450d-8f5d-dc3e2c1cd319","direction":"outgoing","index":142859,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb467770-0e11-45e8-b6aa-c3a2e3888ec1","direction":"outgoing","index":142860,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1168261a-65e3-4618-a964-32cd1c589388","direction":"outgoing","index":142861,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"83af2b56-11eb-4166-909f-b8a5e38bb488","direction":"outgoing","index":142862,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e61cf2-b007-4a36-ba0f-058d18dbf5ee","direction":"outgoing","index":142863,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac70b927-f74c-42e6-9976-6fe9d5abdb87","direction":"outgoing","index":142864,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"01cb27a0-0f96-4a36-a9e5-6556dd89d119","direction":"outgoing","index":142865,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"57a73cf7-afe9-4e5e-b6ad-8714fb81b14f","direction":"outgoing","index":142866,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"5507c56e-1bbd-46ba-b745-51841d1346ef","direction":"outgoing","index":142867,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"cdc4e252-eddf-4986-a516-d7f703d5954a","direction":"outgoing","index":142868,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"718e59ba-68f2-4282-a46e-212d9ccfa415","direction":"outgoing","index":142869,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"06ee4a1c-edaa-4b70-bf17-2961bbe9f2e0","direction":"outgoing","index":142870,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"0c1eac7b-4371-46a2-8cb0-4aca93882247","direction":"outgoing","index":142871,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"201d3b72-5d89-4f8d-9b6a-b7b6817af5cf","direction":"outgoing","index":142872,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4989779e-d416-4a1e-8643-37082af67b8d","direction":"outgoing","index":142873,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"900c2893-8729-453b-8f70-3bea92512421","direction":"outgoing","index":142874,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"ef4c0d66-fd28-4f3f-89fb-55d3e8b98282","direction":"outgoing","index":142875,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"30fd5fa9-dcb3-47d0-b978-50b1b8dcf838","direction":"outgoing","index":142876,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"05e3abb5-427c-4848-9cea-d02ef520b222","direction":"outgoing","index":142877,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"0252719c-3a56-4af4-a77b-6799508a785b","direction":"outgoing","index":142878,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"a08af27c-ef03-4432-be2b-54e765f1b389","direction":"outgoing","index":142879,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"4ed78294-c5e2-43a8-8791-81849dde7edd","direction":"outgoing","index":142880,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"33b9e429-7433-4fe4-85b0-995755404c25","direction":"outgoing","index":142881,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"acfc91e9-fb9f-4d1f-946e-f684ec9fa4d4","direction":"outgoing","index":142882,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7796e6b9-4103-408b-a93a-45756565691c","direction":"outgoing","index":142883,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"3798cc83-f610-4e4d-9062-b125328ad246","direction":"outgoing","index":143001,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ddf6d503-8548-421b-acc7-19f9c25e7dfc","direction":"outgoing","index":143002,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dffbf639-90da-4fde-ae92-1757f06b6ba7","direction":"outgoing","index":143003,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f90b213b-fc55-4318-8528-1661e28e1025","direction":"outgoing","index":143004,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"21d13d8b-a545-45b1-8272-1ecc44118ee6","direction":"outgoing","index":143005,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"916d5932-ef05-4d13-b047-d313ce2d999e","direction":"outgoing","index":143006,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3b4a2c-dbf8-47f4-8822-f995f6865719","direction":"outgoing","index":143042,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2c8fd07-7e93-4209-914c-1a4af74c589c","direction":"outgoing","index":143043,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6798f4e6-74f6-489d-85a6-e9dd116db298","direction":"outgoing","index":143044,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de2265d-43a2-41f0-84b1-4c7d4120d867","direction":"outgoing","index":143045,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"8ff5ff1d-cce3-43c6-a80b-6bdd7c05603c","direction":"outgoing","index":143046,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c4580-20f7-4626-966b-430247aada28","direction":"outgoing","index":143047,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de91b9da-54a0-4e28-b784-b26c2cdb5065","direction":"outgoing","index":143083,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"583cfb1d-a97a-41a6-a451-4099aee6ef94","direction":"outgoing","index":143084,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f99d3fb8-c1de-4cf0-abeb-de4742cce31f","direction":"outgoing","index":143085,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a707e19-cee0-4615-a4e2-ff66c0a86310","direction":"outgoing","index":143086,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a3faa2a0-19c7-4682-a46d-613ef8145356","direction":"outgoing","index":143087,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90016b9a-87c7-42e8-8ab4-ea40a6c647c2","direction":"outgoing","index":143088,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c7da6f5-2d26-498f-8051-bb6b6f33fd0c","direction":"outgoing","index":143117,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"e57da4e9-7854-4ed0-8179-66ec71142afa","direction":"outgoing","index":143118,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"6dd37b64-1140-4a55-bf7a-ad777e87fb07","direction":"outgoing","index":143206,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c190d648-ee69-4691-93a3-3fa3414c23aa","direction":"outgoing","index":143207,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c1a9616-bc64-4b63-a367-56c8cd07b35d","direction":"outgoing","index":143208,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5ed12c2-c3e1-4123-8208-d7bc3578b446","direction":"outgoing","index":143209,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320c0779-ee08-4b19-ae7e-7fa6b324822e","direction":"outgoing","index":143210,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5a6da2-f9d9-453b-9840-8e5f0a83c390","direction":"outgoing","index":143211,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"f65212b1-9d46-4a91-9ce2-f36412e9b9d8","direction":"outgoing","index":143212,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9b8ce1-196a-463b-839a-98d84285fe6d","direction":"outgoing","index":143213,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d732ae7-bdd0-4b94-8613-a8cfea0ebb95","direction":"outgoing","index":143214,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b1155e4-bccc-47d4-b75e-4a24efd4cb3c","direction":"outgoing","index":143215,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a94b2656-081e-46e5-b502-6a9ce292ae7e","direction":"outgoing","index":143216,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"d7afa24d-07b3-4875-ba8b-6ffeda0e92e4","direction":"outgoing","index":143217,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2f0516c-b6e2-4139-b7a7-1f8f83799004","direction":"outgoing","index":143218,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8652faf5-2c24-4144-ab0f-ad033b0c7583","direction":"outgoing","index":143219,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7334b6e-9bbf-4604-a9a3-736b254667c9","direction":"outgoing","index":143220,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd42ee37-49d7-4537-861c-46826f05ed99","direction":"outgoing","index":143221,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c528a6c-3a27-42c4-9514-1b4c2caada2c","direction":"outgoing","index":143222,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c514a5fc-9ae7-4804-b2f8-f26f6bb5dcf7","direction":"outgoing","index":143223,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a475fa0-55d2-449e-ada9-accd13a250f5","direction":"outgoing","index":143224,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac02c797-7553-47d0-b9b3-b643557249df","direction":"outgoing","index":143225,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e211849-5ec8-4c60-a19c-0f39ce7648ae","direction":"outgoing","index":143281,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"269dce6b-1d91-4637-8767-ae0407ccbe3a","direction":"outgoing","index":143282,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"678a65a9-62f4-4fd5-b90e-9e9f4d86d7fd","direction":"outgoing","index":143283,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004a733d-cb78-4261-a064-257d692a149b","direction":"outgoing","index":143284,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4935508-bebb-4e82-b8f1-de969ed477fc","direction":"outgoing","index":143285,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76bc44b1-8465-487f-a01f-516e7841e6cb","direction":"outgoing","index":143286,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ddd31f41-8374-414f-ab98-bbcc431f0b73","direction":"outgoing","index":143287,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0890eadd-c3cf-4d09-be83-b4b4514fc495","direction":"outgoing","index":143288,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f236cb0-43e1-4ccd-b8d1-ed4b8c4bd311","direction":"outgoing","index":143289,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a511c836-7e8f-4b40-bd6f-168a85f9dae5","direction":"outgoing","index":143290,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfaa1c67-3557-49d4-a2d7-036442afceec","direction":"outgoing","index":143316,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"01fbca51-1882-4019-b251-c1affb902347","direction":"outgoing","index":143317,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"73bbc96a-c71d-44d1-b539-9703d406993c","direction":"outgoing","index":143351,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2ed9116f-6a36-40d5-90cb-d9458f148329","direction":"outgoing","index":143352,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59e23804-c497-4e1b-9961-8846a3ccd39c","direction":"outgoing","index":143353,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fca5e202-30fe-4154-bc73-bfb409af69b8","direction":"outgoing","index":143354,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"da0c830e-1992-4755-81a8-859f54210011","direction":"outgoing","index":143355,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8293c640-908a-4488-aba7-da08ccd90992","direction":"outgoing","index":143356,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d62cca06-4753-4897-b7e9-7f78f1bfb8cb","direction":"outgoing","index":143392,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c66a764b-f53c-47bc-bb85-fb8c69dfdd96","direction":"outgoing","index":143393,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3278760d-05a2-48d9-8059-790d201dc634","direction":"outgoing","index":143394,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c3e3186-7e80-44e7-80bf-4fd10fdcaef1","direction":"outgoing","index":143395,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"381d4e38-e7b7-44ab-a5b4-acfb20a6ce7e","direction":"outgoing","index":143396,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094b12d7-4044-40f1-9e9e-35b6acec747f","direction":"outgoing","index":143397,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2888c624-8708-45c8-8be6-f35f4beaefa0","direction":"outgoing","index":143402,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"e0d68b87-c737-441c-bc0f-3c29b4170cbf","direction":"outgoing","index":143404,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"423f521c-aae1-489b-858f-d194a7b415b3","direction":"outgoing","index":143405,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"dd10709c-312a-472c-bd03-4553f0134a4e","direction":"outgoing","index":143406,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"d9e9557b-eef7-46c8-8a73-2796b4fc61a5","direction":"outgoing","index":143407,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"b6292381-c82e-496c-b5d6-5f8fa8dd1e57","direction":"outgoing","index":143476,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c8dfe4a0-4ab4-46e8-a54b-9a7a77feb089","direction":"outgoing","index":143477,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6dc0135-7cf5-4e32-910d-93a227d97a26","direction":"outgoing","index":143478,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a330fc79-ada6-4dee-8860-5b18705806a3","direction":"outgoing","index":143479,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ec12350e-acc1-492a-848c-884572d2bb2e","direction":"outgoing","index":143480,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3867935f-5daa-4e85-b81d-510d2e873b4f","direction":"outgoing","index":143481,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecf9ddbb-d5dd-4ef1-9bb9-11963593e6b4","direction":"outgoing","index":143486,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"1ad5700c-23fc-4dbc-940b-44fb2d724bb6","direction":"outgoing","index":143488,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"01284cd7-1da7-44d8-a25c-dd5a1804309e","direction":"outgoing","index":143489,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"02fe14e1-c137-47e6-a045-698acf4b166c","direction":"outgoing","index":143490,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"269abb6b-c41e-479a-a79e-6f54b0fc761d","direction":"outgoing","index":143491,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"ae73eef4-61df-4f41-b6d3-3660d0482d86","direction":"outgoing","index":143492,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"e0a6e5f0-2a1f-429a-b470-db5da84fa6b2","direction":"outgoing","index":143493,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"a048e08d-239c-4410-948a-16dfe29da2ff","direction":"outgoing","index":143494,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"6384b613-c355-4e84-828c-0488b1479d5e","direction":"outgoing","index":143495,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b39dfaca-99e4-48e1-b0a6-dac9b5d1682b","direction":"outgoing","index":143496,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"557209dc-a060-4d44-a251-2cdab69a431c","direction":"outgoing","index":143497,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b40761a6-4490-401a-b02b-db11f5b5432c","direction":"outgoing","index":143498,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"7090bab0-b328-4fea-81b6-5541174f8dca","direction":"outgoing","index":143499,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"3847f544-9e1d-45df-b6dc-a92eaca4ff20","direction":"outgoing","index":143500,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"e4a892d2-4739-45c2-a62a-45a1d35c7db3","direction":"outgoing","index":143501,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d04b27ab-f599-4140-82cb-f73b3769caa3","direction":"outgoing","index":143502,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86583a4-71d4-436b-aa5b-481eab9c3423","direction":"outgoing","index":143503,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dc81c82-0b09-4e52-9c8d-17d087f29bb9","direction":"outgoing","index":143504,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"1265ff30-8a16-4d0a-ba92-0e4a82c11cb6","direction":"outgoing","index":143505,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"1e5155aa-2678-4ae8-89f6-2f029d5a934e","direction":"outgoing","index":143506,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"8b353425-c4bb-47fd-9022-f8dc6a98d977","direction":"outgoing","index":143507,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6132079b-ffd8-432e-a768-0da095434ed0","direction":"outgoing","index":143508,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"5a8609a9-1ae0-4fe7-a375-afefb0cb4a06","direction":"outgoing","index":143509,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"956574b1-ef3f-4d7e-8583-4749bdc89fce","direction":"outgoing","index":143510,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8c3ec7aa-4688-4ee4-8cec-f0bc55d33f88","direction":"outgoing","index":143511,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"48b1797d-1521-4441-abcf-2b9e45078bd0","direction":"outgoing","index":143588,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4326098-4601-485d-94bd-b8e2e3698731","direction":"outgoing","index":143589,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737b3999-a752-4c98-ae57-739b41fadce8","direction":"outgoing","index":143590,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f2e4c43-346e-4d50-b697-0a587e2fca78","direction":"outgoing","index":143591,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"781f6a73-0b6b-4aa8-9ce2-9c55f7d17a44","direction":"outgoing","index":143592,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7665367d-3d30-4bcd-84bb-c1c3f6597daa","direction":"outgoing","index":143593,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bc42d96-48d4-4298-b26e-2a53a031ee27","direction":"outgoing","index":143629,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e565cf2f-1921-4ea4-87db-a37d8f7e99e1","direction":"outgoing","index":143630,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95426d4a-9020-44ae-9647-da7444aef23f","direction":"outgoing","index":143631,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b5b18c5-3d89-4ef9-a194-2cb7284ac2ad","direction":"outgoing","index":143632,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a82c0a3-5819-4f41-bd85-1b5bd33b99ff","direction":"outgoing","index":143633,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53e4455d-c273-4e3b-ab58-7af46cd751a6","direction":"outgoing","index":143634,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"939eec64-091f-46f5-b9a3-5a8fb826911a","direction":"outgoing","index":143670,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"88bc25d0-bf6a-475e-855b-8118b4810953","direction":"outgoing","index":143671,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d2ffc94-54e3-4504-8c76-20d7658e0b90","direction":"outgoing","index":143672,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceefd20-e371-4ba8-b1b5-033fadde57c7","direction":"outgoing","index":143673,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a561b33-ace9-4a12-bd7b-1fa681c20b70","direction":"outgoing","index":143674,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa537135-26a8-4bfe-a1da-3034d9dbff4f","direction":"outgoing","index":143675,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"adc51f7f-0a56-4d80-882a-6d33267d3c4c","direction":"outgoing","index":143940,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"af80933c-8db6-4623-a506-aadb5ff70e01","direction":"outgoing","index":143941,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"e7cfb882-9e6d-47af-9fb7-28507683f937","direction":"outgoing","index":143942,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"200e2f6c-3845-4056-86f4-7ebcd143bad1","direction":"outgoing","index":143943,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.113-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"75bcd389-badb-4c40-8c5c-713880041157","direction":"outgoing","index":143944,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.127-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"2c653cd6-97b0-42bb-8758-0c7c3f10dd10","direction":"outgoing","index":143945,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"4a915f52-23de-479b-98d9-3afd5a013ffd","direction":"outgoing","index":143946,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d4074bf-7f75-4a01-afaa-f4ab22506d7d","direction":"outgoing","index":143947,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.166-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a92f2c43-fc60-4ef5-b633-b6912c626d0a","direction":"outgoing","index":143948,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4c2116d1-2048-44bb-81cc-1b42b26b89ca","direction":"outgoing","index":143949,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"04927800-30c6-410e-92f3-e228ab74c570","direction":"outgoing","index":143950,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"d12fb55d-4033-4ca5-9650-e43cf95cf8f5","direction":"outgoing","index":143951,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a4901d69-c047-4c0d-a2ec-caae8c0a2625","direction":"outgoing","index":143952,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56a90676-3e8e-4eaa-a710-6df93a79be50","direction":"outgoing","index":143953,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9eda6ee1-543e-4116-9d2d-2cf23308abeb","direction":"outgoing","index":143954,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa2ce075-70ad-4ae6-ac63-fd774d068762","direction":"outgoing","index":143955,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"db426e87-bcf3-4b0c-b1bf-e392bbe47bc0","direction":"outgoing","index":143956,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15e905da-24c8-483c-84b0-d3e91e74164d","direction":"outgoing","index":143957,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a38e21f-ca70-48d0-b880-3b5f0f487542","direction":"outgoing","index":143958,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0eb14b65-44b0-497e-af52-f02b2a0edfe4","direction":"outgoing","index":143959,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4a49524a-76fe-44e1-a53d-cb2054bab5ad","direction":"outgoing","index":143960,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"0541c9bc-5f79-4f1e-ba2c-9f5d4906cdbf","direction":"outgoing","index":143961,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31db4c06-d3af-48ea-9ee5-d1400d1af1a0","direction":"outgoing","index":143962,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37f5152b-4a76-408d-92a9-2f90599a9ca7","direction":"outgoing","index":143963,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2e56f005-0185-4a0a-be16-ad5c0be664e7","direction":"outgoing","index":143964,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85588044-ae47-4905-82c4-edbb04709ccc","direction":"outgoing","index":143965,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c8f81d02-9d70-41a2-96d8-0017dda24344","direction":"outgoing","index":143966,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"029ec90c-5a6e-4fee-82b4-16e90b3b809d","direction":"outgoing","index":143967,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c5e7449-78e7-4693-933b-14fe3fef9b2f","direction":"outgoing","index":143968,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e88b3287-cdf9-401d-aba8-b727c16ff50e","direction":"outgoing","index":143969,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fbe1d868-dbbb-4ddb-987c-23006746e95f","direction":"outgoing","index":143970,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"1b010ef2-99e5-45e1-8a8e-1f985c331558","direction":"outgoing","index":143971,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e38b571d-0c46-4182-b892-9456af2010db","direction":"outgoing","index":143972,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1f424744-8a35-4453-af00-257164afd4fb","direction":"outgoing","index":143973,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"19ddee68-39f0-4500-8bd5-c1e3cdf3a90d","direction":"outgoing","index":143974,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9082e3bb-f88a-497d-ae9e-845b3d60596f","direction":"outgoing","index":143975,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"4d748727-334f-4bba-b101-7b4e2355c82f","direction":"outgoing","index":143976,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a2f0701c-4aef-4a78-84b7-aa46793ed593","direction":"outgoing","index":143977,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"30d37c71-4cc1-4e14-8a3c-95c929aff6b4","direction":"outgoing","index":143978,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"633818ab-7e9f-4990-a03d-ccfaf11ee278","direction":"outgoing","index":143979,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"cb71a4b6-ba0e-488b-a088-9045023d5ba8","direction":"outgoing","index":143980,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.631-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"f488ae63-9b41-420d-bfa2-7fe33f391c87","direction":"outgoing","index":143981,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"ab359b59-362f-4462-b4b2-47d017caf5c8","direction":"outgoing","index":143982,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.685-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"6f722b6e-82db-433a-8cfb-a89587bc7fda","direction":"outgoing","index":143983,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"ac7df87b-ad3e-43e4-9ddf-828b7e5df519","direction":"outgoing","index":143984,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5005782c-6c2a-4b33-bf04-f05d0dbd5ce5","direction":"outgoing","index":143985,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c3e3aa11-356e-44b3-893e-4cc26d5656fd","direction":"outgoing","index":143986,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ec5326a0-5c4c-4aa1-a8a7-6fbfe1de81eb","direction":"outgoing","index":143987,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.765-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3fac0655-9e13-4c37-8349-deb2f804bdb6","direction":"outgoing","index":143988,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"3f509987-cd34-49e1-931e-9957e9838556","direction":"outgoing","index":143989,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"99e43065-7c61-4a30-9580-ddf381fd6b87","direction":"outgoing","index":143990,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"e15fa820-0adb-4d89-a1b7-57a68c6cc78b","direction":"outgoing","index":143991,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.820-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"6130c87c-71ad-4c94-8395-4718eb93878e","direction":"outgoing","index":143992,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"de65f72e-c227-41b2-aa61-06feeb342130","direction":"outgoing","index":143993,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"dea0137f-e786-4368-85ec-15cec3f00b59","direction":"outgoing","index":143994,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.856-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"e49afd85-4910-4006-b0d6-559563f0c9e2","direction":"outgoing","index":143995,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"d5cfc294-64dc-43de-8a07-dd91d3f62963","direction":"outgoing","index":143996,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.878-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"0308ab33-900f-4a74-a527-9fa18dc301a2","direction":"outgoing","index":143997,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"9914dcf5-90d2-47a1-8739-6c4140282f75","direction":"outgoing","index":143998,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"a613cc65-c722-435b-a5f4-34f53ed74198","direction":"outgoing","index":143999,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"bedf5690-19d8-49df-90fe-02b8903bf419","direction":"outgoing","index":144000,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"6512b319-d0af-4234-b82c-d47d929c6ad7","direction":"outgoing","index":144001,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab84708d-7f16-4029-a5a0-86533d9e216b","direction":"outgoing","index":144002,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2426379-f8d1-4864-bd90-8a85211b1fe7","direction":"outgoing","index":144003,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aacafd8c-8ea3-448c-99e9-851bd47b9f98","direction":"outgoing","index":144004,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1775358-4fea-452e-be39-8fd6a8066016","direction":"outgoing","index":144005,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:54.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ed9c32e-1436-4404-97bc-3390084959da","direction":"outgoing","index":144006,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b204ccd1-534d-4aa6-9d60-1617a32e782a","direction":"outgoing","index":144007,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bcd2f4b7-de14-467d-b430-6c228410b941","direction":"outgoing","index":144008,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2957ed66-2ed4-44d9-b5d8-5955429c1f38","direction":"outgoing","index":144009,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d64adc3e-653a-4903-a446-0a15b60baf70","direction":"outgoing","index":144010,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ad44a3ee-75d4-4464-b543-d068dc44adb4","direction":"outgoing","index":144011,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.077-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"9bdcebea-4e5f-401e-8629-4b540b6629a7","direction":"outgoing","index":144012,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"aa28ce7e-f35d-4c91-8c07-87816e59e40d","direction":"outgoing","index":144013,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"061caa52-c5b1-4bd5-bfde-74ad7f3e06b4","direction":"outgoing","index":144014,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"97f1a733-8252-4a97-bede-e0ea87b55665","direction":"outgoing","index":144015,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"fd936898-5540-4799-9794-399ff0335da9","direction":"outgoing","index":144016,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"053e3f77-f6b6-4721-bd4a-4054ed234298","direction":"outgoing","index":144017,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"c96ec6d2-d3b7-470c-a036-7635294c20b2","direction":"outgoing","index":144018,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"19006227-ab82-48e4-98dd-c26b16939377","direction":"outgoing","index":144019,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4dee914d-be12-4389-9015-80f1d83cf57f","direction":"outgoing","index":144020,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"de0e3757-0324-444e-81df-db3826b2c9ad","direction":"outgoing","index":144021,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"b272b4de-68df-448c-b998-ec769d126ecb","direction":"outgoing","index":144022,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"39a0eaae-3b9f-4d72-bd82-fec7270d8afc","direction":"outgoing","index":144023,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"bb4c533f-95ab-43b7-8b0c-480bf0f81296","direction":"outgoing","index":144024,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"e7788f5c-166c-4cc6-86e8-c08ea93a6c85","direction":"outgoing","index":144025,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"5c3cd389-c102-4453-a008-16baf9ecf8f8","direction":"outgoing","index":144026,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"8c2fb13a-5bc4-4d00-b070-a1c59a00b6a1","direction":"outgoing","index":144027,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"e401a79f-886e-4489-aa74-67e1f4fe3b1e","direction":"outgoing","index":144028,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"b962d9d1-54d8-4943-80ab-6d1091ae550a","direction":"outgoing","index":144029,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"fa74adc9-71c4-409c-8fc5-7c6e27e280f8","direction":"outgoing","index":144030,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"4cf292f2-bc30-4ac2-9c6d-82410890cd36","direction":"outgoing","index":144031,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"97db27eb-8b90-4642-a287-9ff5374d5c24","direction":"outgoing","index":144032,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"29c44350-cf7c-4cfa-9e19-abe2086c4642","direction":"outgoing","index":144033,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4c54f06-46b4-40a5-898e-bdafef4873f3","direction":"outgoing","index":144034,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"fa4c4e5a-356b-4735-b1fc-25a58cb84dda","direction":"outgoing","index":144035,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.406-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8f270b41-8763-4469-b4d6-9f3547912bd3","direction":"outgoing","index":144036,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"c8201777-c048-4c0b-aa5b-bf822aadd488","direction":"outgoing","index":144037,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"76fc1558-30fb-4a2f-8b6d-489dae2033ed","direction":"outgoing","index":144038,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"00a6caad-e5c8-4d73-9903-7d5811d1841d","direction":"outgoing","index":144039,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"8e9df02d-0791-493d-95c4-15e67d965129","direction":"outgoing","index":144040,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"37316e4a-f030-4136-b1a9-80bfa16e7513","direction":"outgoing","index":144041,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8721487-66bd-49c2-9058-7fb5c1a1d189","direction":"outgoing","index":144042,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a23a5128-4b1c-40dd-9212-79643e988572","direction":"outgoing","index":144043,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b72c34c4-da49-45bc-9d84-a6f53baad934","direction":"outgoing","index":144044,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"e4980fac-e5c4-452c-8031-1ce7d855f865","direction":"outgoing","index":144045,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a4ca3470-d0eb-41b4-9d0f-ef80b49f7620","direction":"outgoing","index":144046,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.553-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4e3b7b1-d938-427d-9377-df904cfca81d","direction":"outgoing","index":144047,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"86259f93-293d-4932-97d1-612011b50ecb","direction":"outgoing","index":144048,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0b81c60-4f04-427a-b67a-cc4c09d6a9d6","direction":"outgoing","index":144049,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"2e2566ee-fc36-491e-b500-0e2355ae5d80","direction":"outgoing","index":144050,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d54a66cb-fbb4-4df9-b325-f271d7944b78","direction":"outgoing","index":144051,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2e34bb62-7449-47ca-8b5a-c0cefbb2b411","direction":"outgoing","index":144052,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e3ad204-8e2e-40df-8d67-30a31d259577","direction":"outgoing","index":144053,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09651a10-cb52-4000-a2e1-61027e3d9fda","direction":"outgoing","index":144054,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"97c06fff-b0f2-42e8-929c-23fab28cbcce","direction":"outgoing","index":144055,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f109a46d-072b-45e3-a117-836228a2b2d0","direction":"outgoing","index":144056,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63b67b8b-b18f-4efd-b11b-83acbfeeea44","direction":"outgoing","index":144057,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"62a1b48f-82dc-4a98-9d26-624d42e3d32a","direction":"outgoing","index":144058,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dfe934bb-3c07-4412-b199-1bd9bfc6fa69\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8f923ac-3eeb-437a-8f04-d5855f994d18","direction":"outgoing","index":144059,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"899836f5-0044-4e70-91b4-08660ce1d348","direction":"outgoing","index":144060,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc2db915-0f75-4c0e-888b-7b788d031d84","direction":"outgoing","index":144061,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25d4088f-b727-46e7-90ba-5f9fad9f9124","direction":"outgoing","index":144062,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a282cfd5-6a35-4e2f-9bb5-a72f57943d6c","direction":"outgoing","index":144063,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3e67208f-dfa9-46b0-ba75-591ccbb977db\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"685d752d-6b9d-474c-878a-93f0d22ae415","direction":"outgoing","index":144064,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"7dcaf3c9-60fc-4b7c-975f-8c0a4786d320","direction":"outgoing","index":144065,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.804-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7661b3ee-a2f2-49f4-93b5-5657dbfdda1c","direction":"outgoing","index":144066,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9a8a483c-6a9e-4720-80ab-f6fee962d5a1","direction":"outgoing","index":144067,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"be13a347-79ec-4a38-ad91-41f0c22a9c9f","direction":"outgoing","index":144068,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0436e866-5423-43d9-abf9-04aac06811a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13bd62cf-d46b-46fd-ae8a-04ecee44d5a6","direction":"outgoing","index":144069,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"67a7ebe0-6ab6-4ea5-be1d-6438116e66fc","direction":"outgoing","index":144070,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"1e054552-a1e5-420a-a884-f1da8a4705dd","direction":"outgoing","index":144071,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d3dd44db-1ee8-44b6-8a34-633f449af631","direction":"outgoing","index":144072,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"4f0c2709-ca56-4961-8829-9c6eb264aa18","direction":"outgoing","index":144073,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"55868945-4454-4095-a077-da2ed87d6249","direction":"outgoing","index":144074,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7c54a8d3-827f-4bbf-b38d-c33d667e9d6e","direction":"outgoing","index":144075,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"440a1357-1f0b-4ce3-b1a6-afcc8d29c57f","direction":"outgoing","index":144076,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:55.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"c827028e-7ce5-4abb-bc1c-812d3223559f","direction":"outgoing","index":144077,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"9da61af1-5f95-4bb5-b578-f2698826a3e6","direction":"outgoing","index":144078,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"b5213272-07b0-4454-bb33-813db1890289","direction":"outgoing","index":144079,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"128d9682-1d0c-468d-b8ec-e7a6bfd3a2a4","direction":"outgoing","index":144080,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"0ef64186-f8ba-4f59-b9d5-c49cd3e3c422","direction":"outgoing","index":144081,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"707d1917-ab47-436c-a2ed-ac072979cee5","direction":"outgoing","index":144082,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"5cc90527-b27d-409f-b373-8f131f35f426","direction":"outgoing","index":144083,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"5cea038d-4e42-4a01-a8ed-fedf9b56e157","direction":"outgoing","index":144084,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"7dab3867-f105-4bca-8bda-712852215a40","direction":"outgoing","index":144085,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"8cc5b631-3559-4800-bf54-cc8b1305856c","direction":"outgoing","index":144086,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"3f740279-250f-41a5-b32b-23e33bf045a6","direction":"outgoing","index":144087,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"decfd800-7ac1-4378-b3d2-504600c76318","direction":"outgoing","index":144088,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"9df30238-7088-4951-ae92-0b951b67e553","direction":"outgoing","index":144089,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"18b1d4f4-dd54-473a-8516-ad9fff89e900","direction":"outgoing","index":144090,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"39dc8881-e682-47cd-a27f-69434961a9f9","direction":"outgoing","index":144091,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"b7877f02-f533-4cc0-8310-9ab854a30070","direction":"outgoing","index":144092,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"59628cb8-cef8-4a3e-a979-73a4498c03fa","direction":"outgoing","index":144093,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"cb05b931-97cc-46ee-9001-b8a084979e32","direction":"outgoing","index":144094,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"f87ec631-cbd6-45bb-8589-dfd69c7ffa0c","direction":"outgoing","index":144095,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"a0b1f927-9754-4025-98d7-402dc9efe2a6","direction":"outgoing","index":144096,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ed9afb6d-e8d4-4c64-9fb7-9c8c5b6fd7d3","direction":"outgoing","index":144097,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"77f668a9-5509-4519-9ea6-b81416291548","direction":"outgoing","index":144098,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"c09360c6-2e88-4e82-b2f6-f5e4c2ae1dec","direction":"outgoing","index":144099,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"9203ea1c-f189-447d-b40f-b98aba774203","direction":"outgoing","index":144100,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.412-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"d72bd9ce-a5ab-40bb-823a-59bd43151602","direction":"outgoing","index":144101,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.423-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"40720e6d-0aa5-459e-ab52-2dba689dbff8","direction":"outgoing","index":144102,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.441-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"58a44e14-7823-4cdd-a264-2838f1b81271","direction":"outgoing","index":144103,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"b3f0c817-e333-404b-96de-347a2a89c092","direction":"outgoing","index":144104,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"1ce1d669-2971-4a43-b80d-a1225a558a5c","direction":"outgoing","index":144105,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2d40b61-6bda-4e9b-a8fe-6fa7c7b551a6","direction":"outgoing","index":144106,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"c9114639-b974-4c8c-abfc-082fb03450b4","direction":"outgoing","index":144107,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"61367ba5-0493-4a09-98f0-fd94011fda65","direction":"outgoing","index":144108,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"90701e65-5594-4623-971b-b99cffe36f65","direction":"outgoing","index":144109,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8cc604de-30bc-44cc-a601-40794a938e15","direction":"outgoing","index":144110,"result_id":"51ce9694-64af-4ee1-baad-0e9129426efa","status":200,"timestamp":"2026-05-22T21:14:56.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_patient_category_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:14:53.887-04:00"},{"id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","created_at":"2026-05-22T21:15:16.160-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"08d97c66-9040-4569-995d-351656586647","direction":"outgoing","index":142597,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"769c8d23-03e9-42fd-8b16-6b51858dfe91","direction":"outgoing","index":142598,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fd376b98-30f8-48a9-84ac-1d2ed1efde92","direction":"outgoing","index":142599,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2b7c79f4-262d-45cc-b51f-ddd98613c450","direction":"outgoing","index":142600,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"12bf69d3-de68-4131-9473-0744afcfbe0c","direction":"outgoing","index":142601,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7cf71ec6-5b8f-43cd-9ee5-b0e14bfe3d19","direction":"outgoing","index":142602,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6cf0274e-6a72-4477-b7bc-74560b6404b7","direction":"outgoing","index":142603,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8b6e5305-2a6c-46a9-a472-a9c5b69d0c8b","direction":"outgoing","index":142629,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c5a7d2b6-8918-4165-82dc-cd3b201a3479","direction":"outgoing","index":142630,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"738a0bb4-249f-4c19-a728-da86d02fb4c3","direction":"outgoing","index":142631,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"200e4200-a602-4e97-ade2-2675dc5ad7d1","direction":"outgoing","index":142632,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"13d28453-cea0-47ae-981d-d5eee7f5a70e","direction":"outgoing","index":142633,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"5d757260-c02c-45ca-96d0-a36bc30a40fa","direction":"outgoing","index":142634,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"f05c0503-5d87-46a3-8563-91e1ce9afb26","direction":"outgoing","index":142684,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"567eef7a-f021-48ad-a55a-51e2c4deca6b","direction":"outgoing","index":142685,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"0bb6c5c0-6e07-40d1-8309-21557c1f6eb0","direction":"outgoing","index":142686,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"83930b9f-4c1d-49ec-8a02-a0ee132ebaa8","direction":"outgoing","index":142687,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ca31510-f0eb-47b4-8329-b4c83f019c7f","direction":"outgoing","index":142688,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"39e89542-fe75-4dff-9e34-a8b73a775dd4","direction":"outgoing","index":142689,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"59c1a40e-1a97-403b-bc06-b7a4d41cadbd","direction":"outgoing","index":142739,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3e60a8bb-6783-44ee-890f-530356fbf269","direction":"outgoing","index":142740,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"256ce83b-862b-43b3-a0b6-04d1c55fb160","direction":"outgoing","index":142741,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1d27ad8c-4f90-4091-892b-293bd31cf01e","direction":"outgoing","index":142742,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4287ce58-6e14-4eb0-a674-ec5a2517a64f","direction":"outgoing","index":142743,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cee6f682-0365-4d52-8860-00cdbf17fbf9","direction":"outgoing","index":142744,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"17c2e171-ae65-4391-8933-4c6d382d61f0","direction":"outgoing","index":142792,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"28c4153f-a18f-4851-81c9-2d49f955f427","direction":"outgoing","index":142793,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ae84d263-4024-4ba3-8b89-fd735797a452","direction":"outgoing","index":142794,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"df06888d-e2db-4f57-8571-c06f336d57aa","direction":"outgoing","index":142795,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"286461d1-f331-445c-bbc9-df33af8e9c78","direction":"outgoing","index":142796,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6a006d69-9995-433a-b7bc-7bd8d84efdc2","direction":"outgoing","index":142797,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e46070f2-60b7-47a0-afcd-b96030a78c18","direction":"outgoing","index":142884,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"ec6ff809-d943-444a-91a2-0abc1b0b5439","direction":"outgoing","index":142885,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"988872cb-c573-440e-93bf-70aaefb48bff","direction":"outgoing","index":142886,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"eafafff7-5f6e-41df-ae55-62647b670550","direction":"outgoing","index":142887,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"1287ee7c-c61d-4949-a07f-cef670c63e02","direction":"outgoing","index":142888,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4354c6d7-76a6-4dc2-aad9-1831ac9e6505","direction":"outgoing","index":142889,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f99975dd-b28b-4ab0-bb22-4798cc100355","direction":"outgoing","index":142890,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"0b7946f5-5677-4b88-b3e5-8412ff5e319e","direction":"outgoing","index":142976,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"96471294-3175-42ff-958c-4245c466a1c5","direction":"outgoing","index":142977,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7c6e62eb-6ee0-48e9-a8e3-e84d835e7822","direction":"outgoing","index":142978,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abab7fd1-6239-40fa-9071-2a6f9b2f1e87","direction":"outgoing","index":142979,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"31be0fe5-65e2-4a1a-8f80-b3bf782b8ed0","direction":"outgoing","index":142980,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d672fcec-11ef-4fb9-a53b-418bd3e84ac9","direction":"outgoing","index":142981,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3815c509-51c6-40c1-ae86-0ade0d17d716","direction":"outgoing","index":143017,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"55c7ffe6-7296-444e-a0ad-be1dca841db6","direction":"outgoing","index":143018,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"034471b7-f6dd-4f4b-93a5-0d6c74bf7584","direction":"outgoing","index":143019,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f961a81c-2635-4c5e-ad85-4399394f22fe","direction":"outgoing","index":143020,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3402bf82-ebf2-411e-aec0-3311b3024ef7","direction":"outgoing","index":143021,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4b824ddf-7176-4f09-ac5f-8dab0e835d7b","direction":"outgoing","index":143022,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1d3371a6-0f88-439e-aba9-5dc433fdea7d","direction":"outgoing","index":143058,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3a6edbc0-2bc7-41b6-b9e2-e0ef9082a225","direction":"outgoing","index":143059,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c164c941-2fe8-48f1-b44d-1da6d987a5e0","direction":"outgoing","index":143060,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6bd67de7-ae16-45b1-b55f-de41aaa94324","direction":"outgoing","index":143061,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"75d1f8c9-055c-4766-802d-4a081aef2dd2","direction":"outgoing","index":143062,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7d98ac76-76db-41dd-9ba5-18a21e202887","direction":"outgoing","index":143063,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fbca43d9-72bc-4d9a-b1ba-d674601ce61f","direction":"outgoing","index":143102,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3db9ef6a-0e9c-4f37-bd99-b5a93f8d2259","direction":"outgoing","index":143103,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"0b3253d3-bc15-4ccc-96a5-afb835113672","direction":"outgoing","index":143104,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"2c32861a-035c-4e45-abe4-ff84ae41a585","direction":"outgoing","index":143105,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"c27ea600-f051-44c5-b713-d5931b49214c","direction":"outgoing","index":143106,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"7ff6bdcc-14eb-41ca-868e-20bb640f5f83","direction":"outgoing","index":143107,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"695349df-2ec8-4652-aad6-d3ecace0b4c7","direction":"outgoing","index":143153,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bc7b269f-0772-464b-9986-7ac1e95a4315","direction":"outgoing","index":143154,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"dea7a412-4f26-485f-9869-daa3bf1719dd","direction":"outgoing","index":143155,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db807be6-7a4d-4f2f-81bd-7afe059b109a","direction":"outgoing","index":143156,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c50e56c1-f677-4051-8fed-f9d9362bebe8","direction":"outgoing","index":143157,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d127359-bf2a-4a7e-8dff-2ea5570c13ea","direction":"outgoing","index":143158,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ce431276-7077-44f8-af1a-605feb617028","direction":"outgoing","index":143159,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbcf40b1-b457-4fd8-9c8b-1ab494e465ba","direction":"outgoing","index":143160,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"880ad55e-61cc-47a8-b254-8acec1e98d26","direction":"outgoing","index":143161,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e28457e-5f31-4c0f-bb7f-63f3c676a135","direction":"outgoing","index":143162,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"324205b4-f02b-4234-ac26-6ee1381dee24","direction":"outgoing","index":143163,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b57a32-c4be-4fb5-9cf8-6ff2a47902ff","direction":"outgoing","index":143164,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3404f7ae-c03d-4bb4-89b7-9e246cf142c9","direction":"outgoing","index":143165,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cf79551c-546c-4a2c-aba0-5625272b1b98","direction":"outgoing","index":143248,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"009f1855-29c4-4267-8fa9-2fd09a0771cb","direction":"outgoing","index":143249,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"1b10620d-6905-4a66-8255-492ba3ee2fce","direction":"outgoing","index":143250,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f0bd9ee5-5bc5-4e86-8603-2ae85bc0cc78","direction":"outgoing","index":143251,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"89844ae5-2eeb-44ee-959f-7f078bd5100d","direction":"outgoing","index":143252,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"05224511-940d-4176-a566-0c97ddb55340","direction":"outgoing","index":143253,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"53a38a64-f448-4388-adde-ee3185b3781a","direction":"outgoing","index":143301,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d372b192-15b2-4faf-9cae-0a6704337572","direction":"outgoing","index":143302,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"05c535dd-f0b5-4a3e-be9d-89e62f3257d3","direction":"outgoing","index":143303,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"7e69495d-c6b5-4a5a-90be-ff3cd600ded3","direction":"outgoing","index":143304,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"1a725259-0b27-411e-be8b-bd5048300ae0","direction":"outgoing","index":143305,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"9935bdbc-732b-4148-9efa-195564b5a928","direction":"outgoing","index":143306,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d35d1ca8-0704-46ad-8bdc-ced2925120bb","direction":"outgoing","index":143328,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"039f0c5a-ce9a-404b-98a3-1002927237a9","direction":"outgoing","index":143329,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d30b2466-fefb-4111-836c-019bffced3b3","direction":"outgoing","index":143330,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c9769790-52bf-42cd-afd2-ec0be1d53912","direction":"outgoing","index":143331,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1c6851d6-82cd-44f2-a853-7ac6d4e011ef","direction":"outgoing","index":143332,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0578b35e-f7cf-4fa1-a654-2953119ce89e","direction":"outgoing","index":143333,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abfcef7d-45f6-47c6-aabb-b2526675e7a9","direction":"outgoing","index":143367,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"943af84b-b1af-4a2f-b059-6a98d711523b","direction":"outgoing","index":143368,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2df95241-1b35-4652-9561-cc8a356452c7","direction":"outgoing","index":143369,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"36ea6e0a-7cd4-4be3-8e51-17a7323c6368","direction":"outgoing","index":143370,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b188b0bb-12f7-4d88-9938-d5207d67b9c0","direction":"outgoing","index":143371,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"183b71f3-d117-4979-8647-7ed22955a229","direction":"outgoing","index":143372,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c86ddda3-68a4-4516-8081-f7a7641eb0a9","direction":"outgoing","index":143408,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"85b93757-4608-4583-9c8b-49f46d9a8f0d","direction":"outgoing","index":143409,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"912cccb9-b878-42be-8471-3ed5c2e8b53e","direction":"outgoing","index":143410,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"62e031b3-fc96-4a03-8ce1-84d98f9d8fc0","direction":"outgoing","index":143411,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d156a5f4-5941-4599-bb1a-12dd01396abd","direction":"outgoing","index":143412,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0167139e-6133-4712-8315-977e3402da47","direction":"outgoing","index":143413,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"57baabaa-aa1a-4dbb-be49-78157790053f","direction":"outgoing","index":143414,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"95533512-e54a-4079-a5c7-eb109336adbf","direction":"outgoing","index":143451,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"302f2b8d-a07c-4f0e-87b3-2dd7d5c22b00","direction":"outgoing","index":143452,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f4f5c30f-3cce-4275-92e8-d5035a7f26b6","direction":"outgoing","index":143453,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"adfeb5d0-73c9-4676-88cd-8e6564fa2e96","direction":"outgoing","index":143454,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2dc0f25f-0d72-4145-9a05-281498f9ab54","direction":"outgoing","index":143455,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4dc96233-3a3d-4b5d-b898-0eadc2ec34c6","direction":"outgoing","index":143456,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"107b1a6b-57a0-4125-8377-a63b758c3028","direction":"outgoing","index":143512,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7a0de248-65af-4aa9-b79b-b610fc54ec61","direction":"outgoing","index":143513,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"03502313-ea43-4c78-8254-96db7c6ada36","direction":"outgoing","index":143514,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"743db6c2-584b-4e53-accf-ffb9249378e7","direction":"outgoing","index":143515,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bb3beff7-036f-4cc2-b55e-36d8e7e09d47","direction":"outgoing","index":143516,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2726848c-fe23-4c5a-86bb-2bb9e5fb211b","direction":"outgoing","index":143517,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ea3a22ba-a9f6-4399-9fff-4965d8cfa07d","direction":"outgoing","index":143518,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e7fca1ee-e5b5-4caf-b1b9-9e6d3d53c27f","direction":"outgoing","index":143563,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3c686e55-4019-49e4-854f-6d70970cc2a0","direction":"outgoing","index":143564,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"99b041ac-71b0-4768-a500-b9db9216efaa","direction":"outgoing","index":143565,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8a7e4372-1c31-49d4-88e7-67d0b71e7a1b","direction":"outgoing","index":143566,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ddacdaa7-8b40-4123-b994-a0cda8ab2fbb","direction":"outgoing","index":143567,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fcebdd71-1d9c-422f-9a94-3d0b5be80389","direction":"outgoing","index":143568,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a54c85cc-9254-4301-af86-3e73e28f4f29","direction":"outgoing","index":143604,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"502a443e-f694-4ea8-9ead-acd406805bd5","direction":"outgoing","index":143605,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"12f8480e-db33-412d-a1f6-470fc31f5c89","direction":"outgoing","index":143606,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"c609f1ac-1127-4ee8-b914-f584f585507b","direction":"outgoing","index":143607,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"b1c5f8d0-5ef7-439e-a190-c4611651f91e","direction":"outgoing","index":143608,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b9b4ea5-3c66-4c43-b1cb-cde00386645a","direction":"outgoing","index":143609,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"d710c206-ed6f-4048-b15f-2c1598f01cf8","direction":"outgoing","index":143645,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4af30b4a-653c-45d2-9aea-e11decb92d1e","direction":"outgoing","index":143646,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c7a5ea13-2665-4171-9687-2317560524c9","direction":"outgoing","index":143647,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6acd32b5-5551-42ef-adf0-d8540591b8d6","direction":"outgoing","index":143648,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"be1744b5-8efb-45ea-969d-d16f0125abcb","direction":"outgoing","index":143649,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ce87c449-baf2-4cd3-9e13-45263b802942","direction":"outgoing","index":143650,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8391c169-43ab-4585-b653-06493d93dc61","direction":"outgoing","index":144111,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6e79e5c3-f62b-47ed-84ff-cc91824bab2f","direction":"outgoing","index":144112,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"be13daad-a44f-490f-ab85-f8b072f9860b","direction":"outgoing","index":144113,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"195f66a4-fd2c-4030-90a2-220614517803","direction":"outgoing","index":144114,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"13ff052f-352b-4c70-86f3-76710e9e44f2","direction":"outgoing","index":144115,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"942e78dd-0a4a-4068-8e82-1a1ee8066485","direction":"outgoing","index":144116,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"29fda3bb-a5f0-4a6d-b14f-9eb5835099dd","direction":"outgoing","index":144117,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"10e53c27-5ea1-41c2-a9d7-3ad144461b4c","direction":"outgoing","index":144118,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"707d89b6-7b92-4e76-984f-263f41c70606","direction":"outgoing","index":144119,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"dee7953b-0272-404e-afd2-276ec0c47a32","direction":"outgoing","index":144120,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.412-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"af3837cc-050c-4764-90fc-0a27d33922d9","direction":"outgoing","index":144121,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"91e88d8a-aa93-4136-8d13-6d9c2c9bb818","direction":"outgoing","index":144122,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"f920c124-20a3-4b70-b38a-8d776c3642de","direction":"outgoing","index":144123,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"af1f3fbb-4889-4af9-95f8-87bc7907996c","direction":"outgoing","index":144124,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"d2b4e8fd-1bc9-4a18-9b66-bf5153f91432","direction":"outgoing","index":144125,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"f9610f47-3f5c-4773-a8b8-9a334b874831","direction":"outgoing","index":144126,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"a8201b08-0a41-4d99-b55f-59b9b478c488","direction":"outgoing","index":144127,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6e8bd753-f793-42df-ac68-ac74cdc712b1","direction":"outgoing","index":144128,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.513-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"f7ddd5d0-f6c4-4dce-9ede-8e5bc17be3b8","direction":"outgoing","index":144129,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"b20507ee-ca27-4262-833c-b7a221fafa4f","direction":"outgoing","index":144130,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"41e34abd-696f-4b50-88f6-e57ca660ff38","direction":"outgoing","index":144131,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c140f7e1-1dff-4b3b-b0e6-9933b45259b5","direction":"outgoing","index":144132,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ec198d88-e719-473a-8674-a8a127e56db5","direction":"outgoing","index":144133,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.572-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"08e31f63-9f0b-422e-9927-9b2ea424dcab","direction":"outgoing","index":144134,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"230c04cf-cc30-4a0c-9cfb-4d8b87a92bbc","direction":"outgoing","index":144135,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fb2136ed-cfbe-40ab-a698-fdc70cffa86a","direction":"outgoing","index":144136,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"9e38d839-1c98-4518-a5a6-4f421452e9c2","direction":"outgoing","index":144137,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.620-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2f9eb960-90a7-4004-beaf-8833fd6f51cb","direction":"outgoing","index":144138,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f8337556-cbd8-4012-a4fb-41432215a847","direction":"outgoing","index":144139,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.644-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"046a05a2-7a96-4791-8ed5-eb7dc2bafc04","direction":"outgoing","index":144140,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"7f594b97-075d-442c-9c34-2c3f5c2b08ec","direction":"outgoing","index":144141,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e9e424fd-3403-4631-b01f-eb4113360b0e","direction":"outgoing","index":144142,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f9c56a4c-d23e-4172-9196-4ddd2139d013","direction":"outgoing","index":144143,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c428dd39-e612-40a8-9e37-99ae5455792d","direction":"outgoing","index":144144,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d3c761ea-18bf-42c0-890e-2b64fc35e5e3","direction":"outgoing","index":144145,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e63e6e4f-5ee5-4e5f-af02-260bf3082334","direction":"outgoing","index":144146,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"98d0b53d-f004-4d0a-be91-013940eb401c","direction":"outgoing","index":144147,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"d335f2e2-4777-4899-8856-15a804993a55","direction":"outgoing","index":144148,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"d0c88bdd-cf52-4959-8b8f-3e4521dba3a9","direction":"outgoing","index":144149,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.765-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"04e63e12-70c4-421b-aa97-929d143c2a33","direction":"outgoing","index":144150,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"874bfdc0-64c6-4161-acc2-691aa3668a01","direction":"outgoing","index":144151,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"62d38821-2e53-4088-a4eb-ebf7cf7bd0cf","direction":"outgoing","index":144152,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"947bed2a-4787-4298-ac23-f989e2d7c119","direction":"outgoing","index":144153,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e99f2327-51ab-4d94-a89f-8ea833f323d4","direction":"outgoing","index":144154,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.823-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"064ab6f0-b6b5-4001-b73b-986f9ce70bf9","direction":"outgoing","index":144155,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"650230e2-a3a0-4a9d-936e-b7ab81a34d09","direction":"outgoing","index":144156,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"da421d01-deac-43a1-a9af-d8018616b1c6","direction":"outgoing","index":144157,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a97f7e51-6057-462e-849d-5a704c425ce3","direction":"outgoing","index":144158,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"471f4fc2-5e8b-4e27-bd20-6b32b8ee0bd1","direction":"outgoing","index":144159,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"86da864d-7ab8-44e1-97e2-35ebc99849b0","direction":"outgoing","index":144160,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7336935c-ef5e-4d38-968f-553a7631fa72","direction":"outgoing","index":144161,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7dfaea47-9977-4972-ada0-78d9569c090b","direction":"outgoing","index":144162,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"90adb5a6-a687-4047-82b2-7e5ab3203b12","direction":"outgoing","index":144163,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"07d63efd-0dbf-4dd0-9b58-3482fcf71955","direction":"outgoing","index":144164,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"98a7be49-cc99-4c11-988b-2952a32699dc","direction":"outgoing","index":144165,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8aba1b8c-1cb6-483c-85fd-51027136e11e","direction":"outgoing","index":144166,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"91ecfd73-5c81-4699-8202-008bf6609a4d","direction":"outgoing","index":144167,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"6ad7751e-ff0e-4d6b-acfa-2d42e1fc6bf0","direction":"outgoing","index":144168,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"86e9b49d-1a96-4ba1-bb40-80533381c2e7","direction":"outgoing","index":144169,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:16.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"13bc7722-f3aa-4cfa-8f59-19d32913136e","direction":"outgoing","index":144170,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"4df87477-cd0f-4de3-a1da-640f5baa0155","direction":"outgoing","index":144171,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"e415060f-d29f-4c02-8dcf-6ade68574643","direction":"outgoing","index":144172,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"9650fdef-e7a9-4255-acfc-47b200dd1efa","direction":"outgoing","index":144173,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ceb42482-2a79-4079-97eb-62bf5fdc3415","direction":"outgoing","index":144174,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.059-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4435a38c-5b16-4752-a209-cb9f47b1533a","direction":"outgoing","index":144175,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=82a0bceb-dc75-4f95-b637-0687ae1842e7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7533b6d0-60de-44fb-9dff-c20d42bb5090","direction":"outgoing","index":144176,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=82a0bceb-dc75-4f95-b637-0687ae1842e7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"98e0e057-6874-4952-8613-1b9f0fdb325d","direction":"outgoing","index":144177,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=82a0bceb-dc75-4f95-b637-0687ae1842e7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf7f3688-a45c-4708-84f1-aa7597e752c6","direction":"outgoing","index":144178,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.109-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4f4a2de8-4b28-4785-bd5e-496c675ee405","direction":"outgoing","index":144179,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a525adb0-d3c3-4113-8935-fc0f39bb6d6f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e83f21c-851f-4c4f-9535-2efa9294e113","direction":"outgoing","index":144180,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.132-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a525adb0-d3c3-4113-8935-fc0f39bb6d6f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a4cdbd8a-4cca-4dc7-ace3-6412185890d2","direction":"outgoing","index":144181,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a525adb0-d3c3-4113-8935-fc0f39bb6d6f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92ee2391-ca5b-47f9-a2f1-c719d3f4f086","direction":"outgoing","index":144182,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"521e9636-ff98-4ed9-8a4d-9830a291d9a0","direction":"outgoing","index":144183,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ec56c6e5-66b8-4d37-97ac-f06fc076d34d","direction":"outgoing","index":144184,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"55ee2a53-7065-4ede-8d60-14241d61efbc","direction":"outgoing","index":144185,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fd1d7fce-ed49-4968-958a-9e3feaafbeb2","direction":"outgoing","index":144186,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"e48cbbce-1da6-48fa-8000-420fc67e7f50","direction":"outgoing","index":144187,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"a6944e72-c87e-4ac3-b392-3bc381b588e1","direction":"outgoing","index":144188,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"9c504cfc-0490-423e-a67a-ac989e2c675a","direction":"outgoing","index":144189,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"d31e17ab-e699-4f4f-8dec-d6d170e70339","direction":"outgoing","index":144190,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"1f86d04f-c83a-43cc-82f4-45b1439894ac","direction":"outgoing","index":144191,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"2bc5bee2-4039-423a-aaf0-d9fafbc002ed","direction":"outgoing","index":144192,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"4002b611-8d43-4037-8bd0-2dbbe1195035","direction":"outgoing","index":144193,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.280-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"6dad0afd-ee1a-4ace-b596-d33dce7dfc56","direction":"outgoing","index":144194,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"13fc6d64-1a86-470e-b184-51ff1562bbce","direction":"outgoing","index":144195,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"2596d818-f780-4af3-be93-aa1113ef7f71","direction":"outgoing","index":144196,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"84cd7d3e-49be-4cdc-9695-9d1470899810","direction":"outgoing","index":144197,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"c9562f96-cd94-4816-9f78-dbcbc180a238","direction":"outgoing","index":144198,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"994896ed-a9d0-40cf-be91-b49f2debf812","direction":"outgoing","index":144199,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.344-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f0f1b1aa-a5bf-4e70-9349-db70c2ce5486","direction":"outgoing","index":144200,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a8efb3be-b4c8-4574-b75b-fbf055bdb3c6","direction":"outgoing","index":144201,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e7fd25ec-fb4b-471a-b391-7cae99278b3c","direction":"outgoing","index":144202,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1f8e6010-1de6-4e14-99e8-be200321bfc7","direction":"outgoing","index":144203,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7428fd29-2c89-42af-acb2-cdc08fc5d1f5","direction":"outgoing","index":144204,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2a0d3b7e-86c0-4b61-9c31-4d1dd7193c34","direction":"outgoing","index":144205,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.409-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ace815e2-2b87-4466-b029-38f9d2df93c8","direction":"outgoing","index":144206,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b62fcad4-aae1-4d3b-80e6-b96a93103cbb","direction":"outgoing","index":144207,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c2da5493-0d74-4966-82aa-5a10eaeb9132","direction":"outgoing","index":144208,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3ff80110-a3fe-467b-8d63-f197fd6554eb","direction":"outgoing","index":144209,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4fd98369-746a-4d87-a14d-31f04fcaee06","direction":"outgoing","index":144210,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"18746a0c-f33f-41d1-9679-3cd518fd9777","direction":"outgoing","index":144211,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"fde8c92f-aaa0-4ae9-8013-ce837c38afa0","direction":"outgoing","index":144212,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e71bb7f3-2d01-4190-aa6f-2fc4340a1b41","direction":"outgoing","index":144213,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"f4bdefef-86c9-4555-b376-61bf5568b837","direction":"outgoing","index":144214,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"fc20a4ca-5d2e-4ff1-816b-0583e0f747cd","direction":"outgoing","index":144215,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"a04493cc-7ee1-4ddf-b042-331b2cdb7c80","direction":"outgoing","index":144216,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"41d04ccf-86da-45ae-acb6-921381b825ff","direction":"outgoing","index":144217,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"724eeb99-32fe-4860-aad8-1a58cab11436","direction":"outgoing","index":144218,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a22a66a7-d6bb-48ad-bfa6-103bc37a33bc","direction":"outgoing","index":144219,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f792b96c-ce83-4250-a1d0-27411799fce8","direction":"outgoing","index":144220,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1fbd46a1-3006-4a8a-80d5-b43f4b6e1e69","direction":"outgoing","index":144221,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dcd9b88f-7b22-4d31-9fc4-fbcb49293d6d","direction":"outgoing","index":144222,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"74c77f12-504d-4168-bb57-2abb9c292c60","direction":"outgoing","index":144223,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7e89a42c-96bd-436f-9d0e-d5fd8c10f262","direction":"outgoing","index":144224,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0fb74075-7d6c-4dc8-a1ba-ea9d4b8e0171","direction":"outgoing","index":144225,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8bd91130-f5a2-48a4-916d-e4427974117e","direction":"outgoing","index":144226,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.665-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1847c55e-b86b-4daf-bd9a-93dfd45b7efd","direction":"outgoing","index":144227,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"66c45ba2-b431-4164-bf0a-46fc5dbb100f","direction":"outgoing","index":144228,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fe1faa1b-3ef6-44ff-bd31-20613cccee99","direction":"outgoing","index":144229,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b5fdf705-7bc4-4216-845d-6f66ee165153","direction":"outgoing","index":144230,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d619da88-202e-4b51-8933-9a2c25afcec5","direction":"outgoing","index":144231,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e83bb8f4-c976-4b67-8cc0-0260f803fa16","direction":"outgoing","index":144232,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a4ef86f6-736e-4094-9001-45092d5076c5","direction":"outgoing","index":144233,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0982df50-0ef0-4e4d-a6c6-5151e14e1a56","direction":"outgoing","index":144234,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"58eb7092-aba7-456d-9e91-de4ba7465961","direction":"outgoing","index":144235,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.778-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"948ae68c-fb84-4427-a62d-1ddbab8fff9c","direction":"outgoing","index":144236,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"8a10db90-491a-40c5-8b23-afc9b24e1863","direction":"outgoing","index":144237,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"eb633f0c-26b8-4da2-aa4a-2e65a9fb3456","direction":"outgoing","index":144238,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"2ba34a1f-5c18-405e-abfd-183223fdd935","direction":"outgoing","index":144239,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"1a74dcb8-bd05-43f0-9e1c-05393c17b5d6","direction":"outgoing","index":144240,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e53b6f2a-2a34-4599-8b76-663bcd717df6","direction":"outgoing","index":144241,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.848-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9449c0e9-ae08-492a-ab11-59774cb34bfc","direction":"outgoing","index":144242,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"a4817cb2-1f78-41ca-bca2-80a01d8a3697","direction":"outgoing","index":144243,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"9b0c7243-5cd7-4b1a-86c2-9515f2634f8d","direction":"outgoing","index":144244,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3de62e73-dae5-4ada-b411-300c9bace4bf","direction":"outgoing","index":144245,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8ffa6c98-75b7-418a-839b-4a4657465af6","direction":"outgoing","index":144246,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"85457845-6964-44f0-859c-75b12868f69d","direction":"outgoing","index":144247,"result_id":"8d38c151-5a18-46f8-ab02-38fd9aaa0735","status":200,"timestamp":"2026-05-22T21:15:17.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_patient_code_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:15:16.160-04:00"},{"id":"d169ac5f-e326-4089-a866-6c154c652a41","created_at":"2026-05-22T21:15:45.333-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"cdc426de-2cc6-4814-8f03-32123f7ebf7d","direction":"outgoing","index":142604,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"6e179045-07b7-4b6d-add4-f38b725a0d02","direction":"outgoing","index":142605,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"302adaa8-6ddc-4cc0-b893-228ad0f5af77","direction":"outgoing","index":142606,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"a33390a3-2ec0-43c9-b349-fd0ccec443a9","direction":"outgoing","index":142607,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6cd9e383-aa87-4c04-b34c-537fc54967ab","direction":"outgoing","index":142635,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.262-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"952a933f-e2ad-4c7e-bc57-99224ce680af","direction":"outgoing","index":142636,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d709b7fd-0ffe-4633-8b4e-3997d082dd1c","direction":"outgoing","index":142637,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2bc0751-0e8e-4dea-b431-39ddb1697b30","direction":"outgoing","index":142638,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8b14926-db7a-4ea1-a63c-9160b43b5d30","direction":"outgoing","index":142639,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74e58aab-8af7-4c30-a0cb-727cb923218d","direction":"outgoing","index":142640,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"755409b3-717d-41c5-af81-d020c017f5d4","direction":"outgoing","index":142641,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1eacb845-1941-4472-b1d4-d01121559c20","direction":"outgoing","index":142642,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd561ed9-8877-42f4-9a1b-420a1b063cc2","direction":"outgoing","index":142643,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6214e1ea-55be-4575-825e-89e3e3d291c3","direction":"outgoing","index":142644,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e6dcd32-8a6c-4981-a151-708e98212e9c","direction":"outgoing","index":142645,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2494dda3-0fc7-45f9-aec4-2edb5f2a069b","direction":"outgoing","index":142646,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25a2e270-5ed3-44ab-995b-2bf90178b3a3","direction":"outgoing","index":142647,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6cbdbd4b-d00f-485f-8e5f-a93b8093067b","direction":"outgoing","index":142648,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81034d61-0a3f-4f26-b251-809bad5f46e6","direction":"outgoing","index":142649,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2be0c399-6028-46cd-92d5-3286378cc46f","direction":"outgoing","index":142690,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"25158941-9eb4-4e49-9170-456f0a7e610c","direction":"outgoing","index":142691,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c11c0fa-4b4c-4ed8-a6aa-6deb377fa44c","direction":"outgoing","index":142692,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22e5b4eb-be58-4a82-98e1-b6c62da0a29c","direction":"outgoing","index":142693,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab4f9d09-097a-4d19-9a5e-037365fa161e","direction":"outgoing","index":142694,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e63a9557-3ad7-4421-a5de-b86ace65e0e5","direction":"outgoing","index":142695,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"240ebfa4-c1a1-4526-aa25-0bdaa8511916","direction":"outgoing","index":142696,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ae998-0452-45ec-b43f-716ba451a2f1","direction":"outgoing","index":142697,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c9597d33-73ea-4016-90f8-a9f36951dda1","direction":"outgoing","index":142698,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4cd743ae-233d-4fcf-891d-b64f71b54c97","direction":"outgoing","index":142699,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c89233c-a760-4bba-af6f-169ec232ce32","direction":"outgoing","index":142700,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"cd3f8d1f-00ba-427b-b2d5-37ae87711b3b","direction":"outgoing","index":142701,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"063e2198-8ead-4f45-ab2e-978706d5ec01","direction":"outgoing","index":142702,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c24e16c-1cae-4d4f-ae24-0dcda29b9954","direction":"outgoing","index":142703,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9235a963-847d-4a05-8e47-3b0a39aee809","direction":"outgoing","index":142704,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"851d4890-9ec7-4594-a53c-2aa35397dfab","direction":"outgoing","index":142745,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"b57d441b-b33f-424c-b902-9ff0ac6e0b51","direction":"outgoing","index":142746,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2b98d4d-3275-4d0d-ab38-cbbc1ccbc684","direction":"outgoing","index":142747,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92a4c345-2406-45bb-818e-f40c81ed13a3","direction":"outgoing","index":142748,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78c48a6-a914-4a18-bc56-426212ba68f5","direction":"outgoing","index":142749,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d162caa1-c6cc-456d-b00d-20e9726d8f38","direction":"outgoing","index":142750,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"36e4143e-1438-491c-887d-65817478d9dc","direction":"outgoing","index":142751,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46c07a6b-8422-4f54-bcd4-244749cc1b47","direction":"outgoing","index":142752,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"925e81f3-4815-4362-b34c-48ce21c83b4b","direction":"outgoing","index":142753,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"199f0a93-4c00-4204-b6bb-6accfa4a57b9","direction":"outgoing","index":142754,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1853402-2806-45ab-b3ce-b9bfcee35b11","direction":"outgoing","index":142755,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6b00bb07-f9dc-45ec-b2cd-a1c57a31b9c0","direction":"outgoing","index":142756,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"938f994f-bbfc-4e74-8a54-ae7b5e498a72","direction":"outgoing","index":142757,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20692c7b-8d27-45d1-b22a-839e592d47b8","direction":"outgoing","index":142758,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2a9850b-faad-47fd-a0eb-8e21466fcc96","direction":"outgoing","index":142759,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5709320-c47d-4285-b583-308b10cf19b7","direction":"outgoing","index":142798,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"cac99f20-1f01-46d7-b3b1-b229c2f3cabb","direction":"outgoing","index":142799,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60b3bfac-49ed-40ce-be4d-65d53822eccd","direction":"outgoing","index":142800,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1149c244-ed8d-49e1-9c51-a919c62d84a2","direction":"outgoing","index":142801,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"91ab9353-6ad2-4039-bd07-3870fa84b0a8","direction":"outgoing","index":142802,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dab17b1-afa5-4c00-9b16-443d7e1ac86b","direction":"outgoing","index":142803,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c031e3e3-28e3-4aa1-b33d-93dc9943ec7d","direction":"outgoing","index":142804,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"5436d130-7c0a-4cce-aa0e-8d673d20a1e3","direction":"outgoing","index":142805,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc02c961-4e5b-433d-a0f1-8fcfe2e464ce","direction":"outgoing","index":142806,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5677e1a9-b297-454b-b58d-812b304cb07f","direction":"outgoing","index":142891,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"f0d3f1b6-9d25-4e30-935c-bacd4e96e731","direction":"outgoing","index":142892,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"28c9146b-e18f-4437-86e4-eaad79be34b1","direction":"outgoing","index":142893,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"b1f77ac4-37c0-41c1-b1ef-e52930fae94c","direction":"outgoing","index":142894,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"337fd234-4180-4ffc-9294-78048c8fd7ed","direction":"outgoing","index":142895,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f055dc7-67a8-4d48-a88c-ada89ad0aed5","direction":"outgoing","index":142896,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e1097dd3-142c-46a8-8d4b-a8965711e384","direction":"outgoing","index":142897,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ffdb9588-5e00-4b67-a91d-cad254bdf106","direction":"outgoing","index":142898,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c2b63c3-1c6b-4e12-ba70-68bd77f0542a","direction":"outgoing","index":142899,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8f06415-2730-4d2b-8027-bb3fe6e3753f","direction":"outgoing","index":142900,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"427007dd-7af3-4bda-9fdf-bd16deb73504","direction":"outgoing","index":142901,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20dc6b58-7c58-484c-917f-5ffbd15bc17b","direction":"outgoing","index":142902,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fbe6292-82ed-499b-9afb-5347acb71e1a","direction":"outgoing","index":142903,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ccc34576-b269-4491-8642-f8e8dad21cfa","direction":"outgoing","index":142982,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1984105e-1dfe-4380-b636-7927c47baaf2","direction":"outgoing","index":142983,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8df43090-93c6-4390-a849-b4d80445bb87","direction":"outgoing","index":142984,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"933f7135-6a35-4160-aeac-b84ea0bca97a","direction":"outgoing","index":142985,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.024-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"95fac879-714a-41b5-bdac-04711e03cf63","direction":"outgoing","index":142986,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa35a4f1-691e-45b0-a9ac-3501195e4f82","direction":"outgoing","index":142987,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7bb9ec1-b6cf-4075-951e-5826af0a2bee","direction":"outgoing","index":142988,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"dbeb5882-6265-413e-bbac-1c5ee56b28ed","direction":"outgoing","index":142989,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"acc2b288-70f6-4c36-b7eb-349d66b66378","direction":"outgoing","index":142990,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed0d9765-3af3-49ba-8a8c-3baef1afa4d2","direction":"outgoing","index":143023,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9b914a42-3356-4578-873e-ec9299be9cba","direction":"outgoing","index":143024,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3f4a49-9e2a-4826-8708-f4ed7a59887a","direction":"outgoing","index":143025,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2565936e-769d-4fb6-9e81-0b12e3ecd2f1","direction":"outgoing","index":143026,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"962d7666-2129-4fc3-b0ce-a8cd9a761be0","direction":"outgoing","index":143027,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c39e4476-eef2-4b96-8743-e95ecf99b75a","direction":"outgoing","index":143028,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"429e5c16-58f1-423d-8c26-3a6fb3575c4f","direction":"outgoing","index":143029,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f4bde77-35dd-4cfd-9a9c-3d08ba6451f7","direction":"outgoing","index":143030,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03180678-fa41-4b98-9fed-cb2459206c56","direction":"outgoing","index":143031,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"968b410f-3ea8-4999-b261-b280e3dbcc59","direction":"outgoing","index":143064,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"559a5524-9ebe-4ae6-84da-3eae18f80e1b","direction":"outgoing","index":143065,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b7eba04-a0b7-4656-98f6-6ecef6ea887e","direction":"outgoing","index":143066,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e02524c-8fbe-42b5-bf9f-76300a1f4333","direction":"outgoing","index":143067,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"0a907206-bc85-4a7f-8035-c55adf933b7f","direction":"outgoing","index":143068,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"573bdf07-cff4-4612-86f1-ead7a4180d20","direction":"outgoing","index":143069,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17841c16-9241-4b41-92a6-a253a5fe3dd2","direction":"outgoing","index":143070,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b706f5b9-95f7-4752-a6ba-de44ca52af0c","direction":"outgoing","index":143071,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a10648eb-e811-41c3-8887-8d9d1675a121","direction":"outgoing","index":143072,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78d99a45-5835-47bd-aa88-9a99c60b76ba","direction":"outgoing","index":143108,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"9b22be4c-2695-4f7a-85ca-cf3a4b22b5d8","direction":"outgoing","index":143109,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"c9134509-6722-4736-a004-7a095a90e808","direction":"outgoing","index":143110,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"599676ae-896c-474f-9cad-5ed9560bddab","direction":"outgoing","index":143166,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"4cfdae07-f9f0-4349-83fc-29c8eea4f575","direction":"outgoing","index":143167,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"542a15f3-dafb-4f94-9ed5-9c6b3eb7b73f","direction":"outgoing","index":143168,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"289e2ddd-8194-42de-b887-eda5e6887848","direction":"outgoing","index":143169,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"944f9861-94e0-4265-9f29-8a3247dd3ebe","direction":"outgoing","index":143170,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05053937-5c5b-4ceb-a866-2baa1486fc3f","direction":"outgoing","index":143171,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"fb26e6d7-6097-4b2d-8790-375b54fb1c08","direction":"outgoing","index":143172,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e70d0a1b-3f81-41f4-b130-d10309bc3834","direction":"outgoing","index":143173,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12bf6013-568f-40c6-bf90-d25b9a65f4cc","direction":"outgoing","index":143174,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dee6ddd-4b7b-4f77-a14d-f5c55db8a061","direction":"outgoing","index":143175,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ecad1-03a7-4637-984b-ae7b4e16a328","direction":"outgoing","index":143176,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"5058ab18-7e8d-4134-8072-eb07767f04af","direction":"outgoing","index":143177,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35d6138e-c9f8-4140-9900-1809bfe25aa6","direction":"outgoing","index":143178,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39cfa167-20f2-4d5e-971d-2d29d8bfb796","direction":"outgoing","index":143179,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fff5e72-88e2-413d-bf17-824dc6026893","direction":"outgoing","index":143180,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31d17cab-8a97-4150-afdf-483aa74c39b7","direction":"outgoing","index":143181,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11707e61-a25b-4c3e-83aa-2a8a3817d520","direction":"outgoing","index":143182,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff1bc43a-fdfd-4532-8e28-5350645cde6b","direction":"outgoing","index":143183,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a88fb1e-21e8-49be-acd8-0e3150c4867f","direction":"outgoing","index":143184,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72aac27f-a306-4b13-88b5-83a0b9c6e141","direction":"outgoing","index":143185,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39c9309b-1a04-4160-9ccd-e44689b7bccd","direction":"outgoing","index":143186,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"e5a65530-a6a0-4d0c-96df-8a98ebde83f6","direction":"outgoing","index":143187,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce471f39-83a6-49f5-9d7e-a74b5ca21f92","direction":"outgoing","index":143188,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0b7114e-e6ad-4ff1-a997-c4cb591a2214","direction":"outgoing","index":143189,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3029e71-1b8a-40f3-918b-41256fd141c6","direction":"outgoing","index":143190,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad763595-bf50-4aa7-8e17-328fa457a28e","direction":"outgoing","index":143254,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"598c4d85-0521-456e-9d87-837c0594dc6b","direction":"outgoing","index":143255,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91a4fc6b-22df-40d8-8422-05bf6ebac015","direction":"outgoing","index":143256,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49ccc8f0-5979-4d10-8c08-a05cffcab940","direction":"outgoing","index":143257,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c27fda89-b188-424f-8bd3-c4d9a3f346ca","direction":"outgoing","index":143258,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e6335b1-cf9b-4710-adc0-8fd1ad1f051e","direction":"outgoing","index":143259,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"a0a43dc2-1a4c-4fa6-a802-a347da3c2d4e","direction":"outgoing","index":143260,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1c3dc44-28ec-41a9-b3b6-85d59e71f759","direction":"outgoing","index":143261,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbf2c7b2-77bf-47ef-afff-3ab8b03c1143","direction":"outgoing","index":143262,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96522724-5da7-4f75-8401-3a660f0457d8","direction":"outgoing","index":143263,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8bd2eb1c-0e44-46d3-81ae-aabf20e5b296","direction":"outgoing","index":143264,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"879026dc-3966-4a31-aff4-642ff2a1c795","direction":"outgoing","index":143265,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1381fc1e-2b98-49d7-aca9-bb96428a0a48","direction":"outgoing","index":143266,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0e0328a-b9c0-40fd-b759-93a312a97958","direction":"outgoing","index":143267,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78994cc-19ba-4a7b-9595-39cbb45bda4b","direction":"outgoing","index":143268,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11a6ce53-abc4-406a-bc19-d7b4ba843acc","direction":"outgoing","index":143307,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"1da2a6cf-6ee7-41a2-b7bc-e42cbb6346f8","direction":"outgoing","index":143308,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"b6167bdf-3813-41b3-ad21-b9ed1d008d4f","direction":"outgoing","index":143309,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"a8237eaf-3475-4416-b418-4c2c439c4136","direction":"outgoing","index":143334,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"32560678-a03c-4765-9fbc-61f3f765f93f","direction":"outgoing","index":143335,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22ec6ce2-7a19-4002-b240-ce3bdb772488","direction":"outgoing","index":143336,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f06420a9-06dc-4f63-b81e-03bf26d6b834","direction":"outgoing","index":143337,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2e3fd39a-1bd8-4513-9863-8866e54913bb","direction":"outgoing","index":143338,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0aea055a-cc71-480a-9c8a-55ff6b0ba888","direction":"outgoing","index":143339,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6b1627c5-5f5b-40c4-93c9-905ea4387299","direction":"outgoing","index":143340,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ba1f0012-302f-4e03-a33c-ad65b54fcf27","direction":"outgoing","index":143341,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c73f96c-4501-48c3-9df8-d0388b7d6bb8","direction":"outgoing","index":143342,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5be12322-d723-4200-9f13-d53efdecdec3","direction":"outgoing","index":143373,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"293d4ec1-7e40-4c27-be9f-c4cb1be2d037","direction":"outgoing","index":143374,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"077fbfe6-bb11-406c-aa28-e66405919990","direction":"outgoing","index":143375,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df39f632-4cb3-430e-8236-2ce572e91fc3","direction":"outgoing","index":143376,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"45098c8e-1a69-44e4-8916-f528703a569c","direction":"outgoing","index":143377,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1777740a-4aeb-4ca8-97c1-21811bdb5a5a","direction":"outgoing","index":143378,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3800ff8-e00a-4340-a9f6-4781fd8fad1c","direction":"outgoing","index":143379,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b0971d3f-5e82-4c80-8929-f5b3bc3e5f1d","direction":"outgoing","index":143380,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1188378-9352-4931-8e1a-68437e2410db","direction":"outgoing","index":143381,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2acf059e-0dd4-4bcb-95f1-eab2f497c6c5","direction":"outgoing","index":143415,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"85e6e14b-b177-4504-917b-5e1ec1e9b6a6","direction":"outgoing","index":143416,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"d50bd030-d841-45e0-be69-efe00fdad279","direction":"outgoing","index":143417,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"f41147f6-2769-48fc-a6dd-7eb052dab7ed","direction":"outgoing","index":143418,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c046b7e-9949-4edc-a7c6-652dbce528bc","direction":"outgoing","index":143419,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56c9176b-0c8b-4d91-b879-1c93888ea0ca","direction":"outgoing","index":143420,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6e81cba-dfb1-4830-982d-7856e7c0e34e","direction":"outgoing","index":143421,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47cd19db-85f3-471d-967c-b98d7271b57d","direction":"outgoing","index":143422,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1112898a-de35-41ff-9265-bd0971dd86a5","direction":"outgoing","index":143423,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"954c117e-3e0c-4283-9567-72fb8ef1fde0","direction":"outgoing","index":143424,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76f8b14e-9f21-493f-9bf9-2d04157bcf8c","direction":"outgoing","index":143425,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc5e319a-622a-4744-bad3-9843c307b646","direction":"outgoing","index":143426,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5fc23602-4153-410c-910f-2925ad987443","direction":"outgoing","index":143427,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f946d7d-cd3c-4269-8c96-dd2a68a359d1","direction":"outgoing","index":143457,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8b215bf6-a736-46a1-9ef0-25eb5d7cedb7","direction":"outgoing","index":143458,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7c53d4e-c013-4beb-bf95-f3f387cf17e2","direction":"outgoing","index":143459,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8e73985-cb0a-465a-a729-afe822ba939a","direction":"outgoing","index":143460,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"18d833a5-0138-41b5-9d33-23b4a2bc9f7f","direction":"outgoing","index":143461,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b9cb9c6-d075-41e0-a00a-e846381a5b48","direction":"outgoing","index":143462,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16e62a15-619f-4552-bd67-dd9e58e35e61","direction":"outgoing","index":143463,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"60f4b77e-4ac1-4347-a99e-3b158eed212f","direction":"outgoing","index":143464,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7efb76b-cff5-48cb-b03c-fc423d385cf9","direction":"outgoing","index":143465,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c213e4dd-0ebd-4011-a2cc-6ce7daaea039","direction":"outgoing","index":143519,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fa252a59-0c36-48c1-8ede-e02b4e225a0d","direction":"outgoing","index":143520,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fd17024e-96cd-457a-b844-9d22f6bf193f","direction":"outgoing","index":143521,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"b81fc460-170c-4151-84bb-84d0483bdd9f","direction":"outgoing","index":143522,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"8bc30444-2575-415c-8ee9-1adf435943a0","direction":"outgoing","index":143569,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"22b41fd8-21e3-4797-bb1a-b2020d3c8334","direction":"outgoing","index":143570,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f08e513-4511-43d8-a5a1-08cf3a50f854","direction":"outgoing","index":143571,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8055ba9-0e68-4494-9021-d51c27eefdab","direction":"outgoing","index":143572,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f86548dd-f4c8-4344-a937-1715da770c05","direction":"outgoing","index":143573,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e70cd87-975e-4e15-a89d-d3b4552421ee","direction":"outgoing","index":143574,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4935bdf-596e-489b-9994-21953b37ab6c","direction":"outgoing","index":143575,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"713a273b-1870-4215-9b4e-930876cf316f","direction":"outgoing","index":143576,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88d9aeea-0a08-4952-b1a6-b134718df6a2","direction":"outgoing","index":143577,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f97cd38-f8c0-40a5-8495-4fdb1802fff3","direction":"outgoing","index":143610,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"83b36181-9120-4897-8cdd-9c93d991f7a1","direction":"outgoing","index":143611,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e744160-f20d-424f-8925-0c3ef1f80a68","direction":"outgoing","index":143612,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ae845c-586e-4c5b-98ea-c8f660a37f1e","direction":"outgoing","index":143613,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9bf7e0b1-e401-46dc-b76a-7e07a154877a","direction":"outgoing","index":143614,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"948c995d-294e-4f48-a69f-a87fae18626f","direction":"outgoing","index":143615,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a026f5d4-1610-442f-9e59-9355032af082","direction":"outgoing","index":143616,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"e204b9e8-7e0e-4734-a6a2-09790499a66c","direction":"outgoing","index":143617,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de25e52-39e3-4ce9-8a05-1768cd23bc51","direction":"outgoing","index":143618,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47be4939-11d5-44d7-8123-1d284d635073","direction":"outgoing","index":143651,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1f4f37d0-a743-4f29-ab20-5b578bf99eb3","direction":"outgoing","index":143652,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e158617d-749a-4f74-bc92-04486b9c1a49","direction":"outgoing","index":143653,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e618ba7-5c63-4a0f-8462-e2ba22317d1c","direction":"outgoing","index":143654,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"26317b80-1191-4d47-b128-a34265bb60b1","direction":"outgoing","index":143655,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"02d11ca5-66e1-4107-bb5f-15bb1d8df620","direction":"outgoing","index":143656,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dad32566-efb3-49ed-8a05-5f357d185c2c","direction":"outgoing","index":143657,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"8d0a5baa-c291-48ca-9c08-7180c5707ed3","direction":"outgoing","index":143658,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcb495ec-1667-4719-86e7-a90286ef545b","direction":"outgoing","index":143659,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5d0bd8e-676e-409a-bb11-1d88074092c9","direction":"outgoing","index":144248,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"9aa1321b-a58f-483c-aadb-e8fa9d354188","direction":"outgoing","index":144249,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"053f6004-9d98-4ae2-ab6d-7781952a03ff","direction":"outgoing","index":144250,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"93885003-4b96-403f-a0b7-902a34ab4fd6","direction":"outgoing","index":144251,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"25affe6b-d00c-4010-946f-9f087fe8320c","direction":"outgoing","index":144252,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"83a669d8-65a6-4605-a324-7c67bc242064","direction":"outgoing","index":144253,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31b68173-358d-4cd8-a2d9-9aed185d0860","direction":"outgoing","index":144254,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35d9881a-ff56-4788-bc1c-31150c6b7cbb","direction":"outgoing","index":144255,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74e0f4db-6ab5-460e-b37d-2d0c2591f03a","direction":"outgoing","index":144256,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"795888fa-a656-4b5d-9768-7b5d6cb206d3","direction":"outgoing","index":144257,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"8188714b-fffe-40ee-89f2-9f119be6d0d6","direction":"outgoing","index":144258,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a7f34260-f549-4409-b71c-8ea17daff989","direction":"outgoing","index":144259,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90b383e9-314a-4c9d-a052-9de257965f12","direction":"outgoing","index":144260,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25b24e7f-5c60-46ff-93c5-b3bfeb22092b","direction":"outgoing","index":144261,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b696335c-1e60-4984-8829-a7deeb794448","direction":"outgoing","index":144262,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"470ee82e-f5e0-47bc-a629-99172465fb6c","direction":"outgoing","index":144263,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"616155c4-f131-401e-88fa-b013874e26b4","direction":"outgoing","index":144264,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"161886f1-30e3-48eb-abba-d48167e34385","direction":"outgoing","index":144265,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.740-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca41deb9-4513-4d49-9cb4-83ea77ee258b","direction":"outgoing","index":144266,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.755-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa74f1cf-0014-465f-8fa2-72a382d2d5e2","direction":"outgoing","index":144267,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"816bb457-e99b-4442-beca-8237521756c5","direction":"outgoing","index":144268,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4d4476f-9e4b-45ad-a722-2b153affcb89","direction":"outgoing","index":144269,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.800-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18374b69-43de-4aea-b053-bbe98b14d352","direction":"outgoing","index":144270,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.812-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa300b3a-68f5-42d0-83c3-ea9d6bb0f458","direction":"outgoing","index":144271,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.825-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb3c4269-29e6-4660-83a6-b7f8f760cbd8","direction":"outgoing","index":144272,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"04fa5834-364e-47eb-b6d5-cd0213869cb9","direction":"outgoing","index":144273,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa76dbfc-fd35-4636-8c5f-c0d28f224d17","direction":"outgoing","index":144274,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af172ae6-ddce-4a03-9f16-8159a559eef0","direction":"outgoing","index":144275,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd179c38-6269-42c1-9f2e-a0388961b845","direction":"outgoing","index":144276,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a22f9c0-3448-4519-ad08-eec50a4b931c","direction":"outgoing","index":144277,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"332c902b-b14d-4705-99e1-8d81f76acfdb","direction":"outgoing","index":144278,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.912-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39585dc6-c07f-4d74-953c-46c36df2aae2","direction":"outgoing","index":144279,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfbcf58a-65dc-48ab-99f0-082d108c57d7","direction":"outgoing","index":144280,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b807f5e7-7f01-4fa3-b4c2-f4b008425515","direction":"outgoing","index":144281,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"68b4e8ae-87d1-4dcc-bfbc-a70bb50edbae","direction":"outgoing","index":144282,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"92d7307e-befe-48ee-841e-618baeba7d39","direction":"outgoing","index":144283,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:45.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1bdfba53-355c-4bb0-a057-c35c75427c08","direction":"outgoing","index":144284,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.017-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0126fa39-7785-4a56-92bf-b16c35ac0958","direction":"outgoing","index":144285,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31e1a0c8-3cc2-4c2f-a54e-f9766d94aa34","direction":"outgoing","index":144286,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c10a75ad-5f76-4b26-be59-38297d4fcc1d","direction":"outgoing","index":144287,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"74591b04-c832-4e8b-8257-bf8331c55c49","direction":"outgoing","index":144288,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c2b4221f-7b36-489b-9447-2181168915b2","direction":"outgoing","index":144289,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9fbbd726-5789-43e7-b3d4-abdc71b5c3f5","direction":"outgoing","index":144290,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.101-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39919de2-46e7-4161-abdd-cbec046c2a22","direction":"outgoing","index":144291,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"209c0c08-86cd-431b-b8bf-4356772335ac","direction":"outgoing","index":144292,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"af8cce12-ace0-4ba3-9d60-4ced0e8cbfad","direction":"outgoing","index":144293,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5c3f495-a1bd-41ac-a230-834884fb6ce3","direction":"outgoing","index":144294,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb65b0d2-ddb3-4d02-8b4b-c623980c7710","direction":"outgoing","index":144295,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7e9c5ca2-e9e6-4531-9c07-b24d3a9dc3a2","direction":"outgoing","index":144296,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"312ff49a-2d6f-4b20-ab64-e93a79d851f3","direction":"outgoing","index":144297,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"ebf523d2-4d31-45ae-b3de-e4b3cf087a64","direction":"outgoing","index":144298,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"e3286c2c-2613-4d2b-940a-5f1792fc7080","direction":"outgoing","index":144299,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"4423029a-6e29-481f-961a-95aa67f7075d","direction":"outgoing","index":144300,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"6b8ef7b2-db5e-4a3a-881a-f0d5de857402","direction":"outgoing","index":144301,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"113cd09d-9742-49a4-9411-af0e2eea3432","direction":"outgoing","index":144302,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"93db092e-f10e-4e38-b991-435fcdcf0781","direction":"outgoing","index":144303,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f1ccbaab-e3c2-45ba-9a4e-0391d632c4f2","direction":"outgoing","index":144304,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59516fe2-402d-42a4-827d-b921bd70a13e","direction":"outgoing","index":144305,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd1b1e44-699c-404c-9bcc-b79742c023ef","direction":"outgoing","index":144306,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"307e0591-89af-4d61-965f-dd7b5a95c0a0","direction":"outgoing","index":144307,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d26482bc-c975-45fa-9404-a0a9c4dd4862","direction":"outgoing","index":144308,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.331-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6960d59-e0aa-40ea-8acc-9e27a24744e0","direction":"outgoing","index":144309,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"221aab5b-81b9-4d55-bb1d-0a60b9612fdb","direction":"outgoing","index":144310,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8bff9c7-ca01-4afd-b0e5-ed2804c92780","direction":"outgoing","index":144311,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13bd7fe1-d027-4e0d-a888-7360c14a8cb9","direction":"outgoing","index":144312,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.381-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"d7317133-f427-41ec-8fce-8d12ad659da4","direction":"outgoing","index":144313,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.393-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"ffcd2d5e-fe7d-442f-8766-7009d9355ecb","direction":"outgoing","index":144314,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"6e7f4d22-55eb-436c-bdf5-d0eef2a1c953","direction":"outgoing","index":144315,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6eb021fd-fcd3-48f2-9142-b5535b8b7fa1","direction":"outgoing","index":144316,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"ec485c14-54ee-4d68-9c3d-b497b5d08686","direction":"outgoing","index":144317,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"db833afa-5faf-4d70-925a-e39c67d2228e","direction":"outgoing","index":144318,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"9f21ea64-6337-4fe4-94b6-f5ecde311e97","direction":"outgoing","index":144319,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.468-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"5620143d-3be7-433e-b8c3-17ebf380e861","direction":"outgoing","index":144320,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"7474a659-d0d7-4812-b95d-e128d095b0da","direction":"outgoing","index":144321,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"93319d3f-a5ad-42ac-954b-f1e94d884466","direction":"outgoing","index":144322,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"d5a02a09-cdd3-4542-a14b-bfab6c2b7f75","direction":"outgoing","index":144323,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"e8997eea-991d-4860-b0a9-eb50a46886e2","direction":"outgoing","index":144324,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f83908e-9aba-4f19-93b1-4aa2f5c6dc0b","direction":"outgoing","index":144325,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"9ef9930a-ff1d-4c83-a4a6-c948292445f7","direction":"outgoing","index":144326,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6543d1c3-827b-416d-81b0-7aad0b5042d3","direction":"outgoing","index":144327,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ba3143e-26aa-4077-baaa-808c67bf70c7","direction":"outgoing","index":144328,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"00819366-26a1-4cce-8a92-7eeb059b5b67","direction":"outgoing","index":144329,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a058c53d-c5d4-41d6-8b83-d9e652923e94","direction":"outgoing","index":144330,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"dad20539-9746-4b75-a081-413167117254","direction":"outgoing","index":144331,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0f278ce-176e-49ef-b2e7-59fa282d01dd","direction":"outgoing","index":144332,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.637-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cc53de7d-d5d0-403e-964d-f72858ba9353","direction":"outgoing","index":144333,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e65939c2-535e-41e2-84bc-d14b50c7a572","direction":"outgoing","index":144334,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"581b6592-2006-4422-b7d8-9190fb222efd","direction":"outgoing","index":144335,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"780a74db-1dad-48a7-9dc5-4dd03537ca28","direction":"outgoing","index":144336,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3251b3a3-c351-420f-b60f-23e10ec2623f","direction":"outgoing","index":144337,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"efba74e4-d9da-4af1-a0e3-0fd80edccd76","direction":"outgoing","index":144338,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2d04390a-ec48-4380-837d-416369a067ea","direction":"outgoing","index":144339,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.715-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"241a43f3-d336-4a27-a6ca-6870dc4881f1","direction":"outgoing","index":144340,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31d08cba-cb4a-4365-9de0-cd9ec89a5cb8","direction":"outgoing","index":144341,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58373871-b5c9-47b5-80b0-65a4f741203c","direction":"outgoing","index":144342,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09e0b35c-922a-4e31-9b4c-8f5959fc7fdd","direction":"outgoing","index":144343,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d4a4922f-55b8-46f6-b646-9a7cc813ab53","direction":"outgoing","index":144344,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.776-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"75a7a782-4b95-4afc-a226-8f203e3f3e44","direction":"outgoing","index":144345,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"e20fc5a5-f2d8-4f26-8124-c46e588cdcce","direction":"outgoing","index":144346,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ab4f921e-a611-4d6e-a308-e9e5fe8b8ec0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"502040f0-4bda-435c-a463-c49569c43605","direction":"outgoing","index":144347,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.861-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ab4f921e-a611-4d6e-a308-e9e5fe8b8ec0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"298bfc27-8d88-43af-bf2f-2dc5ef95a6a6","direction":"outgoing","index":144348,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ab4f921e-a611-4d6e-a308-e9e5fe8b8ec0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d045a84b-0a14-41fc-bade-cc67f51df17e","direction":"outgoing","index":144349,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ab4f921e-a611-4d6e-a308-e9e5fe8b8ec0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e7023e00-e925-4f90-8fc9-8a1106ae621d","direction":"outgoing","index":144350,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"e3eb6d3b-c11a-4d61-a550-8cfc09b81699","direction":"outgoing","index":144351,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1688569e-098e-4138-be41-462d13f9d953","direction":"outgoing","index":144352,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15f94842-4dc9-4a10-9cd2-e3111d86054e","direction":"outgoing","index":144353,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"33ff7fd8-f18a-4830-8cfd-9613ce11d8c4","direction":"outgoing","index":144354,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbddd729-2ed3-4a62-bf75-c3b482c79aa7\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f7a6558-aab7-4343-a5aa-91385ae39e93","direction":"outgoing","index":144355,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"9d5637d7-40db-4c29-b6ac-edfe3f705cea","direction":"outgoing","index":144356,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"21d8acaa-4e1a-4c5d-ba2b-e9e1af5fdb3d","direction":"outgoing","index":144357,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:46.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"807d5b9e-6b36-44b6-88b9-b5fa2f5db0c1","direction":"outgoing","index":144358,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8abe8201-30c8-4f45-9b55-6f2bbce678fa","direction":"outgoing","index":144359,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=567c4fd8-d45b-4373-87da-ee6f96089302\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"feddc5ad-07de-4b59-a505-ac70301b76b1","direction":"outgoing","index":144360,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"caa97d2c-0390-47a7-a465-b0766dac582f","direction":"outgoing","index":144361,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b352d8c-a069-43d7-994c-3c5d1000d1bb","direction":"outgoing","index":144362,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49183a20-4b53-4480-886b-45e83ffdd0eb","direction":"outgoing","index":144363,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d032ced0-54d9-49f5-ad73-f9a004f773fd","direction":"outgoing","index":144364,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a11f84fd-4065-44cc-a1a1-9a3ecc01979a\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d548ef4-869c-4325-9848-15340b2d6a24","direction":"outgoing","index":144365,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.091-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"c7339b5f-ee1d-41d2-98f3-1cade2f7bb8d","direction":"outgoing","index":144366,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"38e4cc63-4839-4349-a825-50d47f0e81e9","direction":"outgoing","index":144367,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ee00166a-8a2a-4cf9-ba00-f24d64818f76","direction":"outgoing","index":144368,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2ce79b8b-0d8d-4a0d-b899-f788c98711c7","direction":"outgoing","index":144369,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.142-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"460a55aa-69f1-4bdb-b2ff-e391daaad44b","direction":"outgoing","index":144370,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.154-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"759efe51-79a3-4ca2-a3c4-354f52a0d8b9","direction":"outgoing","index":144371,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"caaa89fe-48ab-4d31-a01d-1c6739bf69d3","direction":"outgoing","index":144372,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"cc95ddfc-11c8-4ae8-b2d4-630fdc212ddd","direction":"outgoing","index":144373,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"4e4c8325-12be-414c-bf37-ed188b5ae23c","direction":"outgoing","index":144374,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"9f7c1ce5-36df-4b56-8220-3362fc8469f6","direction":"outgoing","index":144375,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"f69e39c0-075b-49af-b7b1-31f884bfeb96","direction":"outgoing","index":144376,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"60cd7355-0f17-4bc6-a37e-d8399e4b9e04","direction":"outgoing","index":144377,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d5e35cf-ba12-49e5-8d6b-edeadb6aeef1","direction":"outgoing","index":144378,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"608d140f-1496-4999-85f9-c46378862eda","direction":"outgoing","index":144379,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5a4c578f-ded9-4309-b764-250fb826a73d","direction":"outgoing","index":144380,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"21dbc096-7e98-42ae-8582-5d7f010d01b6","direction":"outgoing","index":144381,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8d04f26f-a962-4157-aacb-f1c225d6eb7f","direction":"outgoing","index":144382,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"957fc636-4ca0-4c8c-8fdb-a89b891ca013","direction":"outgoing","index":144383,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d88dba5-bd4d-4215-a29d-b64375a27490","direction":"outgoing","index":144384,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"843ee87e-e737-460c-a451-04140264eb10","direction":"outgoing","index":144385,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8493a131-4fd7-4fc3-a134-2345248b6270\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f49fd710-d6da-42a5-a761-1c3ede17d9c1","direction":"outgoing","index":144386,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ad289202-002a-4249-81f7-63877a6030d3","direction":"outgoing","index":144387,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"dba3fa3f-dba9-4627-8921-05d88a609515","direction":"outgoing","index":144388,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"75921572-80c1-4eac-96f6-7870323d6eb2","direction":"outgoing","index":144389,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"98bc785a-3359-464b-8d57-9e6c7ef84729","direction":"outgoing","index":144390,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"4f0ed747-2119-4bcf-bdb9-90dad619ea9d","direction":"outgoing","index":144391,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"87280244-ae1d-449e-861a-9cda097dda6a","direction":"outgoing","index":144392,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"af1459f4-9b95-4d1e-bb66-d6ff027d7cd0","direction":"outgoing","index":144393,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"e787c4de-4605-46f6-b448-511ab92c5e2c","direction":"outgoing","index":144394,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.459-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f621f9f8-1970-4178-9edf-b72b01702e31","direction":"outgoing","index":144395,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a944e388-4405-4763-b991-3e012cd3f30e","direction":"outgoing","index":144396,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ec5401ef-bc99-4c54-b048-a12d75294d29","direction":"outgoing","index":144397,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"15ad4f29-72a0-40b5-bf68-ebd71afb366a","direction":"outgoing","index":144398,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"35ec966d-975a-4c23-9235-afdca23d6267","direction":"outgoing","index":144399,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"aeb08e81-7c5e-41f5-bcd0-82a2d5530714","direction":"outgoing","index":144400,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"5da424c4-83f0-4b20-86f2-3f8019f8138e","direction":"outgoing","index":144401,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.552-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"79b5d329-8d40-494b-a12f-ce3d2de07586","direction":"outgoing","index":144402,"result_id":"d169ac5f-e326-4089-a866-6c154c652a41","status":200,"timestamp":"2026-05-22T21:15:47.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_patient_category_status_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:15:45.333-04:00"},{"id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","created_at":"2026-05-22T21:16:17.624-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"213dc0d9-1bfd-49f7-b828-bb7744da6935","direction":"outgoing","index":142608,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ab5d2ae6-1983-46c9-b740-9737cccb650a","direction":"outgoing","index":142609,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a2917f9e-9f11-4325-b1a7-11da2ae73d78","direction":"outgoing","index":142610,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8b898c0c-66f7-4f7d-81d8-cfbc310beac8","direction":"outgoing","index":142611,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c7073f7d-678a-4cb9-a344-2eace39c1e1b","direction":"outgoing","index":142612,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"843b1127-6ac8-4667-9ede-5fcc5839d169","direction":"outgoing","index":142613,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5429d306-1ba7-4303-a371-c11c8c5518f4","direction":"outgoing","index":142614,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"512eb863-955f-40fa-ab43-4d78ac59784a","direction":"outgoing","index":142650,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c44ac570-3eb5-4ef8-874e-99bc5d622ffb","direction":"outgoing","index":142651,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"145cac0e-947d-4bbb-81fe-e6f8548fa250","direction":"outgoing","index":142652,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"3538be3b-ce0e-46ca-917d-8f9a87529f68","direction":"outgoing","index":142653,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"d3653bb2-fa4f-45ee-b3df-6973423d84bd","direction":"outgoing","index":142654,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c87479b3-1350-4515-9b4c-3e27cd8b9bb7","direction":"outgoing","index":142655,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81077f41-a062-460b-bee4-bf5a102b656f","direction":"outgoing","index":142656,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5acf28c-01a6-4b77-8442-ce6d59dcf4e6","direction":"outgoing","index":142657,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"274bb9f2-030e-46a7-83b1-f2f3e9cffcf9","direction":"outgoing","index":142658,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"49fafe76-2bd0-407c-8733-d3d6c744bb8d","direction":"outgoing","index":142659,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff1a19e-c48a-4c29-8e91-43962e380182","direction":"outgoing","index":142660,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47890152-f08f-4e19-b7c2-68ab1717b245","direction":"outgoing","index":142661,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29f66cdc-65cf-495b-990f-bd238a2dbc03","direction":"outgoing","index":142662,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"657ed6aa-a33d-44a8-8f80-6ac90bcaf9bf","direction":"outgoing","index":142663,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"0c485a1e-8353-4235-ac10-7f745649ee39","direction":"outgoing","index":142705,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"a954f348-ff86-4e73-8274-b8bd0a7585bd","direction":"outgoing","index":142706,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"577d1f22-cea8-4b76-bd89-b4f3cb7cb4c5","direction":"outgoing","index":142707,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"f86581b7-3277-4cac-96b3-72bac6545f20","direction":"outgoing","index":142708,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ac5b24c-ef27-4664-8f1d-488415871161","direction":"outgoing","index":142709,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0bcec63e-c5cd-4a95-b08f-e1c130fb9e6e","direction":"outgoing","index":142710,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52472409-82f8-41ad-ba3f-3f92b7b52643","direction":"outgoing","index":142711,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38575731-d2aa-42b9-a3a8-f4083c9a7b84","direction":"outgoing","index":142712,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07bb0178-d5a1-4ed5-a975-050d86f1e630","direction":"outgoing","index":142713,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"5db0ad54-b6e6-4523-91cf-110a7d10c1f5","direction":"outgoing","index":142714,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53d9f580-8dfb-45f9-b8de-b10b90b731d1","direction":"outgoing","index":142715,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b13a2dab-1b9a-4088-bd0e-76f359ba28b2","direction":"outgoing","index":142716,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2303d048-dd6b-42e2-86a4-2231ac8edd41","direction":"outgoing","index":142717,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81cab75d-2705-4ec5-b901-e54777e8e56d","direction":"outgoing","index":142718,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"239fa566-f511-4c99-8d45-19ff8e46ffff","direction":"outgoing","index":142760,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d1a1527e-2a26-4a2c-b591-6f359394fa64","direction":"outgoing","index":142761,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ef1567fc-ca65-4d14-b004-5f456f240027","direction":"outgoing","index":142762,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0cda50b7-0228-4090-aa4c-25e7e4b6c61f","direction":"outgoing","index":142763,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2bc98548-c952-4588-a5c3-6c501336954d","direction":"outgoing","index":142764,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87baa689-4beb-402a-864b-f17e51333b40","direction":"outgoing","index":142765,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e3004fe-0cc7-4af2-ae97-c3bb3b65d0cd","direction":"outgoing","index":142766,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30f2683d-3ccd-4842-bd63-016968e2b589","direction":"outgoing","index":142767,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"20991b22-4a53-4712-8b57-aa2d9bf33b73","direction":"outgoing","index":142768,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9679ef56-98ab-450f-94e2-eb34b09f9277","direction":"outgoing","index":142769,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a777ec7-5f67-4b9d-9648-82f62ce417f8","direction":"outgoing","index":142770,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d4d9987-424b-4fae-b0c6-09a79c2c3c92","direction":"outgoing","index":142771,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e92ed314-a8ab-4735-ba1f-26d08a2a9869","direction":"outgoing","index":142807,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"651d8494-ad2e-495e-a134-eee9332f731d","direction":"outgoing","index":142808,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"652bba06-c435-49e3-9e7e-6fc58ecbcfdf","direction":"outgoing","index":142809,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1f3124c1-4f7b-4df7-951b-e818da33245c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"054b7da0-0245-4f9e-90f0-1941658d7e16","direction":"outgoing","index":142810,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c00829da-710a-47e6-9b13-95d7f28ec552","direction":"outgoing","index":142811,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b7882a4-bf3c-4063-8482-33bcb828813e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cde50c6-36da-43f8-975f-9953973e7e6c","direction":"outgoing","index":142812,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"1883f011-ac86-4cdd-89dd-4c719388098e","direction":"outgoing","index":142813,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbd9b74c-be3c-49f9-9633-573ef5bae275\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72af3c91-23fa-4419-8bd5-07d3ea7cd24c","direction":"outgoing","index":142814,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4b6da725-cd37-4642-afed-ef4835119062","direction":"outgoing","index":142815,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59fe7544-4d14-42a1-9b7d-883bd303a1d7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e03eaa1-2f02-4ad4-bbe1-13ffb6616d42","direction":"outgoing","index":142816,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b3e0367d-66a8-4195-bb90-d8924603fc5d","direction":"outgoing","index":142904,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"e0a86155-b077-4b40-bbe3-efa88ec96873","direction":"outgoing","index":142905,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4d8011f4-619a-4ea7-93eb-53b96df0bb99","direction":"outgoing","index":142906,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5be88e98-a979-48ec-8784-e0689e73d5fe","direction":"outgoing","index":142907,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"afb8c552-bf3f-4e21-a5eb-9ab05c530ff3","direction":"outgoing","index":142908,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3f87b94b-a4c6-45ee-990b-0d6751bbb35a","direction":"outgoing","index":142909,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"4df533b5-7d06-44cd-b470-d4f40663f1dc","direction":"outgoing","index":142910,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"098f8f5a-1385-4c6d-bc6a-ba85c7036532","direction":"outgoing","index":142991,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"76ede850-3612-4a64-ad66-31857f0d6df0","direction":"outgoing","index":142992,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"370ba11d-7ae6-4254-8d50-cab45f7968df","direction":"outgoing","index":142993,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3cb5a72f-fc04-493c-9c20-b7477ce92f91","direction":"outgoing","index":142994,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c7389791-96dc-4c03-bb1f-b3e607a2d20c","direction":"outgoing","index":142995,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7616ae5c-771e-45bf-b861-4fdb04a67a43","direction":"outgoing","index":142996,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"283eaef0-1b2f-4686-8a0f-41756bf2f0ae","direction":"outgoing","index":142997,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1ccf8e6f-c90f-4818-b3c8-ede0fcb47464","direction":"outgoing","index":142998,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72d4c40e-380f-4b63-aa79-67a8724b4683","direction":"outgoing","index":142999,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b8711d5-b1d2-4af4-aa5c-c519f09dde69","direction":"outgoing","index":143000,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e33c1ca1-0f49-4fdb-a2e6-8f8f8e9c0a42","direction":"outgoing","index":143032,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2debbf25-bc46-4e66-8bab-a57b1cb4eb16","direction":"outgoing","index":143033,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9928259e-cdb3-408e-9940-981272de101c","direction":"outgoing","index":143034,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3d69e37d-894d-4587-b296-d446df991bae","direction":"outgoing","index":143035,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1a16ed5d-6f6b-4d17-b0bf-69fe7669e0f9","direction":"outgoing","index":143036,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fdccdeff-0e45-44d4-bc4c-8a95d4e63f65","direction":"outgoing","index":143037,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3391a127-9df6-4a20-92fc-58913664ccc0","direction":"outgoing","index":143038,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e372b0b1-60be-4021-a525-7801fa8821a7","direction":"outgoing","index":143039,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1088305-ce81-4639-8dc3-2a2fcdbc304e","direction":"outgoing","index":143040,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c135a0bf-f541-4c19-b8af-134c5eb4859d","direction":"outgoing","index":143041,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"131aa460-5aa4-4a6a-b3e5-4b3892ab1b43","direction":"outgoing","index":143073,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2054a894-dc1f-44f8-8da9-afe6b70f62c8","direction":"outgoing","index":143074,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b96385cf-e41e-47c4-8305-2fa270a0e5a0","direction":"outgoing","index":143075,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb4597be-c1e8-406c-85f1-7a92d61c83f5","direction":"outgoing","index":143076,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c593b071-70ec-4bed-9875-10011c8ba169","direction":"outgoing","index":143077,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"878e5631-9e6c-4f0c-ad5c-41efd6367b10","direction":"outgoing","index":143078,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737efd6b-580d-42c7-a8eb-a037d941556f","direction":"outgoing","index":143079,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d2ee444-16dd-4bb5-a27f-bd209f93c5b6","direction":"outgoing","index":143080,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05f53142-c4b3-4f28-804c-d3e510489ae6","direction":"outgoing","index":143081,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dd5b6114-53f2-481e-abb3-37c87d7a2196","direction":"outgoing","index":143082,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ad054d05-c119-45f4-b3e5-57026fe9bbcf","direction":"outgoing","index":143111,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"4c05f617-e38d-4e61-90ec-9ea64556cd25","direction":"outgoing","index":143112,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"cc80a8e1-eb84-4405-92b3-dc5b5e63e8a1","direction":"outgoing","index":143113,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"86bf7b3f-8d90-4ddd-a7c8-3325c4e173f2","direction":"outgoing","index":143114,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a2f246cd-7fec-4ff1-be62-07313ebeb5ad","direction":"outgoing","index":143115,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a1f537b7-bf86-42fd-adea-e0cf8110594c","direction":"outgoing","index":143116,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"dfb5f69e-05b7-4ed4-908a-a3831d9a2f8c","direction":"outgoing","index":143191,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"83559d18-b3ac-4b35-ba6b-28c12340f19c","direction":"outgoing","index":143192,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f15d677c-30b2-402c-8b35-d084e0bce081","direction":"outgoing","index":143193,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa883a49-df42-4cca-a220-ef916fc7a818","direction":"outgoing","index":143194,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f0cce23-d439-4981-9c6b-7352b8f52854","direction":"outgoing","index":143195,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa244b6d-b1da-4065-a87b-dd78a983cb1c","direction":"outgoing","index":143196,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b252deeb-fb52-4af2-9cac-1982ba28da13","direction":"outgoing","index":143197,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ef0abaf3-f8c9-4efc-9f69-026e85d4ea57","direction":"outgoing","index":143198,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89fd35ae-e15d-48d7-9d37-6c02d47ef456","direction":"outgoing","index":143199,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45cda9f1-2a6e-45ea-9734-bf1038b7c65a","direction":"outgoing","index":143200,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da3e44dc-4918-4751-9cda-9d4cd46f025c","direction":"outgoing","index":143201,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e85e646e-f08e-40b1-b1fb-d6f2d35db95f","direction":"outgoing","index":143202,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9ba802ee-93d8-4bc9-8b06-e5ea8c3aa4a3","direction":"outgoing","index":143203,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b0fea0-1e47-4f0f-9821-7a0007cd1213","direction":"outgoing","index":143204,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8309be3e-3a22-4656-8fbf-545f064efc95","direction":"outgoing","index":143205,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"06b0bbc9-ac94-45d0-a6de-e6d5dfe44100","direction":"outgoing","index":143269,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5cd07ac9-77a3-4394-9740-6e3ac2d09fec","direction":"outgoing","index":143270,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.078-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f07bcc2b-eeaf-4fef-845e-5ea98cb20e82","direction":"outgoing","index":143271,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f80a4eb4-2d0d-41a8-9db9-b92b0a0c3c7f","direction":"outgoing","index":143272,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"880a9b19-f677-44de-b256-3f9d14f959e7","direction":"outgoing","index":143273,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b54beab-554f-4eea-8dc8-c9aadb1f9cc9","direction":"outgoing","index":143274,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b40b5648-e38b-4418-8c29-c07a787aee00","direction":"outgoing","index":143275,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"277e55c7-284f-466c-89c6-a128108e77ab","direction":"outgoing","index":143276,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"45468217-4f75-42b0-b398-8a949a845080","direction":"outgoing","index":143277,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"384ca20a-cc19-4c23-aff6-a51477ef5c59","direction":"outgoing","index":143278,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5164a1d-12a1-4d54-95e9-cc017b097d36","direction":"outgoing","index":143279,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0db7100-2316-4bb8-a392-9ae2b7253835","direction":"outgoing","index":143280,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"cb7cec43-b5ec-4973-8bde-0adcf9417c4d","direction":"outgoing","index":143310,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"0cc05925-c437-494c-aab8-f26e2784d9dc","direction":"outgoing","index":143311,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"e3758542-883b-464d-905b-95b6d96df4f9","direction":"outgoing","index":143312,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"5a2e24e3-5935-4e02-931f-c13ee881ee24","direction":"outgoing","index":143313,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"53e37a22-e769-4574-8c0d-7b6f1be7c83f","direction":"outgoing","index":143314,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"62c80db6-1a47-4f3c-9d6b-b989afef6ce4","direction":"outgoing","index":143315,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"27492779-3f4a-4fdf-9482-21909ddaf5e2","direction":"outgoing","index":143343,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3670caf5-30d5-4d91-bc47-698a8ca4fc78","direction":"outgoing","index":143344,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"73452740-f0b1-421d-862b-5c93c7724a61","direction":"outgoing","index":143345,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebc86a0c-64b6-4021-a43a-fccd4067ccae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52cac830-a582-4851-9443-0dc85f220398","direction":"outgoing","index":143346,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fd3cba97-edf0-4b89-a5fb-164fc0838634","direction":"outgoing","index":143347,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b18f9e42-e653-4784-8bae-1940de78ce53\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4effaed4-492f-47a3-9dd1-4374c0fd4e46","direction":"outgoing","index":143348,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"45843988-a684-4c79-968a-1be8c4135a48","direction":"outgoing","index":143349,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"735d93e7-f15b-4d69-9820-4a5188000fc5","direction":"outgoing","index":143350,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3ed293c7-aa15-4a42-a795-0cb957c54922","direction":"outgoing","index":143382,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"09bbc29f-1eaf-4848-8b17-887150ae86f7","direction":"outgoing","index":143383,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ba4c4346-3a61-41d9-8752-60f258039d20","direction":"outgoing","index":143384,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54fea3ed-c56f-4ece-9a99-d32e7a13ffa1","direction":"outgoing","index":143385,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"27c35f66-ab3a-401f-8350-10d454890757","direction":"outgoing","index":143386,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82763b1e-f868-493d-bcb8-9a63f3093541","direction":"outgoing","index":143387,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"765c3e68-7437-4834-9db4-5167c4d5d574","direction":"outgoing","index":143388,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"512d1685-5399-47cb-879f-192b639880ad","direction":"outgoing","index":143389,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b84a0fb8-d3ce-4fac-a056-a7f114b4193b","direction":"outgoing","index":143390,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05c7fefb-6e03-4301-9261-547c4edb9b33","direction":"outgoing","index":143391,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0eab903e-5aa6-45c2-adc8-979b6806c011","direction":"outgoing","index":143428,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"a74eccb2-9db7-4781-88bc-78415131eae8","direction":"outgoing","index":143429,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0e2f2f2c-6654-4f1c-a91e-53d591f649bf","direction":"outgoing","index":143430,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3aca742f-619e-4dcc-be32-02c39165d068","direction":"outgoing","index":143431,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c1553ed8-95a7-4a35-b9b8-0a0f15eb3d86","direction":"outgoing","index":143432,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5f9a44da-2514-4a32-9ac7-e7100eff3eeb","direction":"outgoing","index":143433,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"1b239477-0b80-40fc-9bb8-0e3cff7fdfeb","direction":"outgoing","index":143434,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"a4dbd4f7-64cf-4a69-9d6a-32c0daee2215","direction":"outgoing","index":143466,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d76248d2-3c9c-4d9b-ba9f-b6c4bb0e362b","direction":"outgoing","index":143467,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"53c6f96f-58b8-4507-9a87-8be527ef2010","direction":"outgoing","index":143468,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8a8bfde8-9568-40f5-a917-ca2decbfc166\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54c7d645-5f55-463e-9f70-9334654b135d","direction":"outgoing","index":143469,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"91d7d192-8332-46cd-a565-0745ad3fdf74","direction":"outgoing","index":143470,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2526abe-bd4e-49cb-b505-38954cfe783c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6def2e0a-7f01-48f2-9aad-11f2d94b0e01","direction":"outgoing","index":143471,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ece2361f-2ebe-4baa-9a90-911271fa7978","direction":"outgoing","index":143472,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f1068bb-79a9-4f73-8b29-fe5aa5f05270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"073fd4f6-4085-4ce6-852e-4a422005edf3","direction":"outgoing","index":143473,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9ac1391a-7887-430b-ac4d-6583cca40179","direction":"outgoing","index":143474,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6f3628c-3309-4a21-b917-4765e7f8e8c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a166b08b-99b6-4d67-b59d-2def2a707c0a","direction":"outgoing","index":143475,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6995a7a3-cac4-4dae-919c-4c4cbb79ddda","direction":"outgoing","index":143523,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7e36f3db-5259-4465-bac7-4a767aa40674","direction":"outgoing","index":143524,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"42b02cd5-cd71-4d94-b7a9-67f7ae343242","direction":"outgoing","index":143525,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e6442c2a-2264-471a-ba50-eab8afc0db6f","direction":"outgoing","index":143526,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0c8f1f1c-c9e8-49d7-bb96-ecebd4770d19","direction":"outgoing","index":143527,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"040034d7-d6b1-4bb9-b9dd-acafa46f490e","direction":"outgoing","index":143528,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"38401b7d-5077-408a-ab13-ceb646df4820","direction":"outgoing","index":143529,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3488eebf-b505-4c50-b64f-070e3b0996b4","direction":"outgoing","index":143578,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2c9e8d3f-8182-4b7c-ae46-b38a34a1ed86","direction":"outgoing","index":143579,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5f8b46fa-3ad6-425c-a297-49f0dd948e11","direction":"outgoing","index":143580,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c45c0c8c-c23b-4b2b-b633-50e7183fa3f3","direction":"outgoing","index":143581,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e502a95-d091-4ab9-b7bd-bd9b6a7b5c23","direction":"outgoing","index":143582,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a1898e2f-9cd6-4ff3-90a4-d31e04a20536","direction":"outgoing","index":143583,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c012fde-ac17-4299-8681-7804a3e11b0f","direction":"outgoing","index":143584,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad76a49a-d3e4-49d1-81c6-7f194680f3e2","direction":"outgoing","index":143585,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05a71be1-ce12-491c-8cd2-cc68ad9b322f","direction":"outgoing","index":143586,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4447b7d8-d425-4501-a1c0-fbf21817059b","direction":"outgoing","index":143587,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9b0fa213-e9ee-4d9c-b18f-fc2645df3641","direction":"outgoing","index":143619,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0caf861b-9b98-487e-aec3-4da33a7c407f","direction":"outgoing","index":143620,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"4094398f-8327-4c2b-b7f2-50958a6c2dea","direction":"outgoing","index":143621,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c15b4015-f6bc-45b0-b7a6-d359a5e10d0d","direction":"outgoing","index":143622,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1908f13f-bb73-4d25-b79f-8c341e90a232","direction":"outgoing","index":143623,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"21b9df12-a7f3-46e1-b20e-e0d4f4b5f101","direction":"outgoing","index":143624,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a621a520-d1e3-4686-8f8f-07d402f45ccc","direction":"outgoing","index":143625,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c47c900-6ecf-485d-b269-9de2dd2d5190","direction":"outgoing","index":143626,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9acf49db-3ccf-4c9d-84d3-064c42790921","direction":"outgoing","index":143627,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f7827a00-12d5-4a68-80b2-a26835082001","direction":"outgoing","index":143628,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"78cb1c19-d9b7-438f-8b68-832ea9f7c181","direction":"outgoing","index":143660,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"21155383-1691-4960-9f9f-0843606b2f10","direction":"outgoing","index":143661,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"175ce37b-f06d-4c3a-89f3-27afb8f70765","direction":"outgoing","index":143662,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9c05dca3-f437-42a1-805a-4dc72a7715de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b178a76b-4130-43bc-970c-b7d2a3ef7538","direction":"outgoing","index":143663,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b7070ae0-0fa2-4c1d-bd6d-c6dfd379ee3e","direction":"outgoing","index":143664,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f3ada986-6bc0-4c01-808c-518ea2bc9d69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8cdfa5fc-af93-49ba-9a60-07a793eaaf65","direction":"outgoing","index":143665,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"508c93dd-60c9-489d-ab54-30debd69cc9f","direction":"outgoing","index":143666,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=80194c56-9cd3-410d-9fb3-19729350bd7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e514bb3-5af8-43a5-a804-e8725ceadc62","direction":"outgoing","index":143667,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2346b492-00d1-4d03-ad74-25d44e1ffffa","direction":"outgoing","index":143668,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=55851eba-1f56-4d96-8b22-7f2db55140db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"669b92ef-7744-41e9-80a2-7f632156e791","direction":"outgoing","index":143669,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4ce3e9d7-37b0-4a12-9f42-3bcb0c3c9022","direction":"outgoing","index":144403,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c7089628-cb82-479f-a70d-50960a5cdf2a","direction":"outgoing","index":144404,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"aecfe4a5-db58-4cd4-959e-707d94305eb4","direction":"outgoing","index":144405,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"338a90e8-9538-46b4-ad61-b3321797ef39","direction":"outgoing","index":144406,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b2ebb09b-82d7-4c9c-ad44-8f9b06df7dbf","direction":"outgoing","index":144407,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"153e882f-bc7f-4141-a457-978e47661211","direction":"outgoing","index":144408,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b49a4049-704a-4fa1-85c4-71b1e07c560d","direction":"outgoing","index":144409,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"0f47526f-d500-47cd-ad57-fcc270b764dd","direction":"outgoing","index":144410,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"cb05a5bc-8a16-4aa9-b135-0b815e5f52c0","direction":"outgoing","index":144411,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.937-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"efc38b2a-d102-4b60-8894-6782ff9cd6d3","direction":"outgoing","index":144412,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"6ebe5367-daa4-4272-ba48-4d3cf00032bf","direction":"outgoing","index":144413,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"fc5709ce-e5d2-4f9a-950d-9e0562a511f0","direction":"outgoing","index":144414,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=019c8b36-a363-42da-9583-76ca1e44decc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ae63034-8357-404e-abc5-3d7d2158da45","direction":"outgoing","index":144415,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=019c8b36-a363-42da-9583-76ca1e44decc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2536fd7a-6c52-456b-b4a9-cfd7f6622a18","direction":"outgoing","index":144416,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:17.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=019c8b36-a363-42da-9583-76ca1e44decc\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d2985b00-c556-4650-b2b4-5e5a5ed86c48","direction":"outgoing","index":144417,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=019c8b36-a363-42da-9583-76ca1e44decc\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"67cb94bc-614d-4118-a51e-d6dd0859641d","direction":"outgoing","index":144418,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.023-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"1e76cf3a-1858-4ba7-80ca-3a93c7122c63","direction":"outgoing","index":144419,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c42c53aa-28f0-425b-bef2-de31617200c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"685ec62b-8241-40bb-924a-111b45676184","direction":"outgoing","index":144420,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c42c53aa-28f0-425b-bef2-de31617200c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8f45b91-d5c4-4157-910e-1714f65917d1","direction":"outgoing","index":144421,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c42c53aa-28f0-425b-bef2-de31617200c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8a6689d9-0bee-4e59-9c0c-ac6669d262ba","direction":"outgoing","index":144422,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c42c53aa-28f0-425b-bef2-de31617200c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ca2f29d9-5b1b-441e-b76d-771c97e795a5","direction":"outgoing","index":144423,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"bde8f0e9-a056-438b-9b85-1fbe850ba5a9","direction":"outgoing","index":144424,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"ca43efb5-4883-4b2b-8821-dd3cc202d681","direction":"outgoing","index":144425,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"ffa14dc1-eee6-4f54-84f1-a6da26e93700","direction":"outgoing","index":144426,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"7ee129ca-adbb-43fd-b7c0-b8570df98ddf","direction":"outgoing","index":144427,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"57abe21e-f722-474b-84ba-91fe12de0a1e","direction":"outgoing","index":144428,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=023db3c9-691a-4761-b202-048c143051a4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"70affc93-dfc9-4da4-84c1-726315f3986b","direction":"outgoing","index":144429,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=023db3c9-691a-4761-b202-048c143051a4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7b23421f-ed52-47bc-b6d8-b0cf451833cc","direction":"outgoing","index":144430,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=023db3c9-691a-4761-b202-048c143051a4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7d265a5f-25e3-4a74-b064-d97231192a02","direction":"outgoing","index":144431,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=023db3c9-691a-4761-b202-048c143051a4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c8683d62-5ca3-43bc-b445-5279e443d7be","direction":"outgoing","index":144432,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.189-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"448d263a-2299-4ca7-b151-e42e98ce4804","direction":"outgoing","index":144433,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=97e2fbd9-a140-4a61-a266-0f7c4b6b849f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"23b933b8-b4ba-42ec-bb59-ae642275ec8b","direction":"outgoing","index":144434,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=97e2fbd9-a140-4a61-a266-0f7c4b6b849f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6451aa88-874e-4dac-aeaa-e4d423d0767e","direction":"outgoing","index":144435,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=97e2fbd9-a140-4a61-a266-0f7c4b6b849f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7a22ce6-b89f-4722-8a3b-7f10b251eaab","direction":"outgoing","index":144436,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=97e2fbd9-a140-4a61-a266-0f7c4b6b849f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"665015b9-153d-4eed-bc3a-336fb56887bf","direction":"outgoing","index":144437,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"39f4a969-7125-43ff-b805-679ff13093c6","direction":"outgoing","index":144438,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.262-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"14e53793-cd75-4eed-a924-5dd33400a957","direction":"outgoing","index":144439,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1f3aed96-e3fc-41fa-9e3e-1c0ac99a1bd8","direction":"outgoing","index":144440,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"efad6fab-2fab-4824-b02c-246362d78a64","direction":"outgoing","index":144441,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c84e4ef9-093d-485d-8f6a-78e99d28e9f7","direction":"outgoing","index":144442,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=181bee31-fc0d-4e76-b7d4-86ef19771c11\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8467a0b6-af0e-405f-85b5-ac039879c2ee","direction":"outgoing","index":144443,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.324-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=181bee31-fc0d-4e76-b7d4-86ef19771c11\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"83b70979-5afc-4db5-9dc6-2e8a9e5981df","direction":"outgoing","index":144444,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.336-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=181bee31-fc0d-4e76-b7d4-86ef19771c11\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc886fa1-ed42-4645-9649-dd442497044f","direction":"outgoing","index":144445,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7ff1ae55-3099-4b4f-88c3-8488babd3e83","direction":"outgoing","index":144446,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b8997323-a1ec-4762-9fdb-3fd29aad6f5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1a22f1e-6959-4868-bb39-c00fb1508580","direction":"outgoing","index":144447,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.370-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b8997323-a1ec-4762-9fdb-3fd29aad6f5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"10f89265-4b6e-41b8-b399-853623b71104","direction":"outgoing","index":144448,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b8997323-a1ec-4762-9fdb-3fd29aad6f5c\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dd12253-d6ae-4d13-aade-248826f35ef6","direction":"outgoing","index":144449,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8588388b-ef15-4482-9267-985b4fb24fae","direction":"outgoing","index":144450,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.405-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"fc4afb8b-67a4-484d-957b-1f2f978765be","direction":"outgoing","index":144451,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4ef7d9db-6709-4fac-95e0-7e3de1c4552b","direction":"outgoing","index":144452,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.429-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ae01141e-1b04-422c-abc8-61ab103018dc","direction":"outgoing","index":144453,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b8123868-355d-4467-8d46-abdac881f7a5","direction":"outgoing","index":144454,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"401c57c0-ebbc-4255-bc22-e3ec8553db17","direction":"outgoing","index":144455,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"d139e4a2-fb9a-4e42-991b-cb7675c194f4","direction":"outgoing","index":144456,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.480-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"b702cf6f-a5cd-4417-bf3c-da96ce3e45ff","direction":"outgoing","index":144457,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.499-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"41cd5354-7eee-409e-9fed-2275a19d08f3","direction":"outgoing","index":144458,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.511-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"760f81dc-33fe-4f3c-b65f-b798919cb4a5","direction":"outgoing","index":144459,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.522-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0164eb1f-47d6-4d18-bc4d-90e22dc22709","direction":"outgoing","index":144460,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d734214d-a436-4f46-ab42-ae318dc15018","direction":"outgoing","index":144461,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"5732a535-e1ea-4555-8f37-c6aec6247a78","direction":"outgoing","index":144462,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"62517827-22d0-40c2-b616-3ee3455d71f4","direction":"outgoing","index":144463,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.570-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"24e3542c-dc59-4cd2-9f8b-e28aa80d7d73","direction":"outgoing","index":144464,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f80258cc-7698-4548-9be1-235a23582232","direction":"outgoing","index":144465,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2b212c9a-daa3-48af-ae35-307e1a7eafbf","direction":"outgoing","index":144466,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d9bfaab2-e326-4bea-a54c-96dd60f6d1e8","direction":"outgoing","index":144467,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"183a3248-7a1b-40f7-bce4-e8eca8c8068f","direction":"outgoing","index":144468,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"00782322-50e8-406b-a0c6-1859af32142b","direction":"outgoing","index":144469,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.638-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"017ed08f-1b94-4447-9bc1-0c8dbef96ce3","direction":"outgoing","index":144470,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f3b97079-a382-41be-8ccb-97013171fe03","direction":"outgoing","index":144471,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fd6347e9-ffb6-40d1-8f40-56fedfeff341","direction":"outgoing","index":144472,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0d6ca847-9f97-48fe-a80a-177659d032bb","direction":"outgoing","index":144473,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ec744a76-f5cc-4e86-a704-d56b0aac025e","direction":"outgoing","index":144474,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"310ce1dc-ab2f-4f97-9e19-b9f04c47cae9","direction":"outgoing","index":144475,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"44b06772-06ae-46bf-8663-2ede088ae014","direction":"outgoing","index":144476,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"61c12945-d0e2-4cab-bf1b-4176aae773e0","direction":"outgoing","index":144477,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5d4f4360-2862-4932-8c40-1768df1b3837","direction":"outgoing","index":144478,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"16808400-96c8-4ee0-88e9-9432b19f7196","direction":"outgoing","index":144479,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c03c593c-11d1-437c-a9ef-8d3600b22b51","direction":"outgoing","index":144480,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7fc5617d-8ecd-4f68-8c6e-8532085b862e","direction":"outgoing","index":144481,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3c6cf4d4-e421-49da-a54a-9a498be698cd","direction":"outgoing","index":144482,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"6cbc207c-cab9-47f0-b2d4-28546262be9b","direction":"outgoing","index":144483,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a650df09-52be-4a21-bb19-2cb67baa0529","direction":"outgoing","index":144484,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"45c54900-4243-4bfa-be60-a4fa52dd2482","direction":"outgoing","index":144485,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"8d68b0fc-67f5-41c2-ab53-c2c626edb913","direction":"outgoing","index":144486,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"0ae92ef0-8890-46cf-a767-2857e3a89f56","direction":"outgoing","index":144487,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"4e498a50-a3bd-4c11-8eaf-7b5fcb787e51","direction":"outgoing","index":144488,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"5d7ebd97-97fe-4ec9-ae10-5acb71630151","direction":"outgoing","index":144489,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.868-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e016a789-78ca-46e4-a708-b971a00d105f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ae17dbc8-360e-4c4c-a190-c733206aae97","direction":"outgoing","index":144490,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e016a789-78ca-46e4-a708-b971a00d105f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5874bbc-57bc-409a-9305-8c84c8d59029","direction":"outgoing","index":144491,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e016a789-78ca-46e4-a708-b971a00d105f\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fa5131e-364e-4a71-967e-0bdb2681355c","direction":"outgoing","index":144492,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e016a789-78ca-46e4-a708-b971a00d105f\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71b104fb-247c-4c49-aeb5-0fe948edb4de","direction":"outgoing","index":144493,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.918-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"e9761300-8eb1-43b9-890f-efac4f87725b","direction":"outgoing","index":144494,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.929-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0034c5d-edd7-47e6-bcad-cbd978c575f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9bb813e1-ae01-4e48-9588-8b3244605549","direction":"outgoing","index":144495,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.942-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0034c5d-edd7-47e6-bcad-cbd978c575f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c0361d7d-6951-40de-990c-53232bafcd28","direction":"outgoing","index":144496,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0034c5d-edd7-47e6-bcad-cbd978c575f4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92fe0741-0492-43e1-aa66-d354369f0300","direction":"outgoing","index":144497,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0034c5d-edd7-47e6-bcad-cbd978c575f4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7952b4c6-0a7d-4ba1-8563-83083baa2387","direction":"outgoing","index":144498,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f8823d7c-b28a-48c0-8e83-b0dfaea00b4c","direction":"outgoing","index":144499,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"d9d37f15-dfcf-424d-99e7-95f123e7cf3a","direction":"outgoing","index":144500,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:18.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8d6375a2-aaef-4ee4-b6be-51598a5073c4","direction":"outgoing","index":144501,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cc4bec3d-c930-4a50-9625-b6e81f3ba080","direction":"outgoing","index":144502,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"0831f525-28d2-4806-b437-b67a977c87fa","direction":"outgoing","index":144503,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"59ed6176-bd72-4503-b6f0-fe2ffb7ddc27","direction":"outgoing","index":144504,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"a1697d66-4a9f-4e51-b676-37ad54c86af2","direction":"outgoing","index":144505,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"832de905-4d23-4ea4-b783-d0979f49e5ed","direction":"outgoing","index":144506,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d571ed1-6983-4d9f-97a8-4b37a350d59b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d1b75cd-a288-4682-85f2-60b4914c4e86","direction":"outgoing","index":144507,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d571ed1-6983-4d9f-97a8-4b37a350d59b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"15f12a53-829f-4180-b3c5-4d0e416bd92b","direction":"outgoing","index":144508,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9d571ed1-6983-4d9f-97a8-4b37a350d59b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cdb95fe6-a70d-433e-888a-6f6bf166e118","direction":"outgoing","index":144509,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"09e7e613-d987-449e-8864-8c6bfc29fbbe","direction":"outgoing","index":144510,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=54d0e894-6b5a-4821-a339-9e31c3128ad5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2a39a3fd-60db-4771-af37-87cdf8f68a54","direction":"outgoing","index":144511,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=54d0e894-6b5a-4821-a339-9e31c3128ad5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3158d3d5-c44e-4df4-a968-aaef5fa6087e","direction":"outgoing","index":144512,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=54d0e894-6b5a-4821-a339-9e31c3128ad5\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89fea75a-df39-46fb-99f4-087602257ca9","direction":"outgoing","index":144513,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"910aab28-8435-4ccd-8d87-cfa0d2566d92","direction":"outgoing","index":144514,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"7cb5a271-d2f9-4355-899a-39a08d375749","direction":"outgoing","index":144515,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"5a133c0f-6321-44c9-8dd5-5f4dba6f8b0c","direction":"outgoing","index":144516,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"2b9584b2-28dd-48ac-b055-dc24a66c76d5","direction":"outgoing","index":144517,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"6940222c-ba3c-443a-a4bd-bc19a79c6856","direction":"outgoing","index":144518,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d85568e9-d300-4c4e-b6b9-59ed8d7e6a88","direction":"outgoing","index":144519,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"53438c8c-89d7-43bb-89f2-0c9c6d16f87c","direction":"outgoing","index":144520,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"14ec295c-5bbc-487a-b389-2dc1dd905963","direction":"outgoing","index":144521,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54516bed-71cd-498f-843c-09a81dc88fdf","direction":"outgoing","index":144522,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"60d6e228-d475-4aee-96cc-05eaf28aa859","direction":"outgoing","index":144523,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"01cf1c5f-3eff-4c37-b57f-c0d69524f612","direction":"outgoing","index":144524,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"098bbc8d-3712-4d1e-9e9a-9d5a0c4a6e89","direction":"outgoing","index":144525,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1005cf75-69f8-48ac-8bb0-97d1eaf50eaa","direction":"outgoing","index":144526,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.309-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fc0aa3f7-fa2d-40f2-b4b9-5e90078e7c1a","direction":"outgoing","index":144527,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"72910caa-e887-4a73-b73f-0c2b940e77af","direction":"outgoing","index":144528,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"99ad7319-b7b9-45f1-a2d1-7c4508a309d5","direction":"outgoing","index":144529,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5272ae41-86e7-49db-a553-d9abf22c967b","direction":"outgoing","index":144530,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0647c230-36be-4755-bf4c-3fde45fb1a9a","direction":"outgoing","index":144531,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d82397e0-3c53-402b-a5c5-91810327a4c4","direction":"outgoing","index":144532,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"b3c6640b-2975-4bde-adf7-2dd18df00934","direction":"outgoing","index":144533,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"a3c9ce2a-1233-413f-8c1f-3776e968f65e","direction":"outgoing","index":144534,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"1e7466f1-8b91-4df6-b1fe-bf9f2393dc3a","direction":"outgoing","index":144535,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"886fa303-2c86-4a0b-ae6e-0ca03305ba6f","direction":"outgoing","index":144536,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.433-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"97ee4815-6476-4ed3-94da-93056b9e4644","direction":"outgoing","index":144537,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"61aa47e3-927d-4ed6-964d-fb98b546448c","direction":"outgoing","index":144538,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.458-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"3359458b-81cc-43a3-bff4-21532afa89ca","direction":"outgoing","index":144539,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5d9e876f-0224-4a2f-82f9-178cdf628e60","direction":"outgoing","index":144540,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cf76fda9-7b5b-4135-b8cb-9b90fffa8064","direction":"outgoing","index":144541,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4928ffd5-7991-459a-a164-4e6bcca9e54a","direction":"outgoing","index":144542,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d35e40ac-f6f3-4823-9a17-d3aefe493d3d","direction":"outgoing","index":144543,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"15ba3829-a99a-410a-ba7d-332774392114","direction":"outgoing","index":144544,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"50426d3a-3dd5-4d29-9086-3423ffdbc892","direction":"outgoing","index":144545,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.541-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3d460c93-1d5d-457f-9da1-049dfb45c8be","direction":"outgoing","index":144546,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5c4e6cfb-6c28-4b41-8bbc-43477cf7aa9c","direction":"outgoing","index":144547,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3473ac8c-eb70-4403-a8bf-d0f645d39fd3","direction":"outgoing","index":144548,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2415f07a-cf91-4fb5-b2ad-ba001c70d430","direction":"outgoing","index":144549,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b57ecafc-ae20-41f7-8312-7886dbfffed2","direction":"outgoing","index":144550,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9238ab8e-784c-4cc5-9dfc-f1cb2dda3a03","direction":"outgoing","index":144551,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"33f9fe86-fcb8-4845-9de2-0bfa86a26508","direction":"outgoing","index":144552,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"888efcd1-3452-4e86-8d35-52c0dd0f17f6","direction":"outgoing","index":144553,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.643-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3650b0fe-9599-46ee-8edb-03e1dd74310e","direction":"outgoing","index":144554,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"136e2333-d15d-43db-8128-62c01a78d2cd","direction":"outgoing","index":144555,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2930f015-2df2-452f-8681-7075a1c9f093","direction":"outgoing","index":144556,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"efcd29c7-3fbf-413b-95ac-37b842a0c197","direction":"outgoing","index":144557,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.694-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4f877433-7d17-4a5d-8c65-04775a0faf13","direction":"outgoing","index":144558,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"4e5ff74f-35dd-40ba-9aa8-a041ef8b3552","direction":"outgoing","index":144559,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"1aa8d82c-ca93-4fe1-802c-7427d9d4b8fa","direction":"outgoing","index":144560,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"fd8f9b2f-75ff-476c-a78c-552fae4378bc","direction":"outgoing","index":144561,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"52985492-df15-4699-bc58-241825059def","direction":"outgoing","index":144562,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"11a1253e-7ade-4b1f-b1af-dce83cb66bbb","direction":"outgoing","index":144563,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.766-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"449409e5-1cbd-412d-8b27-964d006deb92","direction":"outgoing","index":144564,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c82eb6f1-83e7-4193-ac25-7ae01a451f75","direction":"outgoing","index":144565,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"fb799560-8a44-4a86-a798-9f9f4d13bf7e","direction":"outgoing","index":144566,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"17cad7c4-dd38-452f-b30d-c0df09a9186e","direction":"outgoing","index":144567,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"cf33d5ff-69c9-47da-8721-d119038dc955","direction":"outgoing","index":144568,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"884a63bf-b457-45ee-b53c-2248eeba3a7f","direction":"outgoing","index":144569,"result_id":"3369d701-de4f-4a6c-abcb-ef0f9dbbf68b","status":200,"timestamp":"2026-05-22T21:16:19.848-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_patient_category_date_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:17.624-04:00"},{"id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","created_at":"2026-05-22T21:16:38.665-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"23c11438-ab61-462f-8ca4-9228f663e743","direction":"outgoing","index":142615,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"6b682127-e53e-4658-aa8e-713ad87748da","direction":"outgoing","index":142616,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"1c638932-2bd5-4571-8897-36971bb14bc9","direction":"outgoing","index":142617,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"55c3deab-56c3-4275-9236-70ab4ba25132","direction":"outgoing","index":142623,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"e80d7c67-32ba-433c-a61c-aa6fd7d87077","direction":"outgoing","index":142625,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"3fa301f3-2924-4c9b-8389-aa6d2aec31ca","direction":"outgoing","index":142626,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"18628b98-cee4-4c71-9d75-bc2afca79929","direction":"outgoing","index":142627,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"af104007-3f40-4991-9cd1-b0c4421c68fa","direction":"outgoing","index":142628,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"},{"id":"e42f3709-b9cf-4bec-aebe-c155ca764153","direction":"outgoing","index":142678,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"2d0b1eae-a9f0-4d5e-aa6a-2259a5c61fac","direction":"outgoing","index":142680,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"a1f8a0b3-2554-4350-b205-db7c043c0356","direction":"outgoing","index":142681,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"098de892-18b5-4862-9da5-abb63079a857","direction":"outgoing","index":142682,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"46be6d29-76ac-4f60-afe3-a007ec3cf40e","direction":"outgoing","index":142683,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"},{"id":"3460b691-5e7a-44c9-bea2-f57a5c95506b","direction":"outgoing","index":142733,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"3a466515-09a6-4d6f-88b4-0667e79bade3","direction":"outgoing","index":142735,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"6a2fc3b7-3312-4f33-a4b0-2120577a8004","direction":"outgoing","index":142736,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"393018d8-9a85-4f7c-835b-b13812d7c9ea","direction":"outgoing","index":142737,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"a5ea0900-44d5-4f6c-b9ce-397a1c3a8d9a","direction":"outgoing","index":142738,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"},{"id":"62c62e6f-a508-40d2-8043-9448b381d816","direction":"outgoing","index":142786,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"a22bb776-b30e-422c-ad56-73e76f9d22da","direction":"outgoing","index":142787,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"53fa06ab-f471-4f3e-8b48-bf59e2877f1b","direction":"outgoing","index":142789,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"ce9f98ac-e92e-4711-86d6-56b9d1cdabfe","direction":"outgoing","index":142790,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"834afb02-5a60-4ac1-9e87-d39056f409b3","direction":"outgoing","index":142791,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"},{"id":"bec353b3-1f4f-4350-afcc-0e16a183a4de","direction":"outgoing","index":142911,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"ca697516-ef1c-4fb9-a6e9-87a05d0529af","direction":"outgoing","index":142912,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"727dc320-991e-47af-b070-21667cb9cc1b","direction":"outgoing","index":142913,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"},{"id":"3b9b6352-41ad-438e-bb40-0aadbb996204","direction":"outgoing","index":142970,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"8f006efb-26bc-4c89-b361-27c11e481271","direction":"outgoing","index":142971,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"7f81270e-c019-461f-9be6-6ed8a7ba4a95","direction":"outgoing","index":142973,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"68cdd464-6f20-479d-974d-75619134cff9","direction":"outgoing","index":142974,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"7b1c0531-d767-4345-acb5-b5e261b4e9e2","direction":"outgoing","index":142975,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"},{"id":"e2a4c64d-492f-48d0-9a5c-bfcddd4196b2","direction":"outgoing","index":143011,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"4c8d8d8b-c7e3-4e52-9ddb-2e331a723525","direction":"outgoing","index":143012,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"b2594bc6-09a7-4466-82f3-6b8995ac711c","direction":"outgoing","index":143014,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"07cd08e7-89c7-4f60-89b7-bcdf8280bc9c","direction":"outgoing","index":143015,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"00c304cf-b556-426f-b141-9fd2b616996f","direction":"outgoing","index":143016,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"},{"id":"1104c4e0-0657-4dbd-9a6c-e647f4542402","direction":"outgoing","index":143052,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"f4d613cc-6720-49b2-961a-dbf8aa104892","direction":"outgoing","index":143053,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"f19c9168-7ae3-4f7a-bcc6-f693010382c5","direction":"outgoing","index":143055,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"03926bca-c5f2-41e4-b4ea-890f7a24a34c","direction":"outgoing","index":143056,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"9451b097-5537-447e-a93b-75d9fa63c62e","direction":"outgoing","index":143057,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"},{"id":"371571be-9e39-4bf0-9d38-71b1c22a59bb","direction":"outgoing","index":143093,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"ed5bfc8f-3499-4b13-808a-57fc7f33d343","direction":"outgoing","index":143095,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"66c17173-392c-4508-ae8f-bd19feb55152","direction":"outgoing","index":143096,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"b665f13c-e8b5-44a9-a551-13845f5acc43","direction":"outgoing","index":143097,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"4dedb71c-4a9a-42ef-88a9-5f443f40b910","direction":"outgoing","index":143098,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"33b561b4-f009-4728-8f94-c67f33ffc0c9","direction":"outgoing","index":143099,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"8da8ecc4-2275-49ba-8c1d-a8eddd5fa2d3","direction":"outgoing","index":143100,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"cb13877f-107a-4471-8e9e-a4e3203172e6","direction":"outgoing","index":143101,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"},{"id":"d7c8a670-a035-492e-b388-0d69aedde651","direction":"outgoing","index":143126,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"7ad05933-2b3b-49b4-926c-ef6037316b51","direction":"outgoing","index":143127,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d477ebd-2af7-4aaa-b5c9-a37ecd38f9d9","direction":"outgoing","index":143128,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96797fd8-2e2e-4520-9e82-d30ae18bdbfd","direction":"outgoing","index":143129,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"417104ad-efff-4fd9-a66f-b1a04aef2272","direction":"outgoing","index":143134,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"52a8dfc2-a985-4708-a9c6-89226615c01d","direction":"outgoing","index":143135,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe771d0c-6c08-469c-aa2d-a19995cc9564","direction":"outgoing","index":143136,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a05b0b9-ab87-4dd0-a95f-0529b05eb5f8","direction":"outgoing","index":143137,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44b40e60-b638-4e96-b4fb-0cd0c1e300ce","direction":"outgoing","index":143138,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"21bffd5c-ed25-4bce-b751-233688339eb2","direction":"outgoing","index":143139,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"196f90f3-bc5c-4b47-9eff-dcc780ee204a","direction":"outgoing","index":143140,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c06345e4-ddb1-4ced-b280-469e0cd9725b","direction":"outgoing","index":143141,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af9f3c86-15ff-46d9-a49d-f4204fbb0e04","direction":"outgoing","index":143142,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"9e6f401a-954c-43e9-a5f6-3a9695a992a9","direction":"outgoing","index":143143,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8da7ea43-70f7-440d-9b44-bef2287de2b7","direction":"outgoing","index":143144,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b7032b0-a76d-43f8-ad3f-b7e09eb22cc8","direction":"outgoing","index":143145,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e324b3c4-c9fe-4543-9ae4-1d2f5ea70355","direction":"outgoing","index":143146,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17effb88-eaa4-4f56-a88d-3b8bd9211c07","direction":"outgoing","index":143147,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"120ab3f2-2198-46ca-b15f-d65d27973aa9","direction":"outgoing","index":143148,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7956b5e1-f882-4ce2-8509-8e2b9a3537f3","direction":"outgoing","index":143149,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac706351-6c2b-4092-adef-ae15aa9e0458","direction":"outgoing","index":143150,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ce6834e-d8e5-407c-a6ac-808deb4c5a60","direction":"outgoing","index":143151,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b48ae2e-88a1-438f-b384-1a4efb708fae","direction":"outgoing","index":143152,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"},{"id":"b4e76ae7-04ec-472b-981a-386aa59d3a35","direction":"outgoing","index":143242,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"c5ba4a34-bf00-40e9-9ceb-bdddeeae8622","direction":"outgoing","index":143244,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"70724910-bba3-4cd2-8bcd-6cc6e37063f2","direction":"outgoing","index":143245,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"4d1d3fea-0789-44f2-81e2-5181ad84531e","direction":"outgoing","index":143246,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"5f327329-aed8-4f72-a20b-37349f8d8417","direction":"outgoing","index":143247,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"},{"id":"cf4a0f64-0ef7-4a92-b14f-f2b812639fc2","direction":"outgoing","index":143295,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:28.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"26faf1c4-0fc8-4be8-bf9e-62ece9fdc9a6","direction":"outgoing","index":143297,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"90e4d0b5-2066-425e-9f7e-eabec0e2dd01","direction":"outgoing","index":143298,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"02c948b8-549f-4fbe-9bd0-4064f289f2d7","direction":"outgoing","index":143299,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"d4c1a708-9290-43b1-8ba8-37ed5897edfd","direction":"outgoing","index":143300,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"},{"id":"459775ff-516f-48e7-b2d4-64125e8935ab","direction":"outgoing","index":143322,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"e2855226-395f-46e2-af4d-0578bce678bd","direction":"outgoing","index":143323,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"38962e10-c591-4c51-904d-f51f3f584220","direction":"outgoing","index":143325,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"d88e5700-1236-4c76-8607-22bc0bb922e4","direction":"outgoing","index":143326,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"3f0378ad-946e-4c0e-8f0f-00c1b953e42a","direction":"outgoing","index":143327,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"},{"id":"cb9a3daf-95fc-42e6-afcf-e59af56ed46e","direction":"outgoing","index":143361,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"2d062395-d011-4d19-92eb-e7d1b2bffcdf","direction":"outgoing","index":143362,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"03040903-c1f1-497b-a312-1a264f05a258","direction":"outgoing","index":143364,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"76311989-f70e-4472-9e6d-a4fdb30a2f6b","direction":"outgoing","index":143365,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"73e8fc9c-b7bc-4ca9-a85f-76e704825d08","direction":"outgoing","index":143366,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"},{"id":"d7311b8f-4358-4728-be64-df9b68da7b43","direction":"outgoing","index":143435,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"23ff6fef-60a8-40c5-898e-df1eac3d477a","direction":"outgoing","index":143436,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"cd1657a9-d4b4-4023-8661-422c75bebc3e","direction":"outgoing","index":143437,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"},{"id":"f4be9118-e3ee-4979-8be1-2ad5071e2056","direction":"outgoing","index":143445,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"f1bbe42f-7a45-4c76-a08e-3ca84c957d46","direction":"outgoing","index":143446,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"4a290697-d34c-41c0-b4d5-bd2e4cb8792e","direction":"outgoing","index":143448,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"f73385d3-dddd-4353-a329-7e1b50dd0743","direction":"outgoing","index":143449,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"0c962e63-23c2-4b9d-bb39-268563e822aa","direction":"outgoing","index":143450,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"},{"id":"c1ac860f-4478-4130-b3ce-1e33ede5a22a","direction":"outgoing","index":143530,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"3f87601d-b926-441c-8300-c5ed79d81db0","direction":"outgoing","index":143531,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"40e77c59-fcf6-4a05-b47c-7aaff8c446d9","direction":"outgoing","index":143532,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"140941c3-c43e-4803-9df5-0e56ab4174e2","direction":"outgoing","index":143557,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"26887f4e-73da-4bd6-8092-e41b5f4211f2","direction":"outgoing","index":143558,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"d2d0d9f2-f4db-41eb-9ce7-eed9819ff594","direction":"outgoing","index":143560,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"65d3f7c2-b8d1-44b9-8030-fb62a8519243","direction":"outgoing","index":143561,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"efe26882-f817-4070-908f-ae2729d7deab","direction":"outgoing","index":143562,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"},{"id":"7a4baabf-d356-4d87-b886-d9a1a20623cc","direction":"outgoing","index":143598,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"aa01796b-c23d-463c-95d4-1b38723d319f","direction":"outgoing","index":143599,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"cea0157d-0de1-4b7a-a9cc-40c90ec6787c","direction":"outgoing","index":143601,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"2dfc8a97-c6ab-4805-b8fd-2ef8c9e98db3","direction":"outgoing","index":143602,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"540c371a-cc2b-4c5f-8572-8a1110fd5591","direction":"outgoing","index":143603,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"},{"id":"748cec38-d716-4376-b35e-351f921c7e1c","direction":"outgoing","index":143639,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"a1f7ce7e-1376-4742-a461-c6dabaca6a4c","direction":"outgoing","index":143640,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"5a25eceb-6862-425b-a7a8-f88f66ebf937","direction":"outgoing","index":143642,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"b8f3e113-d04b-4af4-b9fd-c72f28c0b395","direction":"outgoing","index":143643,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"d954f74a-ddd2-4011-b636-9c7d1572f1fa","direction":"outgoing","index":143644,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"},{"id":"dad2d3fd-6f85-4116-8660-4598781878f3","direction":"outgoing","index":144570,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"45c36add-f9ac-4c9f-b2ab-64077bd87e1a","direction":"outgoing","index":144571,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"9b245edb-f672-4e81-9ded-4614cd4e645d","direction":"outgoing","index":144572,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"470c04f5-400c-4299-9ffa-a4b3f1bf380d","direction":"outgoing","index":144573,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"5d172c3b-5471-49de-a640-e1c87ec1d0c9","direction":"outgoing","index":144574,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"3afd197a-cacc-46fd-8cbf-7471ae912607","direction":"outgoing","index":144575,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"32ec7002-5252-483a-8751-bc3b98be611a","direction":"outgoing","index":144576,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.839-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"ca4c507b-2cd3-4a1b-a8b9-03837c1619e4","direction":"outgoing","index":144577,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.850-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"},{"id":"271448f7-a6ac-4fff-9e48-8e033ee37e10","direction":"outgoing","index":144578,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.859-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"ac59d6e8-0b09-46da-a6d0-36711c03eb2d","direction":"outgoing","index":144579,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"a6b4d3bf-4a01-45ca-8f0d-babddf654ca4","direction":"outgoing","index":144580,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"6dfa2b62-e24f-43c8-ab34-fcabb449949f","direction":"outgoing","index":144581,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.897-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"2caae2e1-027f-4ca1-be33-0ac775256aab","direction":"outgoing","index":144582,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"},{"id":"7aea857d-af89-430b-87a6-a7be38b7c629","direction":"outgoing","index":144583,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"3988eb0b-b5bc-4673-b2bb-073e634069b7","direction":"outgoing","index":144584,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"cf81fbff-e670-4749-b746-9e67a6beeddb","direction":"outgoing","index":144585,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"66cbdf40-6460-4528-aac5-4d5ef93ab130","direction":"outgoing","index":144586,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"a4fff612-35db-4d9e-8bd7-ff9ac9ff614a","direction":"outgoing","index":144587,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.953-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"},{"id":"be6f7de4-d7a8-4592-8693-455a2f45ce3b","direction":"outgoing","index":144588,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.964-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"661ebd51-384a-4b7d-9560-9ab5b34a4b36","direction":"outgoing","index":144589,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"5402968b-a7cb-42e9-a88e-d593c110fbae","direction":"outgoing","index":144590,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"2d3b2486-551c-49fb-ab37-7ad503a56454","direction":"outgoing","index":144591,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:38.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"b6c780b4-5d50-4b5c-b5c8-5495c188bdec","direction":"outgoing","index":144592,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"},{"id":"41f4eae2-c9af-410b-9f26-2ef6ee707d24","direction":"outgoing","index":144593,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.015-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"b9a94c73-d628-4056-8a0f-264b8705dbed","direction":"outgoing","index":144594,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"a8cda884-48dc-481e-87d0-28040e57d9eb","direction":"outgoing","index":144595,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.036-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"},{"id":"44adbe08-5c67-48fb-a694-02883a0f340d","direction":"outgoing","index":144596,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"fd345a2f-791c-48f4-b491-ef7c4bc474e0","direction":"outgoing","index":144597,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.058-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"2a176903-59c1-4149-8127-e8564c6f588f","direction":"outgoing","index":144598,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"fd3150fc-6572-4d21-9aef-b3d17982bdee","direction":"outgoing","index":144599,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"451514ae-722b-40d4-9e08-ebf0b1f2a6e8","direction":"outgoing","index":144600,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"},{"id":"cbea0b54-1691-4bdc-93d2-7fd6c67e9cc6","direction":"outgoing","index":144601,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"a958f4a5-2207-4093-9978-a93749b3d68b","direction":"outgoing","index":144602,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"9af5e30b-8b42-4e15-80c9-fe2e9484f97a","direction":"outgoing","index":144603,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"99672ba4-163a-4df9-96da-32b1cf45ca0c","direction":"outgoing","index":144604,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"e18179c8-d23c-4178-83de-0d05ff735bd6","direction":"outgoing","index":144605,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"},{"id":"898c1a81-565c-4155-b0ca-9b787da18cc9","direction":"outgoing","index":144606,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"e26d06f6-1e88-4a82-8176-f0577cc182d8","direction":"outgoing","index":144607,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"74e9f5fe-afbc-4d8e-8bee-b2dd5325f148","direction":"outgoing","index":144608,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"d3eaa3f2-95f4-48da-b367-8af770d9630e","direction":"outgoing","index":144609,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"0175d7ac-9a82-4271-968a-27ab9e002da5","direction":"outgoing","index":144610,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.190-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"},{"id":"1d6e6e8f-ce17-4387-a94a-57eaf66acdcd","direction":"outgoing","index":144611,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"5c12d114-a088-4fd6-874e-534f85682bd9","direction":"outgoing","index":144612,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"be59c73d-f15e-45fa-b211-34d1dd51758f","direction":"outgoing","index":144613,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"4db586ba-0d7d-487b-a84e-7c7ad876183c","direction":"outgoing","index":144614,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.236-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"9e1d7a67-f86f-4050-9840-4962afadf547","direction":"outgoing","index":144615,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"60ab6970-3d04-4913-97a1-4cba0384d5c7","direction":"outgoing","index":144616,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"30228f45-4d7f-49d2-b1bb-be287912ccfb","direction":"outgoing","index":144617,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"cd49bc55-4f0e-4e50-9712-08d726dffae4","direction":"outgoing","index":144618,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"},{"id":"3a06658f-c592-4a55-9a8a-f6a3faddf20b","direction":"outgoing","index":144619,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.287-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"67c50be1-61ef-49de-98c5-20c7358a027d","direction":"outgoing","index":144620,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91c6a178-3958-4e21-a1c5-963b5d510c50\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"314508d0-75a4-4e5f-a8db-15710c754637","direction":"outgoing","index":144621,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91c6a178-3958-4e21-a1c5-963b5d510c50\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4da75ba5-50ef-4720-b185-ed26020ecf67","direction":"outgoing","index":144622,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=91c6a178-3958-4e21-a1c5-963b5d510c50\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6e1b8af-5c7a-44af-9f6a-b9d15f60fab1","direction":"outgoing","index":144623,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"f715a32a-727e-42d5-83b5-035ed6eadd4c","direction":"outgoing","index":144624,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.341-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a590c887-d445-4c61-890a-164ec2542bf9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"85b30315-82d8-473c-b1c5-350949d5282d","direction":"outgoing","index":144625,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a590c887-d445-4c61-890a-164ec2542bf9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a500fca7-1f5f-4041-a418-07f1e2dba43f","direction":"outgoing","index":144626,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.432-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a590c887-d445-4c61-890a-164ec2542bf9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6f2039c-08b9-44fe-a763-6a05c34f79b5","direction":"outgoing","index":144627,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"093e7bd7-59f2-454a-b573-08ff4bb0adf4","direction":"outgoing","index":144628,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5005313-6073-48f8-a75e-b7ce16cd9a71\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"575cf3a7-12f7-42e2-a847-a0622964cb88","direction":"outgoing","index":144629,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5005313-6073-48f8-a75e-b7ce16cd9a71\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf8d00f4-4d9d-4826-af40-26184730f688","direction":"outgoing","index":144630,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5005313-6073-48f8-a75e-b7ce16cd9a71\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4e8ac7f-0937-4c72-b41c-0eeaae5ffc63","direction":"outgoing","index":144631,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.485-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"63daf281-7df3-4715-a6a0-038c0ba1da95","direction":"outgoing","index":144632,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d4b4e676-15f5-4b69-b1c6-989059c7dd07","direction":"outgoing","index":144633,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"738bd0b7-7204-437d-b9e6-9fa1141fa521","direction":"outgoing","index":144634,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e62a3fed-5b14-4af8-8719-10d8563c1820","direction":"outgoing","index":144635,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8823700b-1e41-4f77-80c6-cd6b7217dc6d","direction":"outgoing","index":144636,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac15cd7e-e912-4159-bd62-409e78c7a467","direction":"outgoing","index":144637,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.546-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"927b964e-cd88-48c4-8f40-00b6f69ede99","direction":"outgoing","index":144638,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a7419e92-1839-4c67-867f-e25f76c5287f","direction":"outgoing","index":144639,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d08dafe6-6ee4-45b5-ad25-ee141c53b291","direction":"outgoing","index":144640,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=14c19091-54b2-4970-85b8-d979d1104659\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd8c51b9-90b3-467e-bb50-4431348c4a81","direction":"outgoing","index":144641,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"},{"id":"3168aa72-9836-4254-900b-ad9c3eaf769c","direction":"outgoing","index":144642,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"ec99619d-2605-4329-99b2-ca872e7a7a5b","direction":"outgoing","index":144643,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"2062f94d-93f0-44bd-8951-c8ecbd1bf931","direction":"outgoing","index":144644,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"ee4be2dc-5d0b-4c5b-a509-f9b71d8816b0","direction":"outgoing","index":144645,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"4cc54c7c-2c17-4053-9c2e-7e224ff5c4c3","direction":"outgoing","index":144646,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.643-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"},{"id":"80306cea-9cc0-4fa1-8328-17cd632cb385","direction":"outgoing","index":144647,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"fa3772d0-1fe1-407d-9e4a-9df6e26e7686","direction":"outgoing","index":144648,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"e2d77a5b-dbee-449b-a951-d8451382d814","direction":"outgoing","index":144649,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"e554a960-0703-4e3b-8e79-4515461058aa","direction":"outgoing","index":144650,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"4270e81e-46cc-477c-91f9-305e1debde4e","direction":"outgoing","index":144651,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"},{"id":"ed90cc5e-9cb0-4d01-bb55-0deda4609c97","direction":"outgoing","index":144652,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"782a8dbb-3202-43e0-bc50-2b3d2cb9b407","direction":"outgoing","index":144653,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"4e020439-99ae-4fd4-a3e3-990197eeaf1c","direction":"outgoing","index":144654,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"fcdb4996-0664-4c3e-a017-56c16ec356a1","direction":"outgoing","index":144655,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"dce8e6ac-df8a-437f-bddf-81c12aa286e0","direction":"outgoing","index":144656,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"},{"id":"7b71fc5d-2013-477d-b7c0-e60b67526409","direction":"outgoing","index":144657,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"b1a4d643-2810-43ba-8de7-1410e8313de7","direction":"outgoing","index":144658,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"d558964a-dd7f-4ead-80ce-6b5c7ae0f7c0","direction":"outgoing","index":144659,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"753d49a1-c1fd-4db0-b4fd-81550e40ffb5","direction":"outgoing","index":144660,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"da69e80e-8d90-4e09-b4e5-0cf2d2dcff15","direction":"outgoing","index":144661,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"},{"id":"e7fd7347-ce00-4bab-92d1-fc2b30668750","direction":"outgoing","index":144662,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.806-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"a3ce44aa-f3bc-4389-af06-01c02b4c2757","direction":"outgoing","index":144663,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"b8a158ea-07d4-4a8d-b0e0-62fdb77bef44","direction":"outgoing","index":144664,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.829-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"},{"id":"0c08787f-594b-4091-9ac4-8166592cbd81","direction":"outgoing","index":144665,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"c36004ab-cd02-46b7-a3b8-f6badd01fe00","direction":"outgoing","index":144666,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"7032f50c-5924-474f-99d4-375d236090d1","direction":"outgoing","index":144667,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"aa0d59e2-2510-4006-8f9b-7a10313a322d","direction":"outgoing","index":144668,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"b3348875-4f03-41c8-b996-e60a127a8e06","direction":"outgoing","index":144669,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"},{"id":"2ebde29a-8f23-46bc-a226-37ad6f2495bb","direction":"outgoing","index":144670,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"b25de563-3089-4fed-8c6c-04508632c90e","direction":"outgoing","index":144671,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"c116e251-9054-4983-9437-9de1c7f2da66","direction":"outgoing","index":144672,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"f57a67d7-c555-4f6d-acf2-c1e4c2e1ee5c","direction":"outgoing","index":144673,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"1428bfba-3425-41b6-adeb-28c6918404aa","direction":"outgoing","index":144674,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"24df8955-2ed9-43e6-a3d1-0176cc9141cf","direction":"outgoing","index":144675,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"1d3ded9e-eb2c-4b61-9975-a834ae1e103c","direction":"outgoing","index":144676,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"4707fd67-8d00-442c-9250-c929a65452b1","direction":"outgoing","index":144677,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"},{"id":"3a3342ea-ffb5-4e6f-a429-11a050c8294a","direction":"outgoing","index":144678,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.974-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"64c0b9e7-73f8-4b3d-9ddb-c9a87548c558","direction":"outgoing","index":144679,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"6f2b6d1a-7f84-4ff6-8f41-3748da37b97b","direction":"outgoing","index":144680,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:39.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"3056879d-e0e1-4378-8b7a-2f2dc95f8913","direction":"outgoing","index":144681,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.007-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"4c6f33d6-d807-4fbd-9be1-8fa8c960b0a2","direction":"outgoing","index":144682,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"},{"id":"10c4d09f-e1b1-4cb8-86b8-ff86c7398cfd","direction":"outgoing","index":144683,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.031-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"c1a15297-dca7-4591-8e80-2c1dda98db1f","direction":"outgoing","index":144684,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"a56fbc5d-43c6-414a-9c21-f3d1941f7311","direction":"outgoing","index":144685,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"c8d73a44-9f99-4d36-b09d-64f8cfdb3156","direction":"outgoing","index":144686,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"38e45d2c-82ee-432b-9db0-d9ce33d0102a","direction":"outgoing","index":144687,"result_id":"aab096f5-a493-4aff-a5ce-a665183ee0f4","status":200,"timestamp":"2026-05-22T21:16:40.081-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_patient_code_granular_scope_search_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:38.665-04:00"},{"id":"e3922240-bd75-4115-976c-bf3ab0e12cff","created_at":"2026-05-22T21:16:42.052-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"granular_scopes_1_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"bcac1d20-e0e8-44b1-9cbb-9775a37f8664","direction":"outgoing","index":142591,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"f83ecd5a-2bdd-45c1-abbd-10041eae889f","direction":"outgoing","index":142593,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"afecd385-cb69-42cc-b986-441fb1504d36","direction":"outgoing","index":142594,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"aff98444-6771-4a03-80cd-54919b393c1a","direction":"outgoing","index":142595,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"0b2fb35b-a9f2-4452-8f58-e8ba3dd3d365","direction":"outgoing","index":142596,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"5745fd30-e520-4bcf-b74a-03a54252310f","direction":"outgoing","index":142664,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"cd4cbcbc-b124-48cd-95bd-0751e42c61a0","direction":"outgoing","index":142665,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e26d690-4d6d-4409-9c93-e3854ef031a8","direction":"outgoing","index":142666,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6210dcf7-606b-4fae-b912-5a743d4435fb","direction":"outgoing","index":142667,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"815666dd-41df-4897-9901-a84a8e6e542d","direction":"outgoing","index":142668,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e0d7764-478a-4841-9da8-adc09b790b29","direction":"outgoing","index":142669,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"959f4f26-f6ef-4d4d-8d93-6298facd444d","direction":"outgoing","index":142670,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d1b80dd-eb92-4f88-a8ef-973ef40f33f6","direction":"outgoing","index":142671,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ef2d32-2c43-4208-a573-32c580abdc8f","direction":"outgoing","index":142672,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cb9f1d0-a814-4729-b9e3-3c6f9924b02f","direction":"outgoing","index":142673,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1bb721-edf9-4266-9598-0693d5ffc425","direction":"outgoing","index":142719,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"059a0b3b-d4b2-4049-bf35-28b6dd7574a1","direction":"outgoing","index":142720,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb4672a8-9406-4daa-b7cc-e3fd7c27f860","direction":"outgoing","index":142721,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1dac884b-9dd9-4ccb-82d9-5b8e03169162","direction":"outgoing","index":142722,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c6216ab-8a83-4a4a-8844-e50050ebd39d","direction":"outgoing","index":142723,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f2ff6d3-a44d-4192-b091-81bceec696c9","direction":"outgoing","index":142724,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"425db202-cd36-4eca-b977-4ca977d00c74","direction":"outgoing","index":142725,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18053de1-0eeb-41c8-88e8-dd070b174283","direction":"outgoing","index":142726,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a8c2077-b9e2-4246-85bf-448894258687","direction":"outgoing","index":142727,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0972690-2b92-4444-8efc-c4eadd6864dc","direction":"outgoing","index":142728,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e8eed58-ee86-4905-9174-f6bd5dadf2b6","direction":"outgoing","index":142772,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"9ef3f8e8-f9e3-48a8-9739-b5b69e8b69d6","direction":"outgoing","index":142773,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6dccb5f-802e-42d0-8c6f-b930dd3bc1f8","direction":"outgoing","index":142774,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dea0a695-3e62-4bbf-b43a-399856b7a44d","direction":"outgoing","index":142775,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9cb5635-6614-4b1d-b3bb-25087edc66d5","direction":"outgoing","index":142776,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083a559f-13fd-4887-966e-071329bbeba1","direction":"outgoing","index":142777,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"8363287c-3d86-4fb5-b43a-7d41facb7267","direction":"outgoing","index":142778,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ca77962-f22c-4c78-a091-ba4706a4badf","direction":"outgoing","index":142779,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab96f973-ca9c-4463-8a23-71000bce51dc","direction":"outgoing","index":142780,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8888fdec-defb-488e-a66a-5f72ee30fc09","direction":"outgoing","index":142781,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6855ee1-782e-47c7-96e5-4fbb30d3d5de","direction":"outgoing","index":142817,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"5391e6d0-8032-4dbd-b06b-002bed62f125","direction":"outgoing","index":142818,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58dcaba7-6f05-4df5-b06b-7efc5778e4cb","direction":"outgoing","index":142819,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52de6d98-c2f1-4520-91d4-4c23b78160e6","direction":"outgoing","index":142820,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"418396cb-bf67-415e-86f7-96fd134dcb3c","direction":"outgoing","index":142821,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a1d55d1-fe25-4dfd-8ca7-4db9b9bd55b9","direction":"outgoing","index":142822,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63b598a3-6852-4ea0-b21c-24507a97257d","direction":"outgoing","index":142827,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"aad5e6ac-a1c0-4a2f-ba6a-5de9b87fdb2c","direction":"outgoing","index":142829,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"2a65687d-c556-400c-81e3-3d62c7a4e995","direction":"outgoing","index":142830,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d70be5a5-daf0-42a0-b0dd-f3020ebbf857","direction":"outgoing","index":142831,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"8f83d094-9235-4b4f-8dbe-b0f83075eb95","direction":"outgoing","index":142832,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"1a7f6149-67c3-4281-a651-a611c298c786","direction":"outgoing","index":142833,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"2399c404-7eff-4ae4-9ba6-fd27e27efb5d","direction":"outgoing","index":142834,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"725d36c8-0dbc-4bff-b4a6-112f70176127","direction":"outgoing","index":142835,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2387874b-c764-4680-b5ed-8a768061cd73","direction":"outgoing","index":142836,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58af7d25-b398-4222-8588-6e0e680aa899","direction":"outgoing","index":142837,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0054e5ef-b1d9-4249-9dcf-5ddec19af092","direction":"outgoing","index":142838,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36fa8689-0e3c-4535-97cc-ed358539d998","direction":"outgoing","index":142839,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"134a0e96-01bf-4419-a7ae-87661b28f0f2","direction":"outgoing","index":142840,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"03b7910a-db92-46d6-bed0-1c92a9361c0a","direction":"outgoing","index":142841,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"c400a2fd-60e5-4dfd-ba83-4bac1174c07b","direction":"outgoing","index":142842,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"de1c0fcd-2828-4611-a29b-241f076f8d5b","direction":"outgoing","index":142843,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0c6f7170-cea9-4935-8649-74a74d9eaf34","direction":"outgoing","index":142844,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"9a261e52-0644-4140-b487-f7490a835024","direction":"outgoing","index":142845,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"d17f9d68-8b52-4922-9dc9-914e43a17afc","direction":"outgoing","index":142846,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a8f2e0e0-008b-462a-9781-f5f50344c0c7","direction":"outgoing","index":142847,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"355d2bba-57b9-4071-af4a-7ba5ef865a01","direction":"outgoing","index":142848,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"feb51d0c-8693-4765-9694-b4a192f2ad51","direction":"outgoing","index":142849,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"34216cab-0337-4128-8baa-f66e404a816b","direction":"outgoing","index":142850,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"b437299a-2349-43b0-9c17-f083273e1524","direction":"outgoing","index":142851,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"8829186d-c81f-4a60-8abc-2e984fd64f16","direction":"outgoing","index":142852,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e51374-0536-4572-935e-ffb965d49277","direction":"outgoing","index":142853,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5031e7a-713a-4ca8-ad5f-b67756843cdb","direction":"outgoing","index":142854,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"910b9110-3d8e-4bac-af3e-245291968dd0","direction":"outgoing","index":142855,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af3e5e5d-ee92-4a59-aa33-c8de29869a77","direction":"outgoing","index":142856,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56d2d961-4b86-4fe1-aca6-394d1325ef98","direction":"outgoing","index":142857,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7321a724-b61f-4425-b03f-98ce7b3158eb","direction":"outgoing","index":142858,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d3cdb25-0553-450d-8f5d-dc3e2c1cd319","direction":"outgoing","index":142859,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb467770-0e11-45e8-b6aa-c3a2e3888ec1","direction":"outgoing","index":142860,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1168261a-65e3-4618-a964-32cd1c589388","direction":"outgoing","index":142861,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"83af2b56-11eb-4166-909f-b8a5e38bb488","direction":"outgoing","index":142862,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e61cf2-b007-4a36-ba0f-058d18dbf5ee","direction":"outgoing","index":142863,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac70b927-f74c-42e6-9976-6fe9d5abdb87","direction":"outgoing","index":142864,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"01cb27a0-0f96-4a36-a9e5-6556dd89d119","direction":"outgoing","index":142865,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"57a73cf7-afe9-4e5e-b6ad-8714fb81b14f","direction":"outgoing","index":142866,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"5507c56e-1bbd-46ba-b745-51841d1346ef","direction":"outgoing","index":142867,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"cdc4e252-eddf-4986-a516-d7f703d5954a","direction":"outgoing","index":142868,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"718e59ba-68f2-4282-a46e-212d9ccfa415","direction":"outgoing","index":142869,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"06ee4a1c-edaa-4b70-bf17-2961bbe9f2e0","direction":"outgoing","index":142870,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"0c1eac7b-4371-46a2-8cb0-4aca93882247","direction":"outgoing","index":142871,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"201d3b72-5d89-4f8d-9b6a-b7b6817af5cf","direction":"outgoing","index":142872,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4989779e-d416-4a1e-8643-37082af67b8d","direction":"outgoing","index":142873,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"900c2893-8729-453b-8f70-3bea92512421","direction":"outgoing","index":142874,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"ef4c0d66-fd28-4f3f-89fb-55d3e8b98282","direction":"outgoing","index":142875,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"30fd5fa9-dcb3-47d0-b978-50b1b8dcf838","direction":"outgoing","index":142876,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"05e3abb5-427c-4848-9cea-d02ef520b222","direction":"outgoing","index":142877,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"0252719c-3a56-4af4-a77b-6799508a785b","direction":"outgoing","index":142878,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"a08af27c-ef03-4432-be2b-54e765f1b389","direction":"outgoing","index":142879,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"4ed78294-c5e2-43a8-8791-81849dde7edd","direction":"outgoing","index":142880,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"33b9e429-7433-4fe4-85b0-995755404c25","direction":"outgoing","index":142881,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"acfc91e9-fb9f-4d1f-946e-f684ec9fa4d4","direction":"outgoing","index":142882,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7796e6b9-4103-408b-a93a-45756565691c","direction":"outgoing","index":142883,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"3798cc83-f610-4e4d-9062-b125328ad246","direction":"outgoing","index":143001,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ddf6d503-8548-421b-acc7-19f9c25e7dfc","direction":"outgoing","index":143002,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dffbf639-90da-4fde-ae92-1757f06b6ba7","direction":"outgoing","index":143003,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f90b213b-fc55-4318-8528-1661e28e1025","direction":"outgoing","index":143004,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"21d13d8b-a545-45b1-8272-1ecc44118ee6","direction":"outgoing","index":143005,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"916d5932-ef05-4d13-b047-d313ce2d999e","direction":"outgoing","index":143006,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3b4a2c-dbf8-47f4-8822-f995f6865719","direction":"outgoing","index":143042,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2c8fd07-7e93-4209-914c-1a4af74c589c","direction":"outgoing","index":143043,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6798f4e6-74f6-489d-85a6-e9dd116db298","direction":"outgoing","index":143044,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de2265d-43a2-41f0-84b1-4c7d4120d867","direction":"outgoing","index":143045,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"8ff5ff1d-cce3-43c6-a80b-6bdd7c05603c","direction":"outgoing","index":143046,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c4580-20f7-4626-966b-430247aada28","direction":"outgoing","index":143047,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de91b9da-54a0-4e28-b784-b26c2cdb5065","direction":"outgoing","index":143083,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"583cfb1d-a97a-41a6-a451-4099aee6ef94","direction":"outgoing","index":143084,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f99d3fb8-c1de-4cf0-abeb-de4742cce31f","direction":"outgoing","index":143085,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a707e19-cee0-4615-a4e2-ff66c0a86310","direction":"outgoing","index":143086,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a3faa2a0-19c7-4682-a46d-613ef8145356","direction":"outgoing","index":143087,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90016b9a-87c7-42e8-8ab4-ea40a6c647c2","direction":"outgoing","index":143088,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c7da6f5-2d26-498f-8051-bb6b6f33fd0c","direction":"outgoing","index":143117,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"e57da4e9-7854-4ed0-8179-66ec71142afa","direction":"outgoing","index":143118,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"6dd37b64-1140-4a55-bf7a-ad777e87fb07","direction":"outgoing","index":143206,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c190d648-ee69-4691-93a3-3fa3414c23aa","direction":"outgoing","index":143207,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c1a9616-bc64-4b63-a367-56c8cd07b35d","direction":"outgoing","index":143208,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5ed12c2-c3e1-4123-8208-d7bc3578b446","direction":"outgoing","index":143209,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320c0779-ee08-4b19-ae7e-7fa6b324822e","direction":"outgoing","index":143210,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5a6da2-f9d9-453b-9840-8e5f0a83c390","direction":"outgoing","index":143211,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"f65212b1-9d46-4a91-9ce2-f36412e9b9d8","direction":"outgoing","index":143212,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9b8ce1-196a-463b-839a-98d84285fe6d","direction":"outgoing","index":143213,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d732ae7-bdd0-4b94-8613-a8cfea0ebb95","direction":"outgoing","index":143214,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b1155e4-bccc-47d4-b75e-4a24efd4cb3c","direction":"outgoing","index":143215,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a94b2656-081e-46e5-b502-6a9ce292ae7e","direction":"outgoing","index":143216,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"d7afa24d-07b3-4875-ba8b-6ffeda0e92e4","direction":"outgoing","index":143217,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2f0516c-b6e2-4139-b7a7-1f8f83799004","direction":"outgoing","index":143218,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8652faf5-2c24-4144-ab0f-ad033b0c7583","direction":"outgoing","index":143219,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7334b6e-9bbf-4604-a9a3-736b254667c9","direction":"outgoing","index":143220,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd42ee37-49d7-4537-861c-46826f05ed99","direction":"outgoing","index":143221,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c528a6c-3a27-42c4-9514-1b4c2caada2c","direction":"outgoing","index":143222,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c514a5fc-9ae7-4804-b2f8-f26f6bb5dcf7","direction":"outgoing","index":143223,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a475fa0-55d2-449e-ada9-accd13a250f5","direction":"outgoing","index":143224,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac02c797-7553-47d0-b9b3-b643557249df","direction":"outgoing","index":143225,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e211849-5ec8-4c60-a19c-0f39ce7648ae","direction":"outgoing","index":143281,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"269dce6b-1d91-4637-8767-ae0407ccbe3a","direction":"outgoing","index":143282,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"678a65a9-62f4-4fd5-b90e-9e9f4d86d7fd","direction":"outgoing","index":143283,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004a733d-cb78-4261-a064-257d692a149b","direction":"outgoing","index":143284,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4935508-bebb-4e82-b8f1-de969ed477fc","direction":"outgoing","index":143285,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76bc44b1-8465-487f-a01f-516e7841e6cb","direction":"outgoing","index":143286,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ddd31f41-8374-414f-ab98-bbcc431f0b73","direction":"outgoing","index":143287,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0890eadd-c3cf-4d09-be83-b4b4514fc495","direction":"outgoing","index":143288,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f236cb0-43e1-4ccd-b8d1-ed4b8c4bd311","direction":"outgoing","index":143289,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a511c836-7e8f-4b40-bd6f-168a85f9dae5","direction":"outgoing","index":143290,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfaa1c67-3557-49d4-a2d7-036442afceec","direction":"outgoing","index":143316,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"01fbca51-1882-4019-b251-c1affb902347","direction":"outgoing","index":143317,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"73bbc96a-c71d-44d1-b539-9703d406993c","direction":"outgoing","index":143351,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2ed9116f-6a36-40d5-90cb-d9458f148329","direction":"outgoing","index":143352,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59e23804-c497-4e1b-9961-8846a3ccd39c","direction":"outgoing","index":143353,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fca5e202-30fe-4154-bc73-bfb409af69b8","direction":"outgoing","index":143354,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"da0c830e-1992-4755-81a8-859f54210011","direction":"outgoing","index":143355,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8293c640-908a-4488-aba7-da08ccd90992","direction":"outgoing","index":143356,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d62cca06-4753-4897-b7e9-7f78f1bfb8cb","direction":"outgoing","index":143392,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c66a764b-f53c-47bc-bb85-fb8c69dfdd96","direction":"outgoing","index":143393,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3278760d-05a2-48d9-8059-790d201dc634","direction":"outgoing","index":143394,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c3e3186-7e80-44e7-80bf-4fd10fdcaef1","direction":"outgoing","index":143395,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"381d4e38-e7b7-44ab-a5b4-acfb20a6ce7e","direction":"outgoing","index":143396,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094b12d7-4044-40f1-9e9e-35b6acec747f","direction":"outgoing","index":143397,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2888c624-8708-45c8-8be6-f35f4beaefa0","direction":"outgoing","index":143402,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"e0d68b87-c737-441c-bc0f-3c29b4170cbf","direction":"outgoing","index":143404,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"423f521c-aae1-489b-858f-d194a7b415b3","direction":"outgoing","index":143405,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"dd10709c-312a-472c-bd03-4553f0134a4e","direction":"outgoing","index":143406,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"d9e9557b-eef7-46c8-8a73-2796b4fc61a5","direction":"outgoing","index":143407,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"b6292381-c82e-496c-b5d6-5f8fa8dd1e57","direction":"outgoing","index":143476,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c8dfe4a0-4ab4-46e8-a54b-9a7a77feb089","direction":"outgoing","index":143477,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6dc0135-7cf5-4e32-910d-93a227d97a26","direction":"outgoing","index":143478,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a330fc79-ada6-4dee-8860-5b18705806a3","direction":"outgoing","index":143479,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ec12350e-acc1-492a-848c-884572d2bb2e","direction":"outgoing","index":143480,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3867935f-5daa-4e85-b81d-510d2e873b4f","direction":"outgoing","index":143481,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecf9ddbb-d5dd-4ef1-9bb9-11963593e6b4","direction":"outgoing","index":143486,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"1ad5700c-23fc-4dbc-940b-44fb2d724bb6","direction":"outgoing","index":143488,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"01284cd7-1da7-44d8-a25c-dd5a1804309e","direction":"outgoing","index":143489,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"02fe14e1-c137-47e6-a045-698acf4b166c","direction":"outgoing","index":143490,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"269abb6b-c41e-479a-a79e-6f54b0fc761d","direction":"outgoing","index":143491,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"ae73eef4-61df-4f41-b6d3-3660d0482d86","direction":"outgoing","index":143492,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"e0a6e5f0-2a1f-429a-b470-db5da84fa6b2","direction":"outgoing","index":143493,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"a048e08d-239c-4410-948a-16dfe29da2ff","direction":"outgoing","index":143494,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"6384b613-c355-4e84-828c-0488b1479d5e","direction":"outgoing","index":143495,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b39dfaca-99e4-48e1-b0a6-dac9b5d1682b","direction":"outgoing","index":143496,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"557209dc-a060-4d44-a251-2cdab69a431c","direction":"outgoing","index":143497,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b40761a6-4490-401a-b02b-db11f5b5432c","direction":"outgoing","index":143498,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"7090bab0-b328-4fea-81b6-5541174f8dca","direction":"outgoing","index":143499,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"3847f544-9e1d-45df-b6dc-a92eaca4ff20","direction":"outgoing","index":143500,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"e4a892d2-4739-45c2-a62a-45a1d35c7db3","direction":"outgoing","index":143501,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d04b27ab-f599-4140-82cb-f73b3769caa3","direction":"outgoing","index":143502,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86583a4-71d4-436b-aa5b-481eab9c3423","direction":"outgoing","index":143503,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dc81c82-0b09-4e52-9c8d-17d087f29bb9","direction":"outgoing","index":143504,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"1265ff30-8a16-4d0a-ba92-0e4a82c11cb6","direction":"outgoing","index":143505,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"1e5155aa-2678-4ae8-89f6-2f029d5a934e","direction":"outgoing","index":143506,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"8b353425-c4bb-47fd-9022-f8dc6a98d977","direction":"outgoing","index":143507,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6132079b-ffd8-432e-a768-0da095434ed0","direction":"outgoing","index":143508,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"5a8609a9-1ae0-4fe7-a375-afefb0cb4a06","direction":"outgoing","index":143509,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"956574b1-ef3f-4d7e-8583-4749bdc89fce","direction":"outgoing","index":143510,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8c3ec7aa-4688-4ee4-8cec-f0bc55d33f88","direction":"outgoing","index":143511,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"48b1797d-1521-4441-abcf-2b9e45078bd0","direction":"outgoing","index":143588,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4326098-4601-485d-94bd-b8e2e3698731","direction":"outgoing","index":143589,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737b3999-a752-4c98-ae57-739b41fadce8","direction":"outgoing","index":143590,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f2e4c43-346e-4d50-b697-0a587e2fca78","direction":"outgoing","index":143591,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"781f6a73-0b6b-4aa8-9ce2-9c55f7d17a44","direction":"outgoing","index":143592,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7665367d-3d30-4bcd-84bb-c1c3f6597daa","direction":"outgoing","index":143593,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bc42d96-48d4-4298-b26e-2a53a031ee27","direction":"outgoing","index":143629,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e565cf2f-1921-4ea4-87db-a37d8f7e99e1","direction":"outgoing","index":143630,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95426d4a-9020-44ae-9647-da7444aef23f","direction":"outgoing","index":143631,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b5b18c5-3d89-4ef9-a194-2cb7284ac2ad","direction":"outgoing","index":143632,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a82c0a3-5819-4f41-bd85-1b5bd33b99ff","direction":"outgoing","index":143633,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53e4455d-c273-4e3b-ab58-7af46cd751a6","direction":"outgoing","index":143634,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"939eec64-091f-46f5-b9a3-5a8fb826911a","direction":"outgoing","index":143670,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"88bc25d0-bf6a-475e-855b-8118b4810953","direction":"outgoing","index":143671,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d2ffc94-54e3-4504-8c76-20d7658e0b90","direction":"outgoing","index":143672,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceefd20-e371-4ba8-b1b5-033fadde57c7","direction":"outgoing","index":143673,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a561b33-ace9-4a12-bd7b-1fa681c20b70","direction":"outgoing","index":143674,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa537135-26a8-4bfe-a1da-3034d9dbff4f","direction":"outgoing","index":143675,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e617c629-9987-450d-bfe0-e038a688b7c1","direction":"outgoing","index":144688,"result_id":"e3922240-bd75-4115-976c-bf3ab0e12cff","status":200,"timestamp":"2026-05-22T21:16:42.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"},{"id":"85cf48c4-b23a-4e02-a355-de8c2665cbe2","direction":"outgoing","index":144689,"result_id":"e3922240-bd75-4115-976c-bf3ab0e12cff","status":200,"timestamp":"2026-05-22T21:16:42.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/0ce3e522-1798-4581-8c7d-c913de0149b6","verb":"get"},{"id":"ce85880f-d09e-4f18-9bb9-9d126c2cb33e","direction":"outgoing","index":144690,"result_id":"e3922240-bd75-4115-976c-bf3ab0e12cff","status":401,"timestamp":"2026-05-22T21:16:42.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group-us_core_v610_Observation_granular_scope_read_test","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:42.052-04:00"},{"id":"4aa2f56a-d407-422d-b554-37bb896d1204","created_at":"2026-05-22T21:16:42.256-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","label":"SMART Credentials for Granular Scopes 1","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1-us_core_v610_observation_granular_scope_1_group","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:42.256-04:00"},{"id":"cf30e6c1-6b2b-4afc-a821-b173eb95c920","created_at":"2026-05-22T21:16:42.262-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:42.262-04:00"},{"id":"c4bc4e94-d247-4a01-a36d-3784f3c01509","created_at":"2026-05-22T21:16:42.264-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_1_auth_info","label":"SMART Credentials for Granular Scopes 1","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis patient/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|social-history\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0903e6d1-cf6d-41af-a5c7-b3ae97785a5a\",\"refresh_token\":\"e79bcaf4-c6b2-4638-b9bb-3011a8d24b33\",\"issue_time\":\"2026-05-22T21:13:56-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_1_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group01-us_core_v610_smart_granular_scopes_1","test_run_id":"d3b07156-c1e8-426d-91d5-ebf3560c5831","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:42.264-04:00"},{"id":"8d2a5be5-c307-4cc8-a931-5ec18f729b0a","created_at":"2026-05-22T21:16:43.471-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/8d2a5be5-c307-4cc8-a931-5ec18f729b0a/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"f1c448e4-13c7-4573-9fa6-038eabdbd441","direction":"outgoing","index":144691,"result_id":"8d2a5be5-c307-4cc8-a931-5ec18f729b0a","status":200,"timestamp":"2026-05-22T21:16:43.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:43.471-04:00"},{"id":"456f993f-97da-4ccc-bbbf-23bec8bb7d45","created_at":"2026-05-22T21:16:43.487-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/456f993f-97da-4ccc-bbbf-23bec8bb7d45/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:43.487-04:00"},{"id":"b79d0b84-f51d-42cd-bb18-b7e275afc5fc","created_at":"2026-05-22T21:16:43.868-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_auth_tls","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:43.868-04:00"},{"id":"fa6eefd7-838d-4d24-9599-ec519dcd7d7c","created_at":"2026-05-22T21:16:43.895-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cproblem-list-item+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Cvital-signs+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csurvey+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fus-core-category%7Csdoh\u0026state=9d28485a-2987-423a-b51c-29ebe19a7904\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=wPOBaSzkU1TZ1sdkMCrExrovYHvXHUeUk-bV9kc5w8A\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"standalone_state","type":"text","value":"9d28485a-2987-423a-b51c-29ebe19a7904"},{"name":"pkce_code_verifier","type":"text","value":"4b9804a3-443e-4c3d-864c-02a57d56c82f-161a760a-672f-4a35-8c8e-283aafd4d5bf"},{"name":"pkce_code_challenge","type":"text","value":"wPOBaSzkU1TZ1sdkMCrExrovYHvXHUeUk-bV9kc5w8A"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cproblem-list-item+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Cvital-signs+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csurvey+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fus-core-category%7Csdoh\u0026state=9d28485a-2987-423a-b51c-29ebe19a7904\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026code_challenge=wPOBaSzkU1TZ1sdkMCrExrovYHvXHUeUk-bV9kc5w8A\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_app_redirect_stu2","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:49.237-04:00"},{"id":"70e908f5-9b1d-4d5b-bbac-1f4e3318df5f","created_at":"2026-05-22T21:16:49.262-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_discovery_stu2","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:49.262-04:00"},{"id":"a1c77ee4-1a14-4dc7-a6c8-8e225b976a0b","created_at":"2026-05-22T21:16:49.278-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlIjoid1BPQmFTemtVMVRaMXNka01DckV4cm92WUh2WEhVZVVrLWJWOWtjNXc4QSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0="}],"requests":[{"id":"0793d8fd-861c-443c-b18f-24bc678af93b","direction":"incoming","index":144692,"result_id":"fa6eefd7-838d-4d24-9599-ec519dcd7d7c","status":null,"timestamp":"2026-05-22T21:16:49.238-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlIjoid1BPQmFTemtVMVRaMXNka01DckV4cm92WUh2WEhVZVVrLWJWOWtjNXc4QSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=\u0026state=9d28485a-2987-423a-b51c-29ebe19a7904","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_code_received","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:49.278-04:00"},{"id":"e87aa2bb-0bcc-4c7f-b590-526d5c643cd6","created_at":"2026-05-22T21:16:49.647-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-standalone_token_tls","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:49.647-04:00"},{"id":"fb2b6c3f-76c3-497c-b609-50bee919a7bc","created_at":"2026-05-22T21:16:50.029-04:00","inputs":[{"name":"standalone_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlIjoid1BPQmFTemtVMVRaMXNka01DckV4cm92WUh2WEhVZVVrLWJWOWtjNXc4QSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=","type":"text"},{"name":"pkce_code_verifier","value":"4b9804a3-443e-4c3d-864c-02a57d56c82f-161a760a-672f-4a35-8c8e-283aafd4d5bf","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-05-22T21:16:50-04:00"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"0793d8fd-861c-443c-b18f-24bc678af93b","direction":"incoming","index":144692,"result_id":"fa6eefd7-838d-4d24-9599-ec519dcd7d7c","status":null,"timestamp":"2026-05-22T21:16:49.238-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlIjoid1BPQmFTemtVMVRaMXNka01DckV4cm92WUh2WEhVZVVrLWJWOWtjNXc4QSIsImNvZGVDaGFsbGVuZ2VNZXRob2QiOiJTMjU2In0=\u0026state=9d28485a-2987-423a-b51c-29ebe19a7904","verb":"get"},{"id":"477719e6-f069-4303-a061-059231909c23","direction":"outgoing","index":144693,"result_id":"fb2b6c3f-76c3-497c-b609-50bee919a7bc","status":200,"timestamp":"2026-05-22T21:16:50.031-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_exchange","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.029-04:00"},{"id":"41591c77-c5d1-4768-a354-3bd1be552e43","created_at":"2026-05-22T21:16:50.045-04:00","inputs":[{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"standalone_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAxMCwiaWF0IjoxNzc5NDk5MDEwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Aa-SWkbkygwYttLEBr14p6ru08-462zUl243OM-jmFTfPvDF-S632WlZfG7j5LY8r2Eo9QGxXvtFMkvU7TOFs4rlzqHFVOSl2InOe_JsXYEQbz5HirShBABZUqUxIq7wxHW0-PdG2T0T2aizzX1BlIM7-lu7VeGRQwNM_QpjO78fvtHGVyKovTvhUohNnDU9uUbdYxZE5iSvQkIPVPUrVdH6KUwiN5-LJyTJTfokzftLqNStfC92HgN3l9uTb-VL6pNf-6UbsZSLzEwaJcmU_v8sbnTaGWue0fsICoVAPl5VDRHsDQj3XZ_m9qn7LDxrlq1VXm-mc0scyxrYvhJHVg"},{"name":"standalone_refresh_token","type":"text","value":"acb4df7f-a686-4c87-ac27-cfa738547c16"},{"name":"standalone_access_token","type":"text","value":"2aa8e397-4ec2-47c8-86db-156e07ff49b8"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_patient_id","type":"text","value":"85"},{"name":"standalone_encounter_id","type":"text","value":""},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh"},{"name":"standalone_intent","type":"text","value":""},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"477719e6-f069-4303-a061-059231909c23","direction":"outgoing","index":144693,"result_id":"fb2b6c3f-76c3-497c-b609-50bee919a7bc","status":200,"timestamp":"2026-05-22T21:16:50.031-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_body","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.045-04:00"},{"id":"e476153a-1506-4d59-98a4-c5d434d092fe","created_at":"2026-05-22T21:16:50.048-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"477719e6-f069-4303-a061-059231909c23","direction":"outgoing","index":144693,"result_id":"fb2b6c3f-76c3-497c-b609-50bee919a7bc","status":200,"timestamp":"2026-05-22T21:16:50.031-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-smart_token_response_headers","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.048-04:00"},{"id":"7fdb6ef1-2ff5-4f57-81e7-1fe700f1a410","created_at":"2026-05-22T21:16:50.051-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2-us_core_granted_granular_scopes","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.051-04:00"},{"id":"52b03eae-7337-437d-88a0-d4b6cc43639c","created_at":"2026-05-22T21:16:50.052-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_standalone_launch_stu2","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.052-04:00"},{"id":"a1616067-e99b-424e-9442-0643373e2fe7","created_at":"2026-05-22T21:16:50.061-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAxMCwiaWF0IjoxNzc5NDk5MDEwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Aa-SWkbkygwYttLEBr14p6ru08-462zUl243OM-jmFTfPvDF-S632WlZfG7j5LY8r2Eo9QGxXvtFMkvU7TOFs4rlzqHFVOSl2InOe_JsXYEQbz5HirShBABZUqUxIq7wxHW0-PdG2T0T2aizzX1BlIM7-lu7VeGRQwNM_QpjO78fvtHGVyKovTvhUohNnDU9uUbdYxZE5iSvQkIPVPUrVdH6KUwiN5-LJyTJTfokzftLqNStfC92HgN3l9uTb-VL6pNf-6UbsZSLzEwaJcmU_v8sbnTaGWue0fsICoVAPl5VDRHsDQj3XZ_m9qn7LDxrlq1VXm-mc0scyxrYvhJHVg","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035010,\"iat\":1779499010,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.061-04:00"},{"id":"acf83559-756a-40f3-a969-a24c6cb588d5","created_at":"2026-05-22T21:16:50.163-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035010,\"iat\":1779499010,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"c2b4c617-23d4-4e1b-8c41-2034e541b2b5","direction":"outgoing","index":144694,"result_id":"acf83559-756a-40f3-a969-a24c6cb588d5","status":200,"timestamp":"2026-05-22T21:16:50.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.163-04:00"},{"id":"4694497d-3474-43a3-8cb8-96b815ada323","created_at":"2026-05-22T21:16:50.175-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.175-04:00"},{"id":"0e5f943d-b80e-442c-96e7-80a83fe7ebf7","created_at":"2026-05-22T21:16:50.277-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"9d59213b-0e7e-489f-9bfa-9fa4a2e3b2be","direction":"outgoing","index":144695,"result_id":"0e5f943d-b80e-442c-96e7-80a83fe7ebf7","status":200,"timestamp":"2026-05-22T21:16:50.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.277-04:00"},{"id":"c25b2f66-3fbf-49fd-849a-e2e206bd1b60","created_at":"2026-05-22T21:16:50.290-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.290-04:00"},{"id":"28a47621-43ab-47d1-ab97-16460a80d0ca","created_at":"2026-05-22T21:16:50.294-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAxMCwiaWF0IjoxNzc5NDk5MDEwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Aa-SWkbkygwYttLEBr14p6ru08-462zUl243OM-jmFTfPvDF-S632WlZfG7j5LY8r2Eo9QGxXvtFMkvU7TOFs4rlzqHFVOSl2InOe_JsXYEQbz5HirShBABZUqUxIq7wxHW0-PdG2T0T2aizzX1BlIM7-lu7VeGRQwNM_QpjO78fvtHGVyKovTvhUohNnDU9uUbdYxZE5iSvQkIPVPUrVdH6KUwiN5-LJyTJTfokzftLqNStfC92HgN3l9uTb-VL6pNf-6UbsZSLzEwaJcmU_v8sbnTaGWue0fsICoVAPl5VDRHsDQj3XZ_m9qn7LDxrlq1VXm-mc0scyxrYvhJHVg","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.294-04:00"},{"id":"d52b8610-d11c-4bc3-8177-1f5c58237c7d","created_at":"2026-05-22T21:16:50.408-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035010,\"iat\":1779499010,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"c47257b9-e2f9-4031-8907-0b7678788a22","direction":"outgoing","index":144696,"result_id":"d52b8610-d11c-4bc3-8177-1f5c58237c7d","status":200,"timestamp":"2026-05-22T21:16:50.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.408-04:00"},{"id":"8175e122-e838-4dd6-8515-b2770aecb8a8","created_at":"2026-05-22T21:16:50.426-04:00","inputs":[{"name":"standalone_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAxMCwiaWF0IjoxNzc5NDk5MDEwLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.Aa-SWkbkygwYttLEBr14p6ru08-462zUl243OM-jmFTfPvDF-S632WlZfG7j5LY8r2Eo9QGxXvtFMkvU7TOFs4rlzqHFVOSl2InOe_JsXYEQbz5HirShBABZUqUxIq7wxHW0-PdG2T0T2aizzX1BlIM7-lu7VeGRQwNM_QpjO78fvtHGVyKovTvhUohNnDU9uUbdYxZE5iSvQkIPVPUrVdH6KUwiN5-LJyTJTfokzftLqNStfC92HgN3l9uTb-VL6pNf-6UbsZSLzEwaJcmU_v8sbnTaGWue0fsICoVAPl5VDRHsDQj3XZ_m9qn7LDxrlq1VXm-mc0scyxrYvhJHVg","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_openid_connect","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.426-04:00"},{"id":"81718ca0-f622-42dd-a205-599f7f160af9","created_at":"2026-05-22T21:16:50.536-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:16:50-04:00"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"325159e7-460b-4311-8886-4da23cb067fa","direction":"outgoing","index":144697,"result_id":"81718ca0-f622-42dd-a205-599f7f160af9","status":200,"timestamp":"2026-05-22T21:16:50.538-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.536-04:00"},{"id":"8521e2a1-aa39-46d0-9ccd-a69d129c2474","created_at":"2026-05-22T21:16:50.550-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"8a2d54f1-2155-4058-b410-9f5796d5675e"},{"name":"access_token","type":"text","value":"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:16:50-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"325159e7-460b-4311-8886-4da23cb067fa","direction":"outgoing","index":144697,"result_id":"81718ca0-f622-42dd-a205-599f7f160af9","status":200,"timestamp":"2026-05-22T21:16:50.538-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.550-04:00"},{"id":"1e397cd1-4fd7-4417-a65a-cbdb91d82ec2","created_at":"2026-05-22T21:16:50.554-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"325159e7-460b-4311-8886-4da23cb067fa","direction":"outgoing","index":144697,"result_id":"81718ca0-f622-42dd-a205-599f7f160af9","status":200,"timestamp":"2026-05-22T21:16:50.538-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.554-04:00"},{"id":"b5c3d8b6-f670-4a7a-b7b0-ea95591be7d1","created_at":"2026-05-22T21:16:50.556-04:00","inputs":[{"name":"standalone_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"2aa8e397-4ec2-47c8-86db-156e07ff49b8\",\"refresh_token\":\"acb4df7f-a686-4c87-ac27-cfa738547c16\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2-smart_token_refresh","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.556-04:00"},{"id":"9822d167-f738-4281-8c86-90565e5ba8f7","created_at":"2026-05-22T21:16:50.559-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_standalone_launch_stu2","test_run_id":"46a33b47-6342-422b-997b-d292877ecc61","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:50.559-04:00"},{"id":"78959186-4f55-4e56-9d31-d655914849e3","created_at":"2026-05-22T21:16:54.428-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/78959186-4f55-4e56-9d31-d655914849e3/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"3c52b805-cd65-4740-9dbb-f7ba2deebe42","direction":"outgoing","index":144698,"result_id":"78959186-4f55-4e56-9d31-d655914849e3","status":200,"timestamp":"2026-05-22T21:16:54.430-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_endpoint","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:54.428-04:00"},{"id":"f5079f34-2ed4-40e5-94c1-17cd1b45b4af","created_at":"2026-05-22T21:16:54.443-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/4D4dxYfv9Vu/results/f5079f34-2ed4-40e5-94c1-17cd1b45b4af/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2-well_known_capabilities_stu2","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:16:54.443-04:00"},{"id":"30420234-0a1d-406b-ba9e-da28853590a6","created_at":"2026-05-22T21:16:54.449-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"launch_uri","type":"text","value":"http://localhost:4567/custom/smart/launch"},{"name":"target_iss","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_launch","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:00.288-04:00"},{"id":"c532a3f7-a72f-4e0d-82b4-a4c994f3ad17","created_at":"2026-05-22T21:17:00.321-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_launch","type":"text","value":"85 cac22925-f852-4ed3-af57-50afe02288bd"}],"requests":[{"id":"d466c715-5d70-41dc-bc94-e9f97974093d","direction":"incoming","index":144699,"result_id":"30420234-0a1d-406b-ba9e-da28853590a6","status":null,"timestamp":"2026-05-22T21:17:00.289-04:00","url":"http://localhost:4567/custom/smart/launch?launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026iss=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_launch_received","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:00.321-04:00"},{"id":"409a0cf0-a3ea-45f3-8a88-0e97eaab5621","created_at":"2026-05-22T21:17:00.694-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_auth_tls","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:00.694-04:00"},{"id":"30042d18-4be0-43cb-88de-f8d7cea991de","created_at":"2026-05-22T21:17:00.973-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"ehr_launch","value":"85 cac22925-f852-4ed3-af57-50afe02288bd","type":"text"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cproblem-list-item+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Cvital-signs+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csurvey+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fus-core-category%7Csdoh\u0026state=471fa191-4290-4fc2-a822-845dfc5c1393\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=FvbLH7xdc4Lexp6PR3WdN7D-ApfL2jpK3xidqbOh9wI\u0026code_challenge_method=S256.","type":"info"}],"optional":false,"outputs":[{"name":"ehr_state","type":"text","value":"471fa191-4290-4fc2-a822-845dfc5c1393"},{"name":"pkce_code_verifier","type":"text","value":"a4350971-9fba-4da8-8515-2ad29cff9915-dff5f266-45f3-4a0c-bb55-3894f5dceccb"},{"name":"pkce_code_challenge","type":"text","value":"FvbLH7xdc4Lexp6PR3WdN7D-ApfL2jpK3xidqbOh9wI"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2FCondition.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fcondition-category%7Cproblem-list-item+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Cvital-signs+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fterminology.hl7.org%2FCodeSystem%2Fobservation-category%7Csurvey+patient%2FObservation.rs%3Fcategory%3Dhttp%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Fcore%2FCodeSystem%2Fus-core-category%7Csdoh\u0026state=471fa191-4290-4fc2-a822-845dfc5c1393\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+cac22925-f852-4ed3-af57-50afe02288bd\u0026code_challenge=FvbLH7xdc4Lexp6PR3WdN7D-ApfL2jpK3xidqbOh9wI\u0026code_challenge_method=S256"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_app_redirect_stu2","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:04.819-04:00"},{"id":"7a5feeb6-0e1c-4a77-817e-f1e51ce5949e","created_at":"2026-05-22T21:17:04.842-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_discovery_stu2","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:04.842-04:00"},{"id":"392d4465-b4a7-4ec6-b8f3-ee4297f1d0da","created_at":"2026-05-22T21:17:04.849-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJlbmNvdW50ZXJJZCI6ImNhYzIyOTI1LWY4NTItNGVkMy1hZjU3LTUwYWZlMDIyODhiZCIsImNvZGVDaGFsbGVuZ2UiOiJGdmJMSDd4ZGM0TGV4cDZQUjNXZE43RC1BcGZMMmpwSzN4aWRxYk9oOXdJIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ=="}],"requests":[{"id":"fa826c19-749d-49c2-9e4d-90617d660fc9","direction":"incoming","index":144700,"result_id":"30042d18-4be0-43cb-88de-f8d7cea991de","status":null,"timestamp":"2026-05-22T21:17:04.820-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJlbmNvdW50ZXJJZCI6ImNhYzIyOTI1LWY4NTItNGVkMy1hZjU3LTUwYWZlMDIyODhiZCIsImNvZGVDaGFsbGVuZ2UiOiJGdmJMSDd4ZGM0TGV4cDZQUjNXZE43RC1BcGZMMmpwSzN4aWRxYk9oOXdJIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==\u0026state=471fa191-4290-4fc2-a822-845dfc5c1393","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_code_received","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:04.849-04:00"},{"id":"57aeb5b0-1539-4bf8-9b9d-216f0108ecd5","created_at":"2026-05-22T21:17:05.217-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-ehr_token_tls","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.217-04:00"},{"id":"641a0bc6-2bd4-4980-ac10-8a111a8a50ec","created_at":"2026-05-22T21:17:05.544-04:00","inputs":[{"name":"ehr_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJlbmNvdW50ZXJJZCI6ImNhYzIyOTI1LWY4NTItNGVkMy1hZjU3LTUwYWZlMDIyODhiZCIsImNvZGVDaGFsbGVuZ2UiOiJGdmJMSDd4ZGM0TGV4cDZQUjNXZE43RC1BcGZMMmpwSzN4aWRxYk9oOXdJIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==","type":"text"},{"name":"pkce_code_verifier","value":"a4350971-9fba-4da8-8515-2ad29cff9915-dff5f266-45f3-4a0c-bb55-3894f5dceccb","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-05-22T21:17:05-04:00"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"fa826c19-749d-49c2-9e4d-90617d660fc9","direction":"incoming","index":144700,"result_id":"30042d18-4be0-43cb-88de-f8d7cea991de","status":null,"timestamp":"2026-05-22T21:17:04.820-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC9Db25kaXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2F0ZWdvcnl8cHJvYmxlbS1saXN0LWl0ZW0gcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5fHZpdGFsLXNpZ25zIHBhdGllbnQvT2JzZXJ2YXRpb24ucnM/Y2F0ZWdvcnk9aHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeXxzdXJ2ZXkgcGF0aWVudC9PYnNlcnZhdGlvbi5ycz9jYXRlZ29yeT1odHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvQ29kZVN5c3RlbS91cy1jb3JlLWNhdGVnb3J5fHNkb2ggIiwicGF0aWVudElkIjoiODUiLCJlbmNvdW50ZXJJZCI6ImNhYzIyOTI1LWY4NTItNGVkMy1hZjU3LTUwYWZlMDIyODhiZCIsImNvZGVDaGFsbGVuZ2UiOiJGdmJMSDd4ZGM0TGV4cDZQUjNXZE43RC1BcGZMMmpwSzN4aWRxYk9oOXdJIiwiY29kZUNoYWxsZW5nZU1ldGhvZCI6IlMyNTYifQ==\u0026state=471fa191-4290-4fc2-a822-845dfc5c1393","verb":"get"},{"id":"61afb5b5-5662-4950-bfff-15435249b122","direction":"outgoing","index":144701,"result_id":"641a0bc6-2bd4-4980-ac10-8a111a8a50ec","status":200,"timestamp":"2026-05-22T21:17:05.546-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_exchange","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.544-04:00"},{"id":"69608979-78df-4f94-b40a-88a68fb43dc3","created_at":"2026-05-22T21:17:05.558-04:00","inputs":[{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"ehr_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAyNSwiaWF0IjoxNzc5NDk5MDI1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.QFTyiOJMJOxqvvYQOKTDxeNXwyI97YtO77Vub3XSaEZvnvcHZJHxNWXBx2ZJaCYLV23ey6RFSA5KUSQqtenJVX4EZLjPJoiMyeckFdSdSNzYFphjqHxbptoNQmqu3dRbDmcMX1kxKHZRjZOEgITYAR6Kh2D9dQjomT3CdNlggjw8a_rUDOJclb1XDLZfTuQLQ06DJb_gOIPsi5CabRD1wg_lAC11Q2VjgIo7wbGXhkwWqN9yQJDFxgPm1AYtfIN7YnBT7nWY29LCLT5yqfzLMj_ClentoE7YWzo8CswmMmxtc1FRWjroZ5NLPls6SWMRtE0zQSRAEKon2zqcZldDzQ"},{"name":"ehr_refresh_token","type":"text","value":"37571091-a9c4-4649-b2aa-da614f69970f"},{"name":"ehr_access_token","type":"text","value":"8b213e96-6afd-463a-b425-b449b88a4de4"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_patient_id","type":"text","value":"85"},{"name":"ehr_encounter_id","type":"text","value":""},{"name":"ehr_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh"},{"name":"ehr_intent","type":"text","value":""},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"61afb5b5-5662-4950-bfff-15435249b122","direction":"outgoing","index":144701,"result_id":"641a0bc6-2bd4-4980-ac10-8a111a8a50ec","status":200,"timestamp":"2026-05-22T21:17:05.546-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_body","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.558-04:00"},{"id":"b826945e-4786-4fcf-a700-f6b01b83e589","created_at":"2026-05-22T21:17:05.561-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"61afb5b5-5662-4950-bfff-15435249b122","direction":"outgoing","index":144701,"result_id":"641a0bc6-2bd4-4980-ac10-8a111a8a50ec","status":200,"timestamp":"2026-05-22T21:17:05.546-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-smart_token_response_headers","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.561-04:00"},{"id":"0afb3811-2010-4f07-b84a-8921a1f50765","created_at":"2026-05-22T21:17:05.564-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2-us_core_granted_granular_scopes","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.564-04:00"},{"id":"f5267661-a2fe-43b6-9a1b-4aec6eeea1ba","created_at":"2026-05-22T21:17:05.566-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_ehr_launch_stu2","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.566-04:00"},{"id":"5b33d302-b67c-42f6-9c38-d47573fffadd","created_at":"2026-05-22T21:17:05.575-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.575-04:00"},{"id":"629cf06e-5ed3-4a34-a25a-221b808c2a14","created_at":"2026-05-22T21:17:05.578-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAyNSwiaWF0IjoxNzc5NDk5MDI1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.QFTyiOJMJOxqvvYQOKTDxeNXwyI97YtO77Vub3XSaEZvnvcHZJHxNWXBx2ZJaCYLV23ey6RFSA5KUSQqtenJVX4EZLjPJoiMyeckFdSdSNzYFphjqHxbptoNQmqu3dRbDmcMX1kxKHZRjZOEgITYAR6Kh2D9dQjomT3CdNlggjw8a_rUDOJclb1XDLZfTuQLQ06DJb_gOIPsi5CabRD1wg_lAC11Q2VjgIo7wbGXhkwWqN9yQJDFxgPm1AYtfIN7YnBT7nWY29LCLT5yqfzLMj_ClentoE7YWzo8CswmMmxtc1FRWjroZ5NLPls6SWMRtE0zQSRAEKon2zqcZldDzQ","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035025,\"iat\":1779499025,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.578-04:00"},{"id":"3ad7e52f-3746-43b1-9611-d3f5f4acbd43","created_at":"2026-05-22T21:17:05.680-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035025,\"iat\":1779499025,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"b1eab43f-25bf-455b-ac2c-bdb8393bf003","direction":"outgoing","index":144702,"result_id":"3ad7e52f-3746-43b1-9611-d3f5f4acbd43","status":200,"timestamp":"2026-05-22T21:17:05.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.680-04:00"},{"id":"882909de-98ac-4572-bd43-3e9e203e2cf1","created_at":"2026-05-22T21:17:05.690-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.690-04:00"},{"id":"ecf3573e-f10e-49dd-84d1-507377ceb842","created_at":"2026-05-22T21:17:05.793-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"4580061e-91a3-4029-b02c-43bea1616f11","direction":"outgoing","index":144703,"result_id":"ecf3573e-f10e-49dd-84d1-507377ceb842","status":200,"timestamp":"2026-05-22T21:17:05.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.793-04:00"},{"id":"bf387d45-f01f-4764-8288-6038ff99796f","created_at":"2026-05-22T21:17:05.804-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_header","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.804-04:00"},{"id":"421bd68b-8509-4493-bfaa-2e0c18be1e08","created_at":"2026-05-22T21:17:05.808-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAyNSwiaWF0IjoxNzc5NDk5MDI1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.QFTyiOJMJOxqvvYQOKTDxeNXwyI97YtO77Vub3XSaEZvnvcHZJHxNWXBx2ZJaCYLV23ey6RFSA5KUSQqtenJVX4EZLjPJoiMyeckFdSdSNzYFphjqHxbptoNQmqu3dRbDmcMX1kxKHZRjZOEgITYAR6Kh2D9dQjomT3CdNlggjw8a_rUDOJclb1XDLZfTuQLQ06DJb_gOIPsi5CabRD1wg_lAC11Q2VjgIo7wbGXhkwWqN9yQJDFxgPm1AYtfIN7YnBT7nWY29LCLT5yqfzLMj_ClentoE7YWzo8CswmMmxtc1FRWjroZ5NLPls6SWMRtE0zQSRAEKon2zqcZldDzQ","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_token_payload","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.808-04:00"},{"id":"efb5debb-e5ae-4fa0-9847-a401e240d835","created_at":"2026-05-22T21:17:05.922-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"87d196ff-f7c2-4a69-bc29-016e506a8304\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1811035025,\"iat\":1779499025,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"7e48de22-e7be-40c9-92ce-7a0260d8d994","direction":"outgoing","index":144704,"result_id":"efb5debb-e5ae-4fa0-9847-a401e240d835","status":200,"timestamp":"2026-05-22T21:17:05.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.922-04:00"},{"id":"168f5f13-41c0-4f5c-b823-277b9bc9f709","created_at":"2026-05-22T21:17:05.938-04:00","inputs":[{"name":"ehr_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiI4N2QxOTZmZi1mN2MyLTRhNjktYmMyOS0wMTZlNTA2YTgzMDQiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgxMTAzNTAyNSwiaWF0IjoxNzc5NDk5MDI1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.QFTyiOJMJOxqvvYQOKTDxeNXwyI97YtO77Vub3XSaEZvnvcHZJHxNWXBx2ZJaCYLV23ey6RFSA5KUSQqtenJVX4EZLjPJoiMyeckFdSdSNzYFphjqHxbptoNQmqu3dRbDmcMX1kxKHZRjZOEgITYAR6Kh2D9dQjomT3CdNlggjw8a_rUDOJclb1XDLZfTuQLQ06DJb_gOIPsi5CabRD1wg_lAC11Q2VjgIo7wbGXhkwWqN9yQJDFxgPm1AYtfIN7YnBT7nWY29LCLT5yqfzLMj_ClentoE7YWzo8CswmMmxtc1FRWjroZ5NLPls6SWMRtE0zQSRAEKon2zqcZldDzQ","type":"text"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_openid_connect","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:05.938-04:00"},{"id":"21612687-41e5-49fc-9db0-7bf8efce4c6a","created_at":"2026-05-22T21:17:06.044-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:17:06-04:00"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"7efb3860-96e7-40c3-9c07-31a73696a519","direction":"outgoing","index":144705,"result_id":"21612687-41e5-49fc-9db0-7bf8efce4c6a","status":200,"timestamp":"2026-05-22T21:17:06.045-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:06.044-04:00"},{"id":"01bd961c-5819-4139-9c4f-1fb0270f9f22","created_at":"2026-05-22T21:17:06.058-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"refresh_token","type":"text","value":"2c059258-3e04-420a-a44d-bbd75cfb8eb7"},{"name":"access_token","type":"text","value":"40f641a6-313c-4404-9556-0cb72fc2b553"},{"name":"token_retrieval_time","type":"text","value":"2026-05-22T21:17:06-04:00"},{"name":"expires_in","type":"text","value":"3600"},{"name":"received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh"},{"name":"granular_scopes_2_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}"}],"requests":[{"id":"7efb3860-96e7-40c3-9c07-31a73696a519","direction":"outgoing","index":144705,"result_id":"21612687-41e5-49fc-9db0-7bf8efce4c6a","status":200,"timestamp":"2026-05-22T21:17:06.045-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_refresh_body","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:06.058-04:00"},{"id":"5e99a43d-ae3c-4744-85ee-b3162361ca1f","created_at":"2026-05-22T21:17:06.064-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"7efb3860-96e7-40c3-9c07-31a73696a519","direction":"outgoing","index":144705,"result_id":"21612687-41e5-49fc-9db0-7bf8efce4c6a","status":200,"timestamp":"2026-05-22T21:17:06.045-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh-smart_token_response_headers","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:06.064-04:00"},{"id":"3e17edac-c421-44af-80e5-c4513051371f","created_at":"2026-05-22T21:17:06.065-04:00","inputs":[{"name":"ehr_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"8b213e96-6afd-463a-b425-b449b88a4de4\",\"refresh_token\":\"37571091-a9c4-4649-b2aa-da614f69970f\",\"issue_time\":\"2026-05-22T21:17:05-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2-smart_token_refresh","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:06.065-04:00"},{"id":"e8f81d04-8890-45d8-8905-94fdaf09af83","created_at":"2026-05-22T21:17:06.070-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"granular_scopes_2_auth_info","label":"Granular Scopes 2 Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"0ab2745b-6e62-4dc3-9cc6-d64e95551fbf\",\"refresh_token\":\"8a2d54f1-2155-4058-b410-9f5796d5675e\",\"issue_time\":\"2026-05-22T21:16:50-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"}],"optional":true,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-Group01-us_core_smart_ehr_launch_stu2","test_run_id":"40f50386-72dd-4b37-9a0e-e6394cbdf914","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:06.070-04:00"},{"id":"7aca6d37-67d1-4f83-ad56-9fc797048412","created_at":"2026-05-22T21:17:11.732-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"fe2db488-7bad-4d57-a0df-efb60bb57d68","direction":"outgoing","index":141977,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b70e0d34-fb85-43e9-87b0-988d1f4b5af5","direction":"outgoing","index":141978,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8adaa43a-f744-48fc-9029-8ac05d0db5c2","direction":"outgoing","index":141981,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"0b8f0eed-4e4e-45e2-8b33-907eea2dbbbd","direction":"outgoing","index":141982,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b736de7-c029-4941-9a25-ee9f128fb7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb240da-e95a-45fa-8e41-4ac4c4a0158d","direction":"outgoing","index":141983,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"fea155a9-6a7b-4e09-a493-ff85f70acbd7","direction":"outgoing","index":141984,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a2c6a2-af34-4878-99a4-861b9ad48f5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c2bf07-11b2-4fa4-a57f-1720eceb39fe","direction":"outgoing","index":141985,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"64f7fced-f070-4007-9abb-e8cb2213082f","direction":"outgoing","index":141986,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fd84ce6-9675-417a-8d81-7a6f3d2efc94","direction":"outgoing","index":141987,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dd99a78-596e-4428-a702-8173ec63a55f","direction":"outgoing","index":141988,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"c67a7836-6852-44c0-8dfc-5c09de709ac1","direction":"outgoing","index":142048,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"bc9a20af-3297-43ad-8c06-dc84ed6c426a","direction":"outgoing","index":142049,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"de9393f8-ff98-4e55-a055-9fb31c57b240","direction":"outgoing","index":142050,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"8a3c808a-8d32-41b3-997f-be8b622bc978","direction":"outgoing","index":142052,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"2021775a-acf4-4690-ac04-1a3c8d93f742","direction":"outgoing","index":142053,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"a0960115-fa0f-49d8-91b7-07716ac1b274","direction":"outgoing","index":142054,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a1678bf1-b514-43cd-8c27-754c47de40d7","direction":"outgoing","index":142055,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"0e25f673-8444-4a42-abda-c0c3d674cb86","direction":"outgoing","index":142056,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"},{"id":"62916a6b-46f4-4baa-870d-474beb97c618","direction":"outgoing","index":144706,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"e238bed1-4865-4b76-a65b-ffefa267dac6","direction":"outgoing","index":144707,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"9aaae21d-4367-4ebc-bc6b-6baea8757f50","direction":"outgoing","index":144708,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"a3d2ae33-8432-4012-98cf-a6e5c2d87edf","direction":"outgoing","index":144709,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"2a8b77c7-a409-4a30-af1e-f0123e067a53","direction":"outgoing","index":144710,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"9db0d6ce-03ac-421b-a8ad-eeeca49b442d","direction":"outgoing","index":144711,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"682324fa-74b1-4c4e-8e14-ae6dfb5aa2b2","direction":"outgoing","index":144712,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.848-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"d8005f72-0db9-4815-bbe6-b9c48bc33f2a","direction":"outgoing","index":144713,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.860-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"23d5ca35-7844-49e2-97c5-437b6c9b700b","direction":"outgoing","index":144714,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"0a7a60c2-651c-42e4-995a-28304de88255","direction":"outgoing","index":144715,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"db56b644-9245-4a22-85c1-3650ed2541ff","direction":"outgoing","index":144716,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"0dfbbc98-1e4b-4c65-9921-fa1e69a5301e","direction":"outgoing","index":144717,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"87997ac0-d093-4b2e-ab57-01b4604b786e","direction":"outgoing","index":144718,"result_id":"7aca6d37-67d1-4f83-ad56-9fc797048412","status":200,"timestamp":"2026-05-22T21:17:11.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_category_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:11.732-04:00"},{"id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","created_at":"2026-05-22T21:17:12.878-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"7515ea90-92dd-43cd-ab2e-e5772efcd7fe","direction":"outgoing","index":141989,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"7a6cb487-bf0a-4879-8e57-6331a1f76731","direction":"outgoing","index":141990,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.521-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc4adcaa-9fc7-4c11-aa79-7c05d5974623","direction":"outgoing","index":141991,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"d6743b28-14ea-49bc-8638-9b84e1cdad69","direction":"outgoing","index":141992,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e351070-62fb-4cab-b90f-869d03f29ed4","direction":"outgoing","index":141993,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"13b72625-5001-4bda-b8af-fd3254452a81","direction":"outgoing","index":141994,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a53376f5-20cf-43a8-a28d-7cea03db5be3","direction":"outgoing","index":141995,"result_id":"417b5cb5-204e-4806-af21-703fc1194d3f","status":200,"timestamp":"2026-05-22T21:05:20.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"b53bd588-39fd-4789-9781-1ddd3f5fcfe1","direction":"outgoing","index":142057,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"0de289ae-a788-4b6f-bc26-bead5f1275d3","direction":"outgoing","index":142058,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=58890e4d-8d78-4c08-bfdd-0b9b6a2128bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd21f4c4-8282-4ee6-b5ba-5204127a8519","direction":"outgoing","index":142059,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.978-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"804a5d89-82a8-48d2-a2cd-abeb6f33fc74","direction":"outgoing","index":142060,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:40.994-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ff5046f-506a-4fc9-be87-9c6a9965e799","direction":"outgoing","index":142061,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a97b7f98-6b90-427a-b11b-e688d724c1f5","direction":"outgoing","index":142062,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaf55b25-9b2a-45a1-9359-a34eeb2136b7\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9a68b82c-6478-4090-9b80-df4a404bc9de","direction":"outgoing","index":142063,"result_id":"a10013c5-c88a-4d9d-a750-9c9529338f3d","status":200,"timestamp":"2026-05-22T21:05:41.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"3c11e18b-5738-4292-8578-6e1afbfe8c3a","direction":"outgoing","index":144719,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"79fa613c-b5fe-4852-bed8-3f594dd34f88","direction":"outgoing","index":144720,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"53d6ea47-c81d-4d08-a281-8b40248f4f86","direction":"outgoing","index":144721,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"},{"id":"99358eba-443f-4a6e-a438-54a9897faef9","direction":"outgoing","index":144722,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.949-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85","verb":"get"},{"id":"9edef5ac-aeed-472e-8cd3-ed76ff1c12b2","direction":"outgoing","index":144723,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355","verb":"get"},{"id":"2d5e75e8-2c16-435f-815a-bdf1317c4686","direction":"outgoing","index":144724,"result_id":"2ea648f9-82df-4efd-991a-ca8e839b6b74","status":200,"timestamp":"2026-05-22T21:17:12.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:12.878-04:00"},{"id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","created_at":"2026-05-22T21:17:14.524-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"7b624b98-b115-46b1-91cc-712c44cf1d48","direction":"outgoing","index":141996,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"7dbb7458-0112-42e1-ab4a-a45c1857fb6d","direction":"outgoing","index":141997,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c5840fe3-e371-4316-a92d-801f51ec26c8","direction":"outgoing","index":141998,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ccaf1278-7b7a-4a60-92bb-0f83b24d2e5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"480c788b-9ade-4fce-afc8-6b2947c9c859","direction":"outgoing","index":141999,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"c0759d02-85ba-4287-b480-bf9b9312cd01","direction":"outgoing","index":142000,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cff6ea9a-8a17-4278-aa71-eba2e41df0c3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87adc814-45b1-4606-beaa-fc02d4bdefba","direction":"outgoing","index":142001,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"5990a97a-d962-41e6-9ba6-36bb4ec06a92","direction":"outgoing","index":142002,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"ff6a0751-f8c0-4d6c-bfb7-a1913384a837","direction":"outgoing","index":142003,"result_id":"7ebaa902-c436-4697-84b0-2a0fabcef56a","status":200,"timestamp":"2026-05-22T21:05:22.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"},{"id":"dbd1769a-9272-450a-b241-3a2d7c294fd7","direction":"outgoing","index":142064,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"b7c39ab5-de0e-449c-846a-7e0da463479d","direction":"outgoing","index":142065,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"51aa1216-6cc4-493f-b52e-b43a93038b12","direction":"outgoing","index":142066,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"0dd8b0e3-b549-4385-9926-9b93c545fbf8","direction":"outgoing","index":142067,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"aad67e2e-3f63-420b-9226-57cce0916688","direction":"outgoing","index":142068,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50861fdb-d10c-488e-8cd0-73562297d4b5","direction":"outgoing","index":142069,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b5897190-f0a9-4f48-9eba-dcc0fec9a636\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"631709b7-e254-4aeb-a94a-35b9d77b2c2c","direction":"outgoing","index":142070,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"},{"id":"c64427b3-d770-4590-8171-50bec2d5bd11","direction":"outgoing","index":142071,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fbdd4f6-d801-46e9-82b7-651efd633353","direction":"outgoing","index":142072,"result_id":"95e2da92-88ef-46dd-bae0-75c62f67fa51","status":200,"timestamp":"2026-05-22T21:05:43.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1598f677-3f81-4d32-a7d1-19448079ce1d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d54caf39-0c9f-4f84-a79a-6ffb93952257","direction":"outgoing","index":144725,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=1940-12-24T00:11:45-05:00","verb":"get"},{"id":"81ac943c-81ef-4f2d-b23a-13ea48d6c7ee","direction":"outgoing","index":144726,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=gt1940-12-23T00:11:45-05:00","verb":"get"},{"id":"d245cd0b-c0f4-4aba-bb3d-f33f694018ee","direction":"outgoing","index":144727,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.581-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=ge1940-12-23T00:11:45-05:00","verb":"get"},{"id":"2d28c299-520c-480c-b0be-12c903353930","direction":"outgoing","index":144728,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=lt1940-12-25T00:11:45-05:00","verb":"get"},{"id":"f092510b-a846-4b40-8847-2927f78da991","direction":"outgoing","index":144729,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=85\u0026recorded-date=le1940-12-25T00:11:45-05:00","verb":"get"},{"id":"32dfcd5c-0815-4182-88aa-47f634c6a442","direction":"outgoing","index":144730,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=1940-11-09T18:33:18-05:00","verb":"get"},{"id":"a44de111-f683-466e-bcdf-3ebafb4d2733","direction":"outgoing","index":144731,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=2016-08-10T07:15:07-08:00","verb":"get"},{"id":"73a7b51c-45f4-406f-b35f-4e8de98e53c1","direction":"outgoing","index":144732,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.643-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=gt2016-08-09T07:15:07-08:00","verb":"get"},{"id":"977e2661-1f17-44be-bda5-c1455669de89","direction":"outgoing","index":144733,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.656-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=ge2016-08-09T07:15:07-08:00","verb":"get"},{"id":"5f5ea411-1ab3-4bf7-bc28-2c29fb626c51","direction":"outgoing","index":144734,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=lt2016-08-11T07:15:07-08:00","verb":"get"},{"id":"c7fcd36e-7752-45f7-b79b-3c818db17ec8","direction":"outgoing","index":144735,"result_id":"b9140333-235d-4c3d-bc15-f3d772df2ea3","status":200,"timestamp":"2026-05-22T21:17:14.681-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?patient=355\u0026recorded-date=le2016-08-11T07:15:07-08:00","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_recorded_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:14.524-04:00"},{"id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","created_at":"2026-05-22T21:17:15.356-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"e2a3a3b1-3885-4a39-970f-9c3a3c8be983","direction":"outgoing","index":142073,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"f9ff5f70-c04b-48a1-87db-58acaba3ab0b","direction":"outgoing","index":142074,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.218-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"37eacfac-1fe8-4b9e-a4cc-93d8cc2afd45","direction":"outgoing","index":142075,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"7033828d-b9f3-4179-9908-50b7d19fcaf4","direction":"outgoing","index":142076,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"e4a068a4-d054-4260-9404-c700536f8db4","direction":"outgoing","index":142077,"result_id":"1ff0fd9d-c0dc-479c-a530-745021831379","status":200,"timestamp":"2026-05-22T21:05:44.258-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"56f96b29-d756-4d92-9645-604ed8a5721f","direction":"outgoing","index":144736,"result_id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","status":200,"timestamp":"2026-05-22T21:17:15.370-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=2016-08-10\u0026patient=355","verb":"get"},{"id":"c0ff26ff-bd42-4e9b-a2b0-dcbb34fca24f","direction":"outgoing","index":144737,"result_id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","status":200,"timestamp":"2026-05-22T21:17:15.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=gt2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5601d00a-2a62-4227-9515-fe803fa1e75c","direction":"outgoing","index":144738,"result_id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","status":200,"timestamp":"2026-05-22T21:17:15.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=ge2016-08-09T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6987a647-c2fe-4034-8ec8-811df6723b93","direction":"outgoing","index":144739,"result_id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","status":200,"timestamp":"2026-05-22T21:17:15.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=lt2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"893c0182-f0f2-4014-9b83-462f1d3f0a8a","direction":"outgoing","index":144740,"result_id":"f9747f91-3a6a-4acd-894e-3a14d8b67aec","status":200,"timestamp":"2026-05-22T21:17:15.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?asserted-date=le2016-08-11T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_asserted_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:15.356-04:00"},{"id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","created_at":"2026-05-22T21:17:16.111-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"fba58db2-a383-46e8-9df3-8300854191d2","direction":"outgoing","index":142004,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"fdd033a5-9825-442a-9200-cc187af09ee9","direction":"outgoing","index":142005,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2041af2d-4703-45ae-a519-3aaa5c843922\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d92f61e4-ef25-442c-a731-18cd82956bb8","direction":"outgoing","index":142006,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"61b43448-3645-4292-9690-9214276bdd20","direction":"outgoing","index":142007,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2c4f8755-3892-430e-9dd5-fdb5a4e511ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ea2842b4-7e33-4add-9021-922086285161","direction":"outgoing","index":142008,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"75b399aa-4914-473c-8e7f-bacb0a112de5","direction":"outgoing","index":142009,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.385-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db86eb51-57a0-4f26-b059-1f565c7221fb","direction":"outgoing","index":142010,"result_id":"cbaef670-08be-479d-8522-2656dac3b209","status":200,"timestamp":"2026-05-22T21:05:24.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d21d3025-0cd0-451e-8151-0f9b8d57dbe9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38738fde-bc49-4774-bbb0-125915897b27","direction":"outgoing","index":142078,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.502-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"318c2b8d-e45b-4cce-9b43-68bc3efa62c1","direction":"outgoing","index":142079,"result_id":"d9df6420-65f8-4bd8-b9d0-ca9edb5fa116","status":200,"timestamp":"2026-05-22T21:05:44.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"43e37c2f-7526-4ba4-b785-983a64317a68","direction":"outgoing","index":144741,"result_id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","status":200,"timestamp":"2026-05-22T21:17:16.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"853fdd88-fd64-40e3-98a0-5ac93b1b2619","direction":"outgoing","index":144742,"result_id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","status":200,"timestamp":"2026-05-22T21:17:16.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"3a40589a-6754-45ef-be05-30196d47daba","direction":"outgoing","index":144743,"result_id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","status":200,"timestamp":"2026-05-22T21:17:16.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"1255d85d-0260-4dee-96cb-fbcb3c3b324f","direction":"outgoing","index":144744,"result_id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","status":200,"timestamp":"2026-05-22T21:17:16.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"c6e6d2dc-66fc-43d6-b022-3643d02136ce","direction":"outgoing","index":144745,"result_id":"ed5bd316-639b-4160-a36f-c9ce7a02a701","status":200,"timestamp":"2026-05-22T21:17:16.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_category_clinical_status_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:16.111-04:00"},{"id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","created_at":"2026-05-22T21:17:17.711-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"b7ec9f63-18ab-4fa2-9609-5e8266fecf88","direction":"outgoing","index":142011,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7fcd5c4b-1c9d-40c6-bc40-5fa9b6b67910","direction":"outgoing","index":142012,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"16cb25a1-e22b-4e54-8737-d05a1c3b3964","direction":"outgoing","index":142013,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.793-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=faa0bf4f-3ee1-427e-8a14-e8ab90035551\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"303d412a-5f02-4ed4-8433-113b82fdef4b","direction":"outgoing","index":142014,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"6f5bba5b-af5f-4c70-afff-0da53be81c2d","direction":"outgoing","index":142015,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.822-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9248228f-7f91-4240-8319-a7f579a3a917\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5e731a25-7357-4a59-af86-b7bbeaa264e5","direction":"outgoing","index":142016,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"cadb1dca-71ee-4157-a93e-a4b8a98b2a54","direction":"outgoing","index":142017,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"fc4db21d-a586-45a6-950c-c801f8609327","direction":"outgoing","index":142018,"result_id":"09a82411-ec33-4ae4-aa6e-8b5a60ee8d75","status":200,"timestamp":"2026-05-22T21:05:26.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c10696c6-0320-418a-87c7-5fb4594469f8","direction":"outgoing","index":142080,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b15ae07-9f72-441c-93e1-25ffa4997d64","direction":"outgoing","index":142081,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"03eb08c0-5c8c-4484-aa2d-1dde8be4426f","direction":"outgoing","index":142082,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.061-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"650a79dd-a6e9-4adb-9f33-704f2cda7d53","direction":"outgoing","index":142083,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"364cd213-484a-40f7-a160-65b91cb9738a","direction":"outgoing","index":142084,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"26f93c4b-7bb0-44ff-bba3-6787dff3b3ae","direction":"outgoing","index":142085,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=081f85f4-70f8-4496-a074-3ef4c21b292a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f8785f1-17dd-4860-92e9-d5e6f603d4e1","direction":"outgoing","index":142086,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"68c46253-9124-472f-bd2f-a36f9ca85dba","direction":"outgoing","index":142087,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f6e0ff7-b283-4b75-b91d-2b6f2bd6e796","direction":"outgoing","index":142088,"result_id":"cf2a37f1-d21e-4200-81f2-c247a937a5b4","status":200,"timestamp":"2026-05-22T21:05:47.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=abd3919e-1f0f-412e-9c47-9df742591df6\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"788f7d86-83df-4d16-97fd-9838d3ca982c","direction":"outgoing","index":144746,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-12-24T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"95711b2f-51e6-46ad-a0ba-1b9966ac954e","direction":"outgoing","index":144747,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.759-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"99eb2017-a82d-4ee9-8d89-85986236069d","direction":"outgoing","index":144748,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge1940-12-23T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"c6538549-8455-4eb0-9c1f-07dcb56ea389","direction":"outgoing","index":144749,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.785-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"4afbeece-dc66-47e0-b51a-ace18bfef853","direction":"outgoing","index":144750,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.797-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le1940-12-25T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"7c5e3bcc-9fb4-4753-8480-4a999f6a91f8","direction":"outgoing","index":144751,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=1940-11-09T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"f4eb165b-0b4b-4a64-b3f9-c70cadb718ca","direction":"outgoing","index":144752,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"814a3565-371a-4dda-af14-9d36a463598d","direction":"outgoing","index":144753,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=gt2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"98e68a0d-7a01-49c9-8cf4-d0737d7d3257","direction":"outgoing","index":144754,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.837-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=ge2007-12-13T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9f7ed990-6d25-424f-99b8-4e8a88577ba6","direction":"outgoing","index":144755,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=lt2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"11f04019-2ed1-4a2f-8c91-775ee7f7be71","direction":"outgoing","index":144756,"result_id":"23fc23e8-ebc4-405a-96c3-f49c55779a32","status":200,"timestamp":"2026-05-22T21:17:17.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?onset-date=le2007-12-15T00:00:00%2B00:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_onset_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:17.711-04:00"},{"id":"a25928ff-a39f-4309-ab8e-9785c14e0750","created_at":"2026-05-22T21:17:19.348-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"c1ab64d4-2909-4f7f-8025-4fc0d069fbdd","direction":"outgoing","index":142019,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.909-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"475753a0-9ca3-4536-b2e8-d947ce9c226f","direction":"outgoing","index":142020,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"3e6d28b2-0d82-47a6-9195-4d4fd70897da","direction":"outgoing","index":142021,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.939-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0734047-36ec-400f-a5ae-545cedb8bfba\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5274fdae-123e-4ff7-85c6-606a97bbad32","direction":"outgoing","index":142022,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"bcec1dc4-c8f1-49c8-872c-ccaa3577d544","direction":"outgoing","index":142023,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1513088c-90f3-4e42-8b84-f4cac466c6ab\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"653ad080-1cdb-4122-bef6-6e3b2357b497","direction":"outgoing","index":142024,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:27.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"2f1120cb-9f53-4695-9c48-171247557112","direction":"outgoing","index":142025,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"1f703794-6565-4ed4-a562-ad6706e9b395","direction":"outgoing","index":142026,"result_id":"80895868-396a-4236-8d9e-661e6a6cfa3e","status":200,"timestamp":"2026-05-22T21:05:28.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ea4f0c92-5007-4344-a6b6-7f927ce3dc1a","direction":"outgoing","index":142089,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"a1827f7c-2de1-4caf-93c0-bdaa7539398d","direction":"outgoing","index":142090,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"6598d5d8-b497-4a18-bf5d-59ec0a3001c7","direction":"outgoing","index":142091,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"182697c0-48ea-4e54-96f1-d8e1dcd4d0e1","direction":"outgoing","index":142092,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.234-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"4790c427-0a27-46f1-8cc2-1160962ab1f4","direction":"outgoing","index":142093,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.247-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f0f48f57-3bfb-4246-8d4a-e2c725c58065\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d1b2b53b-a5df-41aa-9207-2ca9228ac28e","direction":"outgoing","index":142094,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"50bd9b11-60cf-4ee3-8fec-d7fa507be805","direction":"outgoing","index":142095,"result_id":"59ffa0c7-d206-48bb-9cb8-147f8c5cfb59","status":200,"timestamp":"2026-05-22T21:05:49.273-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6641717-2448-4c18-a234-10a767654283\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"24286bc0-4f51-4634-b7d3-f1f0f20f4faf","direction":"outgoing","index":144757,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1941-03-07T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"de0c18cb-8628-450a-9f09-9f69b66cfb5a","direction":"outgoing","index":144758,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"a5ca15cf-397f-4fa1-9988-2bab64f13446","direction":"outgoing","index":144759,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge1941-03-06T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"6e3cd396-ee06-4ddb-9882-07cc51b60e2c","direction":"outgoing","index":144760,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.422-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"1abf2ec6-2512-4afd-ba35-f60fbf41a225","direction":"outgoing","index":144761,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le1941-03-08T00:11:45-05:00\u0026patient=85","verb":"get"},{"id":"86cda10e-0328-4c8d-89d9-6d0b0d87f37a","direction":"outgoing","index":144762,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.444-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=1940-11-30T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3bf7094f-0255-44d3-9ff4-0d18d46f5acc","direction":"outgoing","index":144763,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=2016-08-10T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"c9292e6f-3593-4c2c-9b3a-f5c21ed0a88d","direction":"outgoing","index":144764,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.467-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=gt2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"503405e1-bc58-40d5-868d-7a3bd1cf0112","direction":"outgoing","index":144765,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=ge2016-08-09T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"c8918f1c-bd97-402b-adcb-288a469d6ffa","direction":"outgoing","index":144766,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=lt2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"},{"id":"fbab81a5-0afc-46be-9cb4-556fdfc83853","direction":"outgoing","index":144767,"result_id":"a25928ff-a39f-4309-ab8e-9785c14e0750","status":200,"timestamp":"2026-05-22T21:17:19.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?abatement-date=le2016-08-11T07:15:07-08:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_abatement_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:19.348-04:00"},{"id":"74588d1b-dce0-4e49-a4e2-42937e346577","created_at":"2026-05-22T21:17:20.220-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"da51872a-14f2-44ae-99d6-a1b6444a78d7","direction":"outgoing","index":142027,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"ef49fbe1-4d02-4b5c-bcc5-8e5a25c050bf","direction":"outgoing","index":142028,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e3865b2c-5503-4e5c-8a4c-a83b13c542a8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56201d15-8f97-4ed2-958b-0d6d0d81ba8c","direction":"outgoing","index":142029,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"7c89696d-f71b-49a1-a631-98cd29e81ae2","direction":"outgoing","index":142030,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.562-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28ba7ec7-d03b-4d39-93b7-5494615c3ff6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2d12db0-e60d-4b6b-9b82-d47daddaef28","direction":"outgoing","index":142031,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"11e0df16-a4d6-4556-8cc4-06e795e12c2e","direction":"outgoing","index":142032,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5c0c1a3-e222-4218-86dc-6d287fb44f0e","direction":"outgoing","index":142033,"result_id":"7bb7db25-3ee0-4849-b88c-61084d8d539a","status":200,"timestamp":"2026-05-22T21:05:29.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff3fe17f-af15-4200-b9cc-e74233f96f3f","direction":"outgoing","index":142096,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"7796aa10-0a89-4034-8acc-32a26751c53a","direction":"outgoing","index":142097,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5092c47-92cf-4d99-a0de-e1d4e4975c81","direction":"outgoing","index":142098,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.680-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0fc622a6-f84a-4762-9b3a-8bcb62756736\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b55e4778-6cee-4aa0-b223-36cc7537a8b6","direction":"outgoing","index":142099,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"},{"id":"547ae386-6b4c-4cc6-8cfb-3ecaee996c86","direction":"outgoing","index":142100,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54b0fd4c-0919-4945-8326-5b3d50d2486d","direction":"outgoing","index":142101,"result_id":"4a80dd2e-8023-4f07-92e3-dc140d4c0fa6","status":200,"timestamp":"2026-05-22T21:05:50.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eaa4dd1a-4bbb-44af-84fe-4c358bb965e3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"606a72ff-d5b5-411c-a2e3-b90390ca3537","direction":"outgoing","index":144768,"result_id":"74588d1b-dce0-4e49-a4e2-42937e346577","status":200,"timestamp":"2026-05-22T21:17:20.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=85","verb":"get"},{"id":"62e843bc-66a7-4aaa-99b1-44c8751dc78a","direction":"outgoing","index":144769,"result_id":"74588d1b-dce0-4e49-a4e2-42937e346577","status":200,"timestamp":"2026-05-22T21:17:20.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=85","verb":"get"},{"id":"8eb1c86a-6371-4389-8d39-19f4290161a4","direction":"outgoing","index":144770,"result_id":"74588d1b-dce0-4e49-a4e2-42937e346577","status":200,"timestamp":"2026-05-22T21:17:20.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"1e87c298-b47c-4ded-aed6-31c5ba6343d9","direction":"outgoing","index":144771,"result_id":"74588d1b-dce0-4e49-a4e2-42937e346577","status":200,"timestamp":"2026-05-22T21:17:20.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=resolved\u0026patient=355","verb":"get"},{"id":"09b66176-9034-4633-90ff-115a1ac77a5a","direction":"outgoing","index":144772,"result_id":"74588d1b-dce0-4e49-a4e2-42937e346577","status":200,"timestamp":"2026-05-22T21:17:20.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?clinical-status=http://terminology.hl7.org/CodeSystem/condition-clinical%7Cresolved\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_clinical_status_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:20.220-04:00"},{"id":"10fd930e-b423-469e-b442-ed6d28710f7e","created_at":"2026-05-22T21:17:20.647-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"f2b3b40b-6f8e-475a-b68a-3a44681f602c","direction":"outgoing","index":142034,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5f885a58-cebb-4fe6-9574-4864cc221ebb","direction":"outgoing","index":142035,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"5ac13dff-371c-4ef9-b708-1c7354321e04","direction":"outgoing","index":142036,"result_id":"0d337723-3133-4220-9829-7479b2993534","status":200,"timestamp":"2026-05-22T21:05:29.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"},{"id":"658b1508-682a-4154-a227-812ec7dc8fea","direction":"outgoing","index":144773,"result_id":"10fd930e-b423-469e-b442-ed6d28710f7e","status":200,"timestamp":"2026-05-22T21:17:20.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"bb7ff9e8-6dec-4ca7-9700-1caa62e75c00","direction":"outgoing","index":144774,"result_id":"10fd930e-b423-469e-b442-ed6d28710f7e","status":200,"timestamp":"2026-05-22T21:17:20.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026encounter=Encounter/17bbd1c3-afb3-458b-a0a8-70ebb000b078\u0026patient=85","verb":"get"},{"id":"1ce00bf4-38ea-4943-99ff-6413950bb4f1","direction":"outgoing","index":144775,"result_id":"10fd930e-b423-469e-b442-ed6d28710f7e","status":200,"timestamp":"2026-05-22T21:17:20.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026encounter=Encounter/83cbd5fe-437e-4d1d-87cd-179c81ddadd7\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_category_encounter_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:20.647-04:00"},{"id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","created_at":"2026-05-22T21:17:21.335-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"ee2f7825-9fff-4c3c-9ce0-53e7bc9a424e","direction":"outgoing","index":142037,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"8cf11ea1-34a5-41cf-ba2b-b283b266e526","direction":"outgoing","index":142038,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"d0bac533-a7ef-46a0-be1d-c3ff350b5b80","direction":"outgoing","index":142039,"result_id":"45d53901-487b-4e91-99d5-4d8c84e242be","status":200,"timestamp":"2026-05-22T21:05:30.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"},{"id":"70f26b34-c502-47a7-8e61-3b2019c3d88e","direction":"outgoing","index":142102,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.977-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"374abb8f-73ff-45f7-aaf0-e05aa8a61863","direction":"outgoing","index":142103,"result_id":"a683ccda-d09c-41dd-a899-281b5283d8c8","status":200,"timestamp":"2026-05-22T21:05:50.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"},{"id":"ad9e717e-5051-4bdd-94a7-e2ed8631e027","direction":"outgoing","index":144776,"result_id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","status":200,"timestamp":"2026-05-22T21:17:21.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=65363002\u0026patient=85","verb":"get"},{"id":"a5eb4c86-0273-494d-9c80-a31f9ea70ce8","direction":"outgoing","index":144777,"result_id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","status":200,"timestamp":"2026-05-22T21:17:21.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C65363002\u0026patient=85","verb":"get"},{"id":"e357ecc7-9b76-45eb-bf76-90b590266d05","direction":"outgoing","index":144778,"result_id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","status":200,"timestamp":"2026-05-22T21:17:21.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=444814009\u0026patient=355","verb":"get"},{"id":"c346d505-c7c8-40a9-ab10-5ef6c4bca05a","direction":"outgoing","index":144779,"result_id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","status":200,"timestamp":"2026-05-22T21:17:21.389-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=445281000124101\u0026patient=355","verb":"get"},{"id":"131f6843-47f8-4900-a6bc-cab37fad348b","direction":"outgoing","index":144780,"result_id":"977c7c7f-1f68-4c44-b3b6-55510d6eb68e","status":200,"timestamp":"2026-05-22T21:17:21.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?code=http://snomed.info/sct%7C445281000124101\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_patient_code_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:21.335-04:00"},{"id":"deda02e6-5a50-419c-a389-108162d95bd4","created_at":"2026-05-22T21:17:21.707-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"fe2db488-7bad-4d57-a0df-efb60bb57d68","direction":"outgoing","index":141977,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=85","verb":"get"},{"id":"b70e0d34-fb85-43e9-87b0-988d1f4b5af5","direction":"outgoing","index":141978,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8fcc8f13-e88e-45d7-9cba-f0c9b9464dc2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8adaa43a-f744-48fc-9029-8ac05d0db5c2","direction":"outgoing","index":141981,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=Patient/85","verb":"get"},{"id":"0b8f0eed-4e4e-45e2-8b33-907eea2dbbbd","direction":"outgoing","index":141982,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7b736de7-c029-4941-9a25-ee9f128fb7fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ccb240da-e95a-45fa-8e41-4ac4c4a0158d","direction":"outgoing","index":141983,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cencounter-diagnosis\u0026patient=85","verb":"get"},{"id":"fea155a9-6a7b-4e09-a493-ff85f70acbd7","direction":"outgoing","index":141984,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28a2c6a2-af34-4878-99a4-861b9ad48f5a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90c2bf07-11b2-4fa4-a57f-1720eceb39fe","direction":"outgoing","index":141985,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=355","verb":"get"},{"id":"64f7fced-f070-4007-9abb-e8cb2213082f","direction":"outgoing","index":141986,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fd84ce6-9675-417a-8d81-7a6f3d2efc94","direction":"outgoing","index":141987,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f95bee4-3a66-420c-bbe5-277fd199dfc0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3dd99a78-596e-4428-a702-8173ec63a55f","direction":"outgoing","index":141988,"result_id":"b4449c81-324e-4af1-b4fc-863bf6ac465d","status":200,"timestamp":"2026-05-22T21:05:18.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=encounter-diagnosis\u0026patient=907","verb":"get"},{"id":"c67a7836-6852-44c0-8dfc-5c09de709ac1","direction":"outgoing","index":142048,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.847-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=85","verb":"get"},{"id":"bc9a20af-3297-43ad-8c06-dc84ed6c426a","direction":"outgoing","index":142049,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=85","verb":"get"},{"id":"de9393f8-ff98-4e55-a055-9fb31c57b240","direction":"outgoing","index":142050,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.881-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=355","verb":"get"},{"id":"8a3c808a-8d32-41b3-997f-be8b622bc978","direction":"outgoing","index":142052,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=Patient/355","verb":"get"},{"id":"2021775a-acf4-4690-ac04-1a3c8d93f742","direction":"outgoing","index":142053,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.926-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=http://terminology.hl7.org/CodeSystem/condition-category%7Cproblem-list-item\u0026patient=355","verb":"get"},{"id":"a0960115-fa0f-49d8-91b7-07716ac1b274","direction":"outgoing","index":142054,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=355","verb":"get"},{"id":"a1678bf1-b514-43cd-8c27-754c47de40d7","direction":"outgoing","index":142055,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=problem-list-item\u0026patient=907","verb":"get"},{"id":"0e25f673-8444-4a42-abda-c0c3d674cb86","direction":"outgoing","index":142056,"result_id":"6c08e44d-9140-42a1-8189-60948d29be22","status":200,"timestamp":"2026-05-22T21:05:39.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition?category=health-concern\u0026patient=907","verb":"get"},{"id":"c8bc7eda-91ac-4700-8ed1-51ac29d1a87a","direction":"outgoing","index":144781,"result_id":"deda02e6-5a50-419c-a389-108162d95bd4","status":200,"timestamp":"2026-05-22T21:17:21.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/32ad3944-7a24-40a6-a5a4-27208fe7d370","verb":"get"},{"id":"af6eceef-3e41-44b4-ba78-e7c1ca77b610","direction":"outgoing","index":144782,"result_id":"deda02e6-5a50-419c-a389-108162d95bd4","status":401,"timestamp":"2026-05-22T21:17:21.731-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Condition/0d17a979-4aec-4e67-9ab8-9d48851eca0c","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group-us_core_v610_Condition_granular_scope_read_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:21.707-04:00"},{"id":"7513dd21-8646-4fb1-9c85-1a9351c86a03","created_at":"2026-05-22T21:17:21.739-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","label":"SMART Credentials for Granular Scopes 2","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_condition_granular_scope_2_group","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:21.739-04:00"},{"id":"293d414b-6fe9-4305-ae42-83590c88927e","created_at":"2026-05-22T21:17:47.075-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"bcac1d20-e0e8-44b1-9cbb-9775a37f8664","direction":"outgoing","index":142591,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"f83ecd5a-2bdd-45c1-abbd-10041eae889f","direction":"outgoing","index":142593,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"afecd385-cb69-42cc-b986-441fb1504d36","direction":"outgoing","index":142594,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"aff98444-6771-4a03-80cd-54919b393c1a","direction":"outgoing","index":142595,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"0b2fb35b-a9f2-4452-8f58-e8ba3dd3d365","direction":"outgoing","index":142596,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"5745fd30-e520-4bcf-b74a-03a54252310f","direction":"outgoing","index":142664,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"cd4cbcbc-b124-48cd-95bd-0751e42c61a0","direction":"outgoing","index":142665,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e26d690-4d6d-4409-9c93-e3854ef031a8","direction":"outgoing","index":142666,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6210dcf7-606b-4fae-b912-5a743d4435fb","direction":"outgoing","index":142667,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"815666dd-41df-4897-9901-a84a8e6e542d","direction":"outgoing","index":142668,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e0d7764-478a-4841-9da8-adc09b790b29","direction":"outgoing","index":142669,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"959f4f26-f6ef-4d4d-8d93-6298facd444d","direction":"outgoing","index":142670,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d1b80dd-eb92-4f88-a8ef-973ef40f33f6","direction":"outgoing","index":142671,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ef2d32-2c43-4208-a573-32c580abdc8f","direction":"outgoing","index":142672,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cb9f1d0-a814-4729-b9e3-3c6f9924b02f","direction":"outgoing","index":142673,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1bb721-edf9-4266-9598-0693d5ffc425","direction":"outgoing","index":142719,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"059a0b3b-d4b2-4049-bf35-28b6dd7574a1","direction":"outgoing","index":142720,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb4672a8-9406-4daa-b7cc-e3fd7c27f860","direction":"outgoing","index":142721,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1dac884b-9dd9-4ccb-82d9-5b8e03169162","direction":"outgoing","index":142722,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c6216ab-8a83-4a4a-8844-e50050ebd39d","direction":"outgoing","index":142723,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f2ff6d3-a44d-4192-b091-81bceec696c9","direction":"outgoing","index":142724,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"425db202-cd36-4eca-b977-4ca977d00c74","direction":"outgoing","index":142725,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18053de1-0eeb-41c8-88e8-dd070b174283","direction":"outgoing","index":142726,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a8c2077-b9e2-4246-85bf-448894258687","direction":"outgoing","index":142727,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0972690-2b92-4444-8efc-c4eadd6864dc","direction":"outgoing","index":142728,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e8eed58-ee86-4905-9174-f6bd5dadf2b6","direction":"outgoing","index":142772,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"9ef3f8e8-f9e3-48a8-9739-b5b69e8b69d6","direction":"outgoing","index":142773,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6dccb5f-802e-42d0-8c6f-b930dd3bc1f8","direction":"outgoing","index":142774,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dea0a695-3e62-4bbf-b43a-399856b7a44d","direction":"outgoing","index":142775,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9cb5635-6614-4b1d-b3bb-25087edc66d5","direction":"outgoing","index":142776,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083a559f-13fd-4887-966e-071329bbeba1","direction":"outgoing","index":142777,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"8363287c-3d86-4fb5-b43a-7d41facb7267","direction":"outgoing","index":142778,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ca77962-f22c-4c78-a091-ba4706a4badf","direction":"outgoing","index":142779,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab96f973-ca9c-4463-8a23-71000bce51dc","direction":"outgoing","index":142780,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8888fdec-defb-488e-a66a-5f72ee30fc09","direction":"outgoing","index":142781,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6855ee1-782e-47c7-96e5-4fbb30d3d5de","direction":"outgoing","index":142817,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"5391e6d0-8032-4dbd-b06b-002bed62f125","direction":"outgoing","index":142818,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58dcaba7-6f05-4df5-b06b-7efc5778e4cb","direction":"outgoing","index":142819,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52de6d98-c2f1-4520-91d4-4c23b78160e6","direction":"outgoing","index":142820,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"418396cb-bf67-415e-86f7-96fd134dcb3c","direction":"outgoing","index":142821,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a1d55d1-fe25-4dfd-8ca7-4db9b9bd55b9","direction":"outgoing","index":142822,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63b598a3-6852-4ea0-b21c-24507a97257d","direction":"outgoing","index":142827,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"aad5e6ac-a1c0-4a2f-ba6a-5de9b87fdb2c","direction":"outgoing","index":142829,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"2a65687d-c556-400c-81e3-3d62c7a4e995","direction":"outgoing","index":142830,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d70be5a5-daf0-42a0-b0dd-f3020ebbf857","direction":"outgoing","index":142831,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"8f83d094-9235-4b4f-8dbe-b0f83075eb95","direction":"outgoing","index":142832,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"1a7f6149-67c3-4281-a651-a611c298c786","direction":"outgoing","index":142833,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"2399c404-7eff-4ae4-9ba6-fd27e27efb5d","direction":"outgoing","index":142834,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"725d36c8-0dbc-4bff-b4a6-112f70176127","direction":"outgoing","index":142835,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2387874b-c764-4680-b5ed-8a768061cd73","direction":"outgoing","index":142836,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58af7d25-b398-4222-8588-6e0e680aa899","direction":"outgoing","index":142837,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0054e5ef-b1d9-4249-9dcf-5ddec19af092","direction":"outgoing","index":142838,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36fa8689-0e3c-4535-97cc-ed358539d998","direction":"outgoing","index":142839,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"134a0e96-01bf-4419-a7ae-87661b28f0f2","direction":"outgoing","index":142840,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"03b7910a-db92-46d6-bed0-1c92a9361c0a","direction":"outgoing","index":142841,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"c400a2fd-60e5-4dfd-ba83-4bac1174c07b","direction":"outgoing","index":142842,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"de1c0fcd-2828-4611-a29b-241f076f8d5b","direction":"outgoing","index":142843,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0c6f7170-cea9-4935-8649-74a74d9eaf34","direction":"outgoing","index":142844,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"9a261e52-0644-4140-b487-f7490a835024","direction":"outgoing","index":142845,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"d17f9d68-8b52-4922-9dc9-914e43a17afc","direction":"outgoing","index":142846,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a8f2e0e0-008b-462a-9781-f5f50344c0c7","direction":"outgoing","index":142847,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"355d2bba-57b9-4071-af4a-7ba5ef865a01","direction":"outgoing","index":142848,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"feb51d0c-8693-4765-9694-b4a192f2ad51","direction":"outgoing","index":142849,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"34216cab-0337-4128-8baa-f66e404a816b","direction":"outgoing","index":142850,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"b437299a-2349-43b0-9c17-f083273e1524","direction":"outgoing","index":142851,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"8829186d-c81f-4a60-8abc-2e984fd64f16","direction":"outgoing","index":142852,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e51374-0536-4572-935e-ffb965d49277","direction":"outgoing","index":142853,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5031e7a-713a-4ca8-ad5f-b67756843cdb","direction":"outgoing","index":142854,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"910b9110-3d8e-4bac-af3e-245291968dd0","direction":"outgoing","index":142855,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af3e5e5d-ee92-4a59-aa33-c8de29869a77","direction":"outgoing","index":142856,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56d2d961-4b86-4fe1-aca6-394d1325ef98","direction":"outgoing","index":142857,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7321a724-b61f-4425-b03f-98ce7b3158eb","direction":"outgoing","index":142858,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d3cdb25-0553-450d-8f5d-dc3e2c1cd319","direction":"outgoing","index":142859,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb467770-0e11-45e8-b6aa-c3a2e3888ec1","direction":"outgoing","index":142860,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1168261a-65e3-4618-a964-32cd1c589388","direction":"outgoing","index":142861,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"83af2b56-11eb-4166-909f-b8a5e38bb488","direction":"outgoing","index":142862,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e61cf2-b007-4a36-ba0f-058d18dbf5ee","direction":"outgoing","index":142863,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac70b927-f74c-42e6-9976-6fe9d5abdb87","direction":"outgoing","index":142864,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"01cb27a0-0f96-4a36-a9e5-6556dd89d119","direction":"outgoing","index":142865,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"57a73cf7-afe9-4e5e-b6ad-8714fb81b14f","direction":"outgoing","index":142866,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"5507c56e-1bbd-46ba-b745-51841d1346ef","direction":"outgoing","index":142867,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"cdc4e252-eddf-4986-a516-d7f703d5954a","direction":"outgoing","index":142868,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"718e59ba-68f2-4282-a46e-212d9ccfa415","direction":"outgoing","index":142869,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"06ee4a1c-edaa-4b70-bf17-2961bbe9f2e0","direction":"outgoing","index":142870,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"0c1eac7b-4371-46a2-8cb0-4aca93882247","direction":"outgoing","index":142871,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"201d3b72-5d89-4f8d-9b6a-b7b6817af5cf","direction":"outgoing","index":142872,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4989779e-d416-4a1e-8643-37082af67b8d","direction":"outgoing","index":142873,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"900c2893-8729-453b-8f70-3bea92512421","direction":"outgoing","index":142874,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"ef4c0d66-fd28-4f3f-89fb-55d3e8b98282","direction":"outgoing","index":142875,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"30fd5fa9-dcb3-47d0-b978-50b1b8dcf838","direction":"outgoing","index":142876,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"05e3abb5-427c-4848-9cea-d02ef520b222","direction":"outgoing","index":142877,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"0252719c-3a56-4af4-a77b-6799508a785b","direction":"outgoing","index":142878,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"a08af27c-ef03-4432-be2b-54e765f1b389","direction":"outgoing","index":142879,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"4ed78294-c5e2-43a8-8791-81849dde7edd","direction":"outgoing","index":142880,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"33b9e429-7433-4fe4-85b0-995755404c25","direction":"outgoing","index":142881,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"acfc91e9-fb9f-4d1f-946e-f684ec9fa4d4","direction":"outgoing","index":142882,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7796e6b9-4103-408b-a93a-45756565691c","direction":"outgoing","index":142883,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"3798cc83-f610-4e4d-9062-b125328ad246","direction":"outgoing","index":143001,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ddf6d503-8548-421b-acc7-19f9c25e7dfc","direction":"outgoing","index":143002,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dffbf639-90da-4fde-ae92-1757f06b6ba7","direction":"outgoing","index":143003,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f90b213b-fc55-4318-8528-1661e28e1025","direction":"outgoing","index":143004,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"21d13d8b-a545-45b1-8272-1ecc44118ee6","direction":"outgoing","index":143005,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"916d5932-ef05-4d13-b047-d313ce2d999e","direction":"outgoing","index":143006,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3b4a2c-dbf8-47f4-8822-f995f6865719","direction":"outgoing","index":143042,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2c8fd07-7e93-4209-914c-1a4af74c589c","direction":"outgoing","index":143043,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6798f4e6-74f6-489d-85a6-e9dd116db298","direction":"outgoing","index":143044,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de2265d-43a2-41f0-84b1-4c7d4120d867","direction":"outgoing","index":143045,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"8ff5ff1d-cce3-43c6-a80b-6bdd7c05603c","direction":"outgoing","index":143046,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c4580-20f7-4626-966b-430247aada28","direction":"outgoing","index":143047,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de91b9da-54a0-4e28-b784-b26c2cdb5065","direction":"outgoing","index":143083,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"583cfb1d-a97a-41a6-a451-4099aee6ef94","direction":"outgoing","index":143084,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f99d3fb8-c1de-4cf0-abeb-de4742cce31f","direction":"outgoing","index":143085,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a707e19-cee0-4615-a4e2-ff66c0a86310","direction":"outgoing","index":143086,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a3faa2a0-19c7-4682-a46d-613ef8145356","direction":"outgoing","index":143087,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90016b9a-87c7-42e8-8ab4-ea40a6c647c2","direction":"outgoing","index":143088,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c7da6f5-2d26-498f-8051-bb6b6f33fd0c","direction":"outgoing","index":143117,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"e57da4e9-7854-4ed0-8179-66ec71142afa","direction":"outgoing","index":143118,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"6dd37b64-1140-4a55-bf7a-ad777e87fb07","direction":"outgoing","index":143206,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c190d648-ee69-4691-93a3-3fa3414c23aa","direction":"outgoing","index":143207,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c1a9616-bc64-4b63-a367-56c8cd07b35d","direction":"outgoing","index":143208,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5ed12c2-c3e1-4123-8208-d7bc3578b446","direction":"outgoing","index":143209,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320c0779-ee08-4b19-ae7e-7fa6b324822e","direction":"outgoing","index":143210,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5a6da2-f9d9-453b-9840-8e5f0a83c390","direction":"outgoing","index":143211,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"f65212b1-9d46-4a91-9ce2-f36412e9b9d8","direction":"outgoing","index":143212,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9b8ce1-196a-463b-839a-98d84285fe6d","direction":"outgoing","index":143213,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d732ae7-bdd0-4b94-8613-a8cfea0ebb95","direction":"outgoing","index":143214,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b1155e4-bccc-47d4-b75e-4a24efd4cb3c","direction":"outgoing","index":143215,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a94b2656-081e-46e5-b502-6a9ce292ae7e","direction":"outgoing","index":143216,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"d7afa24d-07b3-4875-ba8b-6ffeda0e92e4","direction":"outgoing","index":143217,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2f0516c-b6e2-4139-b7a7-1f8f83799004","direction":"outgoing","index":143218,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8652faf5-2c24-4144-ab0f-ad033b0c7583","direction":"outgoing","index":143219,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7334b6e-9bbf-4604-a9a3-736b254667c9","direction":"outgoing","index":143220,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd42ee37-49d7-4537-861c-46826f05ed99","direction":"outgoing","index":143221,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c528a6c-3a27-42c4-9514-1b4c2caada2c","direction":"outgoing","index":143222,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c514a5fc-9ae7-4804-b2f8-f26f6bb5dcf7","direction":"outgoing","index":143223,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a475fa0-55d2-449e-ada9-accd13a250f5","direction":"outgoing","index":143224,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac02c797-7553-47d0-b9b3-b643557249df","direction":"outgoing","index":143225,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e211849-5ec8-4c60-a19c-0f39ce7648ae","direction":"outgoing","index":143281,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"269dce6b-1d91-4637-8767-ae0407ccbe3a","direction":"outgoing","index":143282,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"678a65a9-62f4-4fd5-b90e-9e9f4d86d7fd","direction":"outgoing","index":143283,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004a733d-cb78-4261-a064-257d692a149b","direction":"outgoing","index":143284,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4935508-bebb-4e82-b8f1-de969ed477fc","direction":"outgoing","index":143285,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76bc44b1-8465-487f-a01f-516e7841e6cb","direction":"outgoing","index":143286,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ddd31f41-8374-414f-ab98-bbcc431f0b73","direction":"outgoing","index":143287,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0890eadd-c3cf-4d09-be83-b4b4514fc495","direction":"outgoing","index":143288,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f236cb0-43e1-4ccd-b8d1-ed4b8c4bd311","direction":"outgoing","index":143289,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a511c836-7e8f-4b40-bd6f-168a85f9dae5","direction":"outgoing","index":143290,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfaa1c67-3557-49d4-a2d7-036442afceec","direction":"outgoing","index":143316,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"01fbca51-1882-4019-b251-c1affb902347","direction":"outgoing","index":143317,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"73bbc96a-c71d-44d1-b539-9703d406993c","direction":"outgoing","index":143351,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2ed9116f-6a36-40d5-90cb-d9458f148329","direction":"outgoing","index":143352,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59e23804-c497-4e1b-9961-8846a3ccd39c","direction":"outgoing","index":143353,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fca5e202-30fe-4154-bc73-bfb409af69b8","direction":"outgoing","index":143354,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"da0c830e-1992-4755-81a8-859f54210011","direction":"outgoing","index":143355,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8293c640-908a-4488-aba7-da08ccd90992","direction":"outgoing","index":143356,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d62cca06-4753-4897-b7e9-7f78f1bfb8cb","direction":"outgoing","index":143392,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c66a764b-f53c-47bc-bb85-fb8c69dfdd96","direction":"outgoing","index":143393,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3278760d-05a2-48d9-8059-790d201dc634","direction":"outgoing","index":143394,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c3e3186-7e80-44e7-80bf-4fd10fdcaef1","direction":"outgoing","index":143395,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"381d4e38-e7b7-44ab-a5b4-acfb20a6ce7e","direction":"outgoing","index":143396,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094b12d7-4044-40f1-9e9e-35b6acec747f","direction":"outgoing","index":143397,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2888c624-8708-45c8-8be6-f35f4beaefa0","direction":"outgoing","index":143402,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"e0d68b87-c737-441c-bc0f-3c29b4170cbf","direction":"outgoing","index":143404,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"423f521c-aae1-489b-858f-d194a7b415b3","direction":"outgoing","index":143405,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"dd10709c-312a-472c-bd03-4553f0134a4e","direction":"outgoing","index":143406,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"d9e9557b-eef7-46c8-8a73-2796b4fc61a5","direction":"outgoing","index":143407,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"b6292381-c82e-496c-b5d6-5f8fa8dd1e57","direction":"outgoing","index":143476,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c8dfe4a0-4ab4-46e8-a54b-9a7a77feb089","direction":"outgoing","index":143477,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6dc0135-7cf5-4e32-910d-93a227d97a26","direction":"outgoing","index":143478,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a330fc79-ada6-4dee-8860-5b18705806a3","direction":"outgoing","index":143479,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ec12350e-acc1-492a-848c-884572d2bb2e","direction":"outgoing","index":143480,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3867935f-5daa-4e85-b81d-510d2e873b4f","direction":"outgoing","index":143481,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecf9ddbb-d5dd-4ef1-9bb9-11963593e6b4","direction":"outgoing","index":143486,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"1ad5700c-23fc-4dbc-940b-44fb2d724bb6","direction":"outgoing","index":143488,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"01284cd7-1da7-44d8-a25c-dd5a1804309e","direction":"outgoing","index":143489,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"02fe14e1-c137-47e6-a045-698acf4b166c","direction":"outgoing","index":143490,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"269abb6b-c41e-479a-a79e-6f54b0fc761d","direction":"outgoing","index":143491,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"ae73eef4-61df-4f41-b6d3-3660d0482d86","direction":"outgoing","index":143492,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"e0a6e5f0-2a1f-429a-b470-db5da84fa6b2","direction":"outgoing","index":143493,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"a048e08d-239c-4410-948a-16dfe29da2ff","direction":"outgoing","index":143494,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"6384b613-c355-4e84-828c-0488b1479d5e","direction":"outgoing","index":143495,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b39dfaca-99e4-48e1-b0a6-dac9b5d1682b","direction":"outgoing","index":143496,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"557209dc-a060-4d44-a251-2cdab69a431c","direction":"outgoing","index":143497,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b40761a6-4490-401a-b02b-db11f5b5432c","direction":"outgoing","index":143498,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"7090bab0-b328-4fea-81b6-5541174f8dca","direction":"outgoing","index":143499,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"3847f544-9e1d-45df-b6dc-a92eaca4ff20","direction":"outgoing","index":143500,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"e4a892d2-4739-45c2-a62a-45a1d35c7db3","direction":"outgoing","index":143501,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d04b27ab-f599-4140-82cb-f73b3769caa3","direction":"outgoing","index":143502,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86583a4-71d4-436b-aa5b-481eab9c3423","direction":"outgoing","index":143503,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dc81c82-0b09-4e52-9c8d-17d087f29bb9","direction":"outgoing","index":143504,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"1265ff30-8a16-4d0a-ba92-0e4a82c11cb6","direction":"outgoing","index":143505,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"1e5155aa-2678-4ae8-89f6-2f029d5a934e","direction":"outgoing","index":143506,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"8b353425-c4bb-47fd-9022-f8dc6a98d977","direction":"outgoing","index":143507,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6132079b-ffd8-432e-a768-0da095434ed0","direction":"outgoing","index":143508,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"5a8609a9-1ae0-4fe7-a375-afefb0cb4a06","direction":"outgoing","index":143509,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"956574b1-ef3f-4d7e-8583-4749bdc89fce","direction":"outgoing","index":143510,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8c3ec7aa-4688-4ee4-8cec-f0bc55d33f88","direction":"outgoing","index":143511,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"48b1797d-1521-4441-abcf-2b9e45078bd0","direction":"outgoing","index":143588,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4326098-4601-485d-94bd-b8e2e3698731","direction":"outgoing","index":143589,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737b3999-a752-4c98-ae57-739b41fadce8","direction":"outgoing","index":143590,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f2e4c43-346e-4d50-b697-0a587e2fca78","direction":"outgoing","index":143591,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"781f6a73-0b6b-4aa8-9ce2-9c55f7d17a44","direction":"outgoing","index":143592,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7665367d-3d30-4bcd-84bb-c1c3f6597daa","direction":"outgoing","index":143593,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bc42d96-48d4-4298-b26e-2a53a031ee27","direction":"outgoing","index":143629,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e565cf2f-1921-4ea4-87db-a37d8f7e99e1","direction":"outgoing","index":143630,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95426d4a-9020-44ae-9647-da7444aef23f","direction":"outgoing","index":143631,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b5b18c5-3d89-4ef9-a194-2cb7284ac2ad","direction":"outgoing","index":143632,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a82c0a3-5819-4f41-bd85-1b5bd33b99ff","direction":"outgoing","index":143633,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53e4455d-c273-4e3b-ab58-7af46cd751a6","direction":"outgoing","index":143634,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"939eec64-091f-46f5-b9a3-5a8fb826911a","direction":"outgoing","index":143670,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"88bc25d0-bf6a-475e-855b-8118b4810953","direction":"outgoing","index":143671,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d2ffc94-54e3-4504-8c76-20d7658e0b90","direction":"outgoing","index":143672,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceefd20-e371-4ba8-b1b5-033fadde57c7","direction":"outgoing","index":143673,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a561b33-ace9-4a12-bd7b-1fa681c20b70","direction":"outgoing","index":143674,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa537135-26a8-4bfe-a1da-3034d9dbff4f","direction":"outgoing","index":143675,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91fc9515-81c4-4d72-9da7-4b07dd5abaa7","direction":"outgoing","index":144783,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"8a19b024-690d-4b6e-9aea-3eeffd2809e5","direction":"outgoing","index":144784,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"a0dbe360-824d-41d3-97c5-5b350e9f5607","direction":"outgoing","index":144785,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"7b40fbfc-199c-46c5-addd-21534dd5a052","direction":"outgoing","index":144786,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.271-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"2c45c818-3ebc-4104-9937-290a515d9496","direction":"outgoing","index":144787,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"3668faa9-f635-4cb0-a2aa-2294e9ba32a9","direction":"outgoing","index":144788,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"1fa447f2-e98c-472f-b41d-da632ff0f2ea","direction":"outgoing","index":144789,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"7b583482-d4d6-40b3-b7c3-2e087d429bb3","direction":"outgoing","index":144790,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.315-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"69592692-453c-49e7-b2d4-aafaad3a44e5","direction":"outgoing","index":144791,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"83d494fa-5b89-41cd-90c3-7fea5619a6e1","direction":"outgoing","index":144792,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"170c8f98-13d7-436c-bca5-c9bdf106f422","direction":"outgoing","index":144793,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"97f37217-e68e-4a4d-9d89-b72ec75e4416","direction":"outgoing","index":144794,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.358-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"fb48ff58-edfa-4daa-b370-61dc85ee106a","direction":"outgoing","index":144795,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f29dbc8a-a495-413e-81c5-f98da258beb1","direction":"outgoing","index":144796,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.382-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab9d46be-3242-4f1c-97f8-3ad30609a337","direction":"outgoing","index":144797,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"d1e5372a-8a1e-4259-a6c9-2001852fbf63","direction":"outgoing","index":144798,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63877c20-6400-4c43-8418-50d047fc1e3f","direction":"outgoing","index":144799,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.415-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fd1b3539-ce9c-4d1a-aeb6-3209566316c9","direction":"outgoing","index":144800,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"dba608f4-9747-465c-992a-4e291d03ce77","direction":"outgoing","index":144801,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"a623d957-8eb1-4392-a90c-9ab3cbd53c1c","direction":"outgoing","index":144802,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"31fea0cb-c18a-487f-ae29-8ac42559c474","direction":"outgoing","index":144803,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"0727a879-6c69-46c9-a5af-84c07d7e37be","direction":"outgoing","index":144804,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.471-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"57867419-aa59-445e-9092-ff9366b8d129","direction":"outgoing","index":144805,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"217339d6-38fc-4d02-9797-3c24f8a0fea3","direction":"outgoing","index":144806,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c4d19c52-6220-423b-9948-1017d0312977","direction":"outgoing","index":144807,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"cbb108a8-dad8-476e-917b-74977999ced8","direction":"outgoing","index":144808,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"0b59ad06-1f51-4682-a39d-4a81e7c4033d","direction":"outgoing","index":144809,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"0b3ddd4d-e534-4f93-b2cf-46b04b97103b","direction":"outgoing","index":144810,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.529-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"c94e2868-9fe5-496a-bbf3-5bf16165068d","direction":"outgoing","index":144811,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"ac961f70-62b0-41d7-ad11-6dadb9d3fa9b","direction":"outgoing","index":144812,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.550-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"dd7ea7b2-d105-4933-879d-4f84f4da47bf","direction":"outgoing","index":144813,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"f360b5a3-3245-4281-ad66-44115d6b53ae","direction":"outgoing","index":144814,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.570-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a70c9f3b-9005-4b4e-aeb8-a517dc2a1e50","direction":"outgoing","index":144815,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"1aa50c86-cb6f-4d70-9f12-3e387949f0b6","direction":"outgoing","index":144816,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"ba782261-f901-407c-861c-6cbb018f786c","direction":"outgoing","index":144817,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"9d5c9ca4-7c0d-4de8-9349-1338d097f509","direction":"outgoing","index":144818,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"dbb1045d-2b75-4f5f-913c-38ec12b602df","direction":"outgoing","index":144819,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"b1669062-82c3-4426-bb66-3143812f6223","direction":"outgoing","index":144820,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"940bc283-5af1-459f-bbe5-79d0f35cab30","direction":"outgoing","index":144821,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2cc94987-e954-4462-a2e9-1552b6b83793","direction":"outgoing","index":144822,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b176e3d5-0bbf-4fc6-b8a7-3dd1b28507ce","direction":"outgoing","index":144823,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"c95b3354-f443-46f9-bf37-a0d66c73f167","direction":"outgoing","index":144824,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"8a72e4c4-ca46-477f-8fec-155747d2abbd","direction":"outgoing","index":144825,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"d4d891c8-9aa5-459d-9eca-74ad6a376928","direction":"outgoing","index":144826,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"ba3a50d5-dd34-4698-80ec-fce5a5b55e50","direction":"outgoing","index":144827,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.712-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"3240784a-25a0-4902-81d2-f73907bc0c08","direction":"outgoing","index":144828,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.723-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"9df7f5bd-556e-4724-9fa5-9030ee756d59","direction":"outgoing","index":144829,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.732-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"8394382a-898f-4463-806c-86d81e2eb38b","direction":"outgoing","index":144830,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"d2bb9abc-9341-42e6-92ac-9661797b00a5","direction":"outgoing","index":144831,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.751-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"b1555643-043a-4ce7-9199-309ab3948ba9","direction":"outgoing","index":144832,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"a05a629f-5a86-4cc5-8225-9a37b51279a6","direction":"outgoing","index":144833,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"8f4986a3-102c-4417-9f5b-f1cf1d01b5c3","direction":"outgoing","index":144834,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"70eab157-12f0-4b5c-b110-f6441b701d29","direction":"outgoing","index":144835,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8de40fe2-88ef-4fea-887b-f1758d68feaa","direction":"outgoing","index":144836,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.807-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"4f77a517-2245-4de4-a9d5-959a75c96f52","direction":"outgoing","index":144837,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"b7c2c372-5630-42c2-810a-907a90c3346b","direction":"outgoing","index":144838,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.838-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"6d61a6f3-46d8-4c28-9e16-7582c9d06b38","direction":"outgoing","index":144839,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"ed7ed94f-0f0a-4f94-bfee-db5f2d78d17d","direction":"outgoing","index":144840,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"937a4969-2313-40c2-8629-a5f585e73945","direction":"outgoing","index":144841,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.870-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"3bab4968-e392-4508-9f19-e6541eaaacfa","direction":"outgoing","index":144842,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"e2e1ce05-f295-4df5-80e2-e12e119f0357","direction":"outgoing","index":144843,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ae75cd63-d47f-44b8-b34b-82153011c522","direction":"outgoing","index":144844,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"842d2ccb-8b2e-4580-a55b-30454befe709","direction":"outgoing","index":144845,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1bff1198-222d-426d-a837-5b6b0ea1145e","direction":"outgoing","index":144846,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"d2d434b4-d706-4be7-9af8-17deaf86727d","direction":"outgoing","index":144847,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"427a880c-90c5-4591-ab29-31b09c5c718d","direction":"outgoing","index":144848,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.947-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3296fd92-793f-4d4b-9e70-0acfef6f239f","direction":"outgoing","index":144849,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"87e86bd4-85f5-4a25-a4ed-3bdb720ed0af","direction":"outgoing","index":144850,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4f55d03d-03ec-47f2-85b1-3a115d820fc1","direction":"outgoing","index":144851,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.981-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05326160-0104-4207-876d-be390b771109","direction":"outgoing","index":144852,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:47.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"783b7053-a684-4aed-9fac-f868ddf03f97","direction":"outgoing","index":144853,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.002-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92957344-c2ca-4b14-bc69-d256720ef6dc","direction":"outgoing","index":144854,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.013-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1edec08e-ab1c-476c-8faa-c1cc2e23c524","direction":"outgoing","index":144855,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"b82ab4e1-fb8d-46be-8249-3ed0f904f21e","direction":"outgoing","index":144856,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"99fb99a6-c82d-4352-8640-a0aabd2ae135","direction":"outgoing","index":144857,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ec099aba-66fc-49c7-9158-85c9787712a9","direction":"outgoing","index":144858,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ef1e41e0-4087-4344-8a60-6b34d6bfb3d1","direction":"outgoing","index":144859,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2964b43f-55b9-41f8-b890-6234e513c794","direction":"outgoing","index":144860,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f88a6dd-9310-43f8-ab6a-5e97ef69186e","direction":"outgoing","index":144861,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"d6e65e37-e821-47c5-b57e-1b501ddd3a49","direction":"outgoing","index":144862,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.100-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"1c6b5b97-f9cf-4932-b755-c371b4767135","direction":"outgoing","index":144863,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"320572e9-3066-41f5-a213-4b1c9113b1c5","direction":"outgoing","index":144864,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"b434ff05-6d66-4173-85f1-889c873cc525","direction":"outgoing","index":144865,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"c729bc61-8a17-4e0c-ab5e-41f5581512e8","direction":"outgoing","index":144866,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"27d7b3a7-ef84-407a-a573-4c8b3a932f62","direction":"outgoing","index":144867,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"834fd93c-a1e3-46f2-9225-50fcdaa29d4f","direction":"outgoing","index":144868,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"9829baec-bc57-4364-96b9-157ae5c2b052","direction":"outgoing","index":144869,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"263cc15e-f5df-45bd-9293-8d69ae1ba4ee","direction":"outgoing","index":144870,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.188-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"bd2f94a2-2d8f-438f-b119-a4b6ec785eb8","direction":"outgoing","index":144871,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5147d56-0a84-4c45-a8d2-a22c4ed3bc9b","direction":"outgoing","index":144872,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c82dda7-09fa-4e8c-bdfd-2c6b60c2bea1","direction":"outgoing","index":144873,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"bf2fb81e-8f69-4c39-9184-c577812175ba","direction":"outgoing","index":144874,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91eb066d-ee74-4c99-af5a-a0be6f39e77a","direction":"outgoing","index":144875,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.243-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d095f886-0be7-478b-b6be-85e2d70d8f06","direction":"outgoing","index":144876,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"6ee2ccb9-605b-4dc4-a133-1bc82e2963f5","direction":"outgoing","index":144877,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8fd71d38-57ad-4bb6-8286-6324710e722e","direction":"outgoing","index":144878,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f02e558a-83ba-4c74-98c7-95eedbaa0479","direction":"outgoing","index":144879,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"d75216a8-bbba-49be-96a4-6725bed15fd7","direction":"outgoing","index":144880,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22c5a92e-38c7-4b69-ad76-51669accab10","direction":"outgoing","index":144881,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e06e3f2-df6b-4567-b175-7eed185555f2","direction":"outgoing","index":144882,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0bd40247-27fb-4cc4-8e06-c5c83e2fc044","direction":"outgoing","index":144883,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"aee3c3a7-99fe-4cc6-b87f-91ddd419bf7b","direction":"outgoing","index":144884,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d24bf5a7-4329-412d-a68d-ebf650c96162","direction":"outgoing","index":144885,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"f0dd0f67-d6b2-4793-b4cf-05ec7540b4dc","direction":"outgoing","index":144886,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"f9114fe7-9673-406c-93dc-02a73b4f4a9e","direction":"outgoing","index":144887,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e13ea467-9ff2-40d3-b94d-c8b3511c55ea","direction":"outgoing","index":144888,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c394f67-f99e-4953-b7e9-10b826489439","direction":"outgoing","index":144889,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eafd375c-e87b-41be-b282-cef36a005aa8","direction":"outgoing","index":144890,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"6c7d9d07-643d-4fdd-af29-fb5d7b0b9bab","direction":"outgoing","index":144891,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3913e1b-119a-47a3-8491-17cf59bd948f","direction":"outgoing","index":144892,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aeaab81d-d4bb-44ec-96e9-5d9ebea3aca5","direction":"outgoing","index":144893,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"43764c20-025b-4763-888a-eca7142890c2","direction":"outgoing","index":144894,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"0a917c3c-31c4-4efb-ae36-0d187e526e0b","direction":"outgoing","index":144895,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"911a1289-6430-4c7d-aa91-194194625ca1","direction":"outgoing","index":144896,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"e1267931-0f04-42f2-ac5d-d8362bfa74bb","direction":"outgoing","index":144897,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.500-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"8e6d9ce1-5e80-4771-b026-b280f1e2966e","direction":"outgoing","index":144898,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"ea285351-7caa-482a-8193-bb1f6d5783ed","direction":"outgoing","index":144899,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"d3267b9f-3059-4ead-ab23-7628fce68104","direction":"outgoing","index":144900,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.531-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"fe97ccb7-ab7f-4f88-bfb1-ddbb22e90407","direction":"outgoing","index":144901,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b01a6214-0152-4705-9f5f-66afbb516d45","direction":"outgoing","index":144902,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"d2af076a-8526-4197-8553-52774b7d8c3b","direction":"outgoing","index":144903,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"ce9bad27-554d-499c-99c6-e1a5731184ed","direction":"outgoing","index":144904,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"a0bed531-741a-43d4-990f-85a1774f7582","direction":"outgoing","index":144905,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"6996f0d0-df73-4d5b-a161-4cda21a3948d","direction":"outgoing","index":144906,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"1a364f2a-0a3f-4b8d-91ff-d235129c9cb7","direction":"outgoing","index":144907,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"49307f88-5688-4d62-83e8-8964a6ccbdb0","direction":"outgoing","index":144908,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.623-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"93ee0539-a0ed-43e8-95b1-aee13a109152","direction":"outgoing","index":144909,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f3d8b66-57e3-4625-8b91-b70f26452623","direction":"outgoing","index":144910,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"35a66f96-df50-4ce9-a4c9-f2c17836963d","direction":"outgoing","index":144911,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"4cd2b574-a636-4afb-bf37-d86846ef7835","direction":"outgoing","index":144912,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"fb32e486-d9c6-4bfb-b6b7-2b7bd5b88305","direction":"outgoing","index":144913,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"a52e000f-a8e0-4dc3-9393-14598c8bbe4f","direction":"outgoing","index":144914,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.695-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"b356531a-860d-4a05-b64b-942eae6d2573","direction":"outgoing","index":144915,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"68e17f4c-1427-44d5-a005-7c77e2838c01","direction":"outgoing","index":144916,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"c2ddd29b-5ae4-43f9-a5ac-9cc57233fbf5","direction":"outgoing","index":144917,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"9d8fb18d-01f0-402f-b83e-9ec1fcfb53a6","direction":"outgoing","index":144918,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"8074e9aa-b400-48d4-a6de-6606180ef2e9","direction":"outgoing","index":144919,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11d17087-2e13-4e16-b0db-b5b5889bb0f1","direction":"outgoing","index":144920,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6141dab3-5c40-4a16-98ed-3f2f3c58e836","direction":"outgoing","index":144921,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.774-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"3b776fa9-8682-4061-8efa-41af03937e2d","direction":"outgoing","index":144922,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.787-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87cd3298-ddc6-442e-a337-8a0ee0715704","direction":"outgoing","index":144923,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82d7c61e-2271-4fe8-bcd5-a9d7d35711f9","direction":"outgoing","index":144924,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.810-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a9ba1456-5f0b-4d91-af41-28f221154aa0","direction":"outgoing","index":144925,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3eeb58ac-ba05-47c8-8b6b-70297e04ea1b","direction":"outgoing","index":144926,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.832-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"00facc64-b117-4d15-94d6-60e7a50fa2ab","direction":"outgoing","index":144927,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"e66a7096-4430-49ef-907e-dca7c5e3421c","direction":"outgoing","index":144928,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bf17cf49-0bec-4be4-bbaa-0ff69586a317","direction":"outgoing","index":144929,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.866-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"14417069-7788-461f-b32e-d62f845950e7","direction":"outgoing","index":144930,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.877-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"1678bcd6-8bbc-4558-a095-a1af429cf4fa","direction":"outgoing","index":144931,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.889-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"057ab083-9231-4ac7-9544-8f310b12f381","direction":"outgoing","index":144932,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.898-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1450e06-8f4c-4a8c-9efd-86e602d979b8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c2f8ce8d-ad03-455b-904d-000fb7866e7e","direction":"outgoing","index":144933,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"348185c0-fcc4-4c4b-b836-2a5f73af8ac6","direction":"outgoing","index":144934,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff6729d-e55f-429b-9713-fb57effa0526","direction":"outgoing","index":144935,"result_id":"293d414b-6fe9-4305-ae42-83590c88927e","status":200,"timestamp":"2026-05-22T21:17:48.930-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=956e980f-8dfc-4612-a025-2559ac7e336f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_patient_category_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:17:47.075-04:00"},{"id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","created_at":"2026-05-22T21:18:08.597-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"08d97c66-9040-4569-995d-351656586647","direction":"outgoing","index":142597,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.011-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"769c8d23-03e9-42fd-8b16-6b51858dfe91","direction":"outgoing","index":142598,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.033-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fd376b98-30f8-48a9-84ac-1d2ed1efde92","direction":"outgoing","index":142599,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2b7c79f4-262d-45cc-b51f-ddd98613c450","direction":"outgoing","index":142600,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"12bf69d3-de68-4131-9473-0744afcfbe0c","direction":"outgoing","index":142601,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7cf71ec6-5b8f-43cd-9ee5-b0e14bfe3d19","direction":"outgoing","index":142602,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"6cf0274e-6a72-4477-b7bc-74560b6404b7","direction":"outgoing","index":142603,"result_id":"36fe710d-617c-419b-9292-07113ffd9fe0","status":200,"timestamp":"2026-05-22T21:08:22.112-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8b6e5305-2a6c-46a9-a472-a9c5b69d0c8b","direction":"outgoing","index":142629,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c5a7d2b6-8918-4165-82dc-cd3b201a3479","direction":"outgoing","index":142630,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"738a0bb4-249f-4c19-a728-da86d02fb4c3","direction":"outgoing","index":142631,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"200e4200-a602-4e97-ade2-2675dc5ad7d1","direction":"outgoing","index":142632,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"13d28453-cea0-47ae-981d-d5eee7f5a70e","direction":"outgoing","index":142633,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"5d757260-c02c-45ca-96d0-a36bc30a40fa","direction":"outgoing","index":142634,"result_id":"90fe5e8f-7230-47cd-b091-f4714523ea34","status":200,"timestamp":"2026-05-22T21:08:30.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"f05c0503-5d87-46a3-8563-91e1ce9afb26","direction":"outgoing","index":142684,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"567eef7a-f021-48ad-a55a-51e2c4deca6b","direction":"outgoing","index":142685,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"0bb6c5c0-6e07-40d1-8309-21557c1f6eb0","direction":"outgoing","index":142686,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"83930b9f-4c1d-49ec-8a02-a0ee132ebaa8","direction":"outgoing","index":142687,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ca31510-f0eb-47b4-8329-b4c83f019c7f","direction":"outgoing","index":142688,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.613-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"39e89542-fe75-4dff-9e34-a8b73a775dd4","direction":"outgoing","index":142689,"result_id":"c5d813c5-2d13-42f2-ba0a-51884a5039b5","status":200,"timestamp":"2026-05-22T21:08:43.626-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"59c1a40e-1a97-403b-bc06-b7a4d41cadbd","direction":"outgoing","index":142739,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"3e60a8bb-6783-44ee-890f-530356fbf269","direction":"outgoing","index":142740,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"256ce83b-862b-43b3-a0b6-04d1c55fb160","direction":"outgoing","index":142741,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1d27ad8c-4f90-4091-892b-293bd31cf01e","direction":"outgoing","index":142742,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"4287ce58-6e14-4eb0-a674-ec5a2517a64f","direction":"outgoing","index":142743,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cee6f682-0365-4d52-8860-00cdbf17fbf9","direction":"outgoing","index":142744,"result_id":"9758d9d1-aee0-46df-8050-7e8471ab0e96","status":200,"timestamp":"2026-05-22T21:08:54.257-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"17c2e171-ae65-4391-8933-4c6d382d61f0","direction":"outgoing","index":142792,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.298-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"28c4153f-a18f-4851-81c9-2d49f955f427","direction":"outgoing","index":142793,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ae84d263-4024-4ba3-8b89-fd735797a452","direction":"outgoing","index":142794,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"df06888d-e2db-4f57-8571-c06f336d57aa","direction":"outgoing","index":142795,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"286461d1-f331-445c-bbc9-df33af8e9c78","direction":"outgoing","index":142796,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6a006d69-9995-433a-b7bc-7bd8d84efdc2","direction":"outgoing","index":142797,"result_id":"e8e6d52b-91f7-4e16-80c1-5170d34ca1f2","status":200,"timestamp":"2026-05-22T21:09:10.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e46070f2-60b7-47a0-afcd-b96030a78c18","direction":"outgoing","index":142884,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"ec6ff809-d943-444a-91a2-0abc1b0b5439","direction":"outgoing","index":142885,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"988872cb-c573-440e-93bf-70aaefb48bff","direction":"outgoing","index":142886,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"eafafff7-5f6e-41df-ae55-62647b670550","direction":"outgoing","index":142887,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"1287ee7c-c61d-4949-a07f-cef670c63e02","direction":"outgoing","index":142888,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4354c6d7-76a6-4dc2-aad9-1831ac9e6505","direction":"outgoing","index":142889,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"f99975dd-b28b-4ab0-bb22-4798cc100355","direction":"outgoing","index":142890,"result_id":"3af411cb-7f89-489a-87cf-5be2bf2860c3","status":200,"timestamp":"2026-05-22T21:09:31.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"0b7946f5-5677-4b88-b3e5-8412ff5e319e","direction":"outgoing","index":142976,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"96471294-3175-42ff-958c-4245c466a1c5","direction":"outgoing","index":142977,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.833-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7c6e62eb-6ee0-48e9-a8e3-e84d835e7822","direction":"outgoing","index":142978,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abab7fd1-6239-40fa-9071-2a6f9b2f1e87","direction":"outgoing","index":142979,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"31be0fe5-65e2-4a1a-8f80-b3bf782b8ed0","direction":"outgoing","index":142980,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d672fcec-11ef-4fb9-a53b-418bd3e84ac9","direction":"outgoing","index":142981,"result_id":"8ef67fde-7075-4bf9-bf24-457491208a55","status":200,"timestamp":"2026-05-22T21:10:14.894-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3815c509-51c6-40c1-ae86-0ade0d17d716","direction":"outgoing","index":143017,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"55c7ffe6-7296-444e-a0ad-be1dca841db6","direction":"outgoing","index":143018,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"034471b7-f6dd-4f4b-93a5-0d6c74bf7584","direction":"outgoing","index":143019,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.214-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f961a81c-2635-4c5e-ad85-4399394f22fe","direction":"outgoing","index":143020,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3402bf82-ebf2-411e-aec0-3311b3024ef7","direction":"outgoing","index":143021,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4b824ddf-7176-4f09-ac5f-8dab0e835d7b","direction":"outgoing","index":143022,"result_id":"149734e8-b25d-4ef3-9ee6-0e25336c7772","status":200,"timestamp":"2026-05-22T21:10:25.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1d3371a6-0f88-439e-aba9-5dc433fdea7d","direction":"outgoing","index":143058,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3a6edbc0-2bc7-41b6-b9e2-e0ef9082a225","direction":"outgoing","index":143059,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c164c941-2fe8-48f1-b44d-1da6d987a5e0","direction":"outgoing","index":143060,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6bd67de7-ae16-45b1-b55f-de41aaa94324","direction":"outgoing","index":143061,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"75d1f8c9-055c-4766-802d-4a081aef2dd2","direction":"outgoing","index":143062,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7d98ac76-76db-41dd-9ba5-18a21e202887","direction":"outgoing","index":143063,"result_id":"8a3a5da7-2bb5-41f2-b631-4061487774ff","status":200,"timestamp":"2026-05-22T21:10:33.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fbca43d9-72bc-4d9a-b1ba-d674601ce61f","direction":"outgoing","index":143102,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3db9ef6a-0e9c-4f37-bd99-b5a93f8d2259","direction":"outgoing","index":143103,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"0b3253d3-bc15-4ccc-96a5-afb835113672","direction":"outgoing","index":143104,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.034-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"2c32861a-035c-4e45-abe4-ff84ae41a585","direction":"outgoing","index":143105,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"c27ea600-f051-44c5-b713-d5931b49214c","direction":"outgoing","index":143106,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"7ff6bdcc-14eb-41ca-868e-20bb640f5f83","direction":"outgoing","index":143107,"result_id":"83be0ba3-7432-4061-888a-b7f2adca32de","status":200,"timestamp":"2026-05-22T21:10:42.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"695349df-2ec8-4652-aad6-d3ecace0b4c7","direction":"outgoing","index":143153,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"bc7b269f-0772-464b-9986-7ac1e95a4315","direction":"outgoing","index":143154,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.474-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"dea7a412-4f26-485f-9869-daa3bf1719dd","direction":"outgoing","index":143155,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.488-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"db807be6-7a4d-4f2f-81bd-7afe059b109a","direction":"outgoing","index":143156,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.504-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c50e56c1-f677-4051-8fed-f9d9362bebe8","direction":"outgoing","index":143157,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=28347692-b301-4b23-ada6-18265cc2a7bb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d127359-bf2a-4a7e-8dff-2ea5570c13ea","direction":"outgoing","index":143158,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.530-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ce431276-7077-44f8-af1a-605feb617028","direction":"outgoing","index":143159,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.543-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbcf40b1-b457-4fd8-9c8b-1ab494e465ba","direction":"outgoing","index":143160,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"880ad55e-61cc-47a8-b254-8acec1e98d26","direction":"outgoing","index":143161,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.569-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a867a8c6-4150-46c9-ae00-2a2339d5aec0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e28457e-5f31-4c0f-bb7f-63f3c676a135","direction":"outgoing","index":143162,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"324205b4-f02b-4234-ac26-6ee1381dee24","direction":"outgoing","index":143163,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b57a32-c4be-4fb5-9cf8-6ff2a47902ff","direction":"outgoing","index":143164,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"3404f7ae-c03d-4bb4-89b7-9e246cf142c9","direction":"outgoing","index":143165,"result_id":"d0ab1a6c-c0a7-439d-a795-17346ff6d22f","status":200,"timestamp":"2026-05-22T21:10:54.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cf79551c-546c-4a2c-aba0-5625272b1b98","direction":"outgoing","index":143248,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"009f1855-29c4-4267-8fa9-2fd09a0771cb","direction":"outgoing","index":143249,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"1b10620d-6905-4a66-8255-492ba3ee2fce","direction":"outgoing","index":143250,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f0bd9ee5-5bc5-4e86-8603-2ae85bc0cc78","direction":"outgoing","index":143251,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"89844ae5-2eeb-44ee-959f-7f078bd5100d","direction":"outgoing","index":143252,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"05224511-940d-4176-a566-0c97ddb55340","direction":"outgoing","index":143253,"result_id":"45ed268a-b312-42e1-86ae-cf45f97ce492","status":200,"timestamp":"2026-05-22T21:11:19.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"53a38a64-f448-4388-adde-ee3185b3781a","direction":"outgoing","index":143301,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d372b192-15b2-4faf-9cae-0a6704337572","direction":"outgoing","index":143302,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:29.996-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"05c535dd-f0b5-4a3e-be9d-89e62f3257d3","direction":"outgoing","index":143303,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"7e69495d-c6b5-4a5a-90be-ff3cd600ded3","direction":"outgoing","index":143304,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"1a725259-0b27-411e-be8b-bd5048300ae0","direction":"outgoing","index":143305,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.085-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"9935bdbc-732b-4148-9efa-195564b5a928","direction":"outgoing","index":143306,"result_id":"24f64340-f531-4640-b5c0-d3391e09196e","status":200,"timestamp":"2026-05-22T21:11:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"d35d1ca8-0704-46ad-8bdc-ced2925120bb","direction":"outgoing","index":143328,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.453-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"039f0c5a-ce9a-404b-98a3-1002927237a9","direction":"outgoing","index":143329,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d30b2466-fefb-4111-836c-019bffced3b3","direction":"outgoing","index":143330,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.492-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c9769790-52bf-42cd-afd2-ec0be1d53912","direction":"outgoing","index":143331,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1c6851d6-82cd-44f2-a853-7ac6d4e011ef","direction":"outgoing","index":143332,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.519-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0578b35e-f7cf-4fa1-a654-2953119ce89e","direction":"outgoing","index":143333,"result_id":"ca9700a3-780e-4170-a1f8-1f5277418cee","status":200,"timestamp":"2026-05-22T21:11:34.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"abfcef7d-45f6-47c6-aabb-b2526675e7a9","direction":"outgoing","index":143367,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"943af84b-b1af-4a2f-b059-6a98d711523b","direction":"outgoing","index":143368,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2df95241-1b35-4652-9561-cc8a356452c7","direction":"outgoing","index":143369,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"36ea6e0a-7cd4-4be3-8e51-17a7323c6368","direction":"outgoing","index":143370,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b188b0bb-12f7-4d88-9938-d5207d67b9c0","direction":"outgoing","index":143371,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"183b71f3-d117-4979-8647-7ed22955a229","direction":"outgoing","index":143372,"result_id":"a0510c14-4942-4700-a6fb-7f65bdb68c99","status":200,"timestamp":"2026-05-22T21:11:44.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c86ddda3-68a4-4516-8081-f7a7641eb0a9","direction":"outgoing","index":143408,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.356-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"85b93757-4608-4583-9c8b-49f46d9a8f0d","direction":"outgoing","index":143409,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"912cccb9-b878-42be-8471-3ed5c2e8b53e","direction":"outgoing","index":143410,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"62e031b3-fc96-4a03-8ce1-84d98f9d8fc0","direction":"outgoing","index":143411,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"d156a5f4-5941-4599-bb1a-12dd01396abd","direction":"outgoing","index":143412,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0167139e-6133-4712-8315-977e3402da47","direction":"outgoing","index":143413,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"57baabaa-aa1a-4dbb-be49-78157790053f","direction":"outgoing","index":143414,"result_id":"bbf52527-017f-48bf-84d3-5c8b61f49bb2","status":200,"timestamp":"2026-05-22T21:11:53.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"95533512-e54a-4079-a5c7-eb109336adbf","direction":"outgoing","index":143451,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.801-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"302f2b8d-a07c-4f0e-87b3-2dd7d5c22b00","direction":"outgoing","index":143452,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f4f5c30f-3cce-4275-92e8-d5035a7f26b6","direction":"outgoing","index":143453,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"adfeb5d0-73c9-4676-88cd-8e6564fa2e96","direction":"outgoing","index":143454,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.841-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2dc0f25f-0d72-4145-9a05-281498f9ab54","direction":"outgoing","index":143455,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4dc96233-3a3d-4b5d-b898-0eadc2ec34c6","direction":"outgoing","index":143456,"result_id":"f107ca19-e7bf-4b96-8299-83921e6a46a7","status":200,"timestamp":"2026-05-22T21:12:00.867-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"107b1a6b-57a0-4125-8377-a63b758c3028","direction":"outgoing","index":143512,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.307-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7a0de248-65af-4aa9-b79b-b610fc54ec61","direction":"outgoing","index":143513,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"03502313-ea43-4c78-8254-96db7c6ada36","direction":"outgoing","index":143514,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"743db6c2-584b-4e53-accf-ffb9249378e7","direction":"outgoing","index":143515,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.348-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bb3beff7-036f-4cc2-b55e-36d8e7e09d47","direction":"outgoing","index":143516,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2726848c-fe23-4c5a-86bb-2bb9e5fb211b","direction":"outgoing","index":143517,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ea3a22ba-a9f6-4399-9fff-4965d8cfa07d","direction":"outgoing","index":143518,"result_id":"957173c6-887d-4cef-a359-a4e1d2653bf8","status":200,"timestamp":"2026-05-22T21:12:13.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e7fca1ee-e5b5-4caf-b1b9-9e6d3d53c27f","direction":"outgoing","index":143563,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3c686e55-4019-49e4-854f-6d70970cc2a0","direction":"outgoing","index":143564,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.888-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"99b041ac-71b0-4768-a500-b9db9216efaa","direction":"outgoing","index":143565,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8a7e4372-1c31-49d4-88e7-67d0b71e7a1b","direction":"outgoing","index":143566,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.914-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ddacdaa7-8b40-4123-b994-a0cda8ab2fbb","direction":"outgoing","index":143567,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fcebdd71-1d9c-422f-9a94-3d0b5be80389","direction":"outgoing","index":143568,"result_id":"19ccdde9-97da-4920-bda4-26c736cfc95f","status":200,"timestamp":"2026-05-22T21:12:22.938-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a54c85cc-9254-4301-af86-3e73e28f4f29","direction":"outgoing","index":143604,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.478-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"502a443e-f694-4ea8-9ead-acd406805bd5","direction":"outgoing","index":143605,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"12f8480e-db33-412d-a1f6-470fc31f5c89","direction":"outgoing","index":143606,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.518-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"c609f1ac-1127-4ee8-b914-f584f585507b","direction":"outgoing","index":143607,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"b1c5f8d0-5ef7-439e-a190-c4611651f91e","direction":"outgoing","index":143608,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6b9b4ea5-3c66-4c43-b1cb-cde00386645a","direction":"outgoing","index":143609,"result_id":"903cdc06-3a39-45a1-855a-7b70c46421fd","status":200,"timestamp":"2026-05-22T21:12:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"d710c206-ed6f-4048-b15f-2c1598f01cf8","direction":"outgoing","index":143645,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4af30b4a-653c-45d2-9aea-e11decb92d1e","direction":"outgoing","index":143646,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c7a5ea13-2665-4171-9687-2317560524c9","direction":"outgoing","index":143647,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"6acd32b5-5551-42ef-adf0-d8540591b8d6","direction":"outgoing","index":143648,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"be1744b5-8efb-45ea-969d-d16f0125abcb","direction":"outgoing","index":143649,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ce87c449-baf2-4cd3-9e13-45263b802942","direction":"outgoing","index":143650,"result_id":"62498566-1510-4680-aca1-509559296623","status":200,"timestamp":"2026-05-22T21:12:38.248-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ba53dfae-afbb-4dfc-bee9-d5d08980605a","direction":"outgoing","index":144936,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"f3780874-23b3-4636-a98c-9f3042ad0836","direction":"outgoing","index":144937,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0559218b-35e1-4f34-bdd9-c9a466b11eb6","direction":"outgoing","index":144938,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"27555675-01ba-4e90-b0b4-a53928f074a3","direction":"outgoing","index":144939,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"71262d75-5c87-4936-b14c-22bfde0d625e","direction":"outgoing","index":144940,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cd903323-6d99-4af0-8a18-398bd1a77026","direction":"outgoing","index":144941,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0b123b6a-3207-477d-bea6-3783108eaadc","direction":"outgoing","index":144942,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"aa6302e7-abd4-469b-a3bf-52f03079300f","direction":"outgoing","index":144943,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.782-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"e1880f6d-817c-4772-903b-5f90938d8b78","direction":"outgoing","index":144944,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"d1825d1e-3df8-4c67-bb46-7108b4a02374","direction":"outgoing","index":144945,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"41e115bf-5bee-4ea2-80ea-daa9a04d0668","direction":"outgoing","index":144946,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.816-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"ef1f33ba-9ef5-42c8-8c67-7240c86bfdbe","direction":"outgoing","index":144947,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"bb5f8ea8-2cd7-445e-9e84-0a7c6b25b0c6","direction":"outgoing","index":144948,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"6c9ca16d-5825-4af5-8939-f8f34cdafa36","direction":"outgoing","index":144949,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.846-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"33e54bfe-c6e2-4bdf-a48a-32701eccb7bc","direction":"outgoing","index":144950,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.855-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"fb293f3f-f3a5-4275-be18-8ec798e29783","direction":"outgoing","index":144951,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.865-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"a53f9a88-229a-4792-a8c2-014ac52d5338","direction":"outgoing","index":144952,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"ef25202e-884b-486b-b981-1d2c489a2848","direction":"outgoing","index":144953,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"266a1a29-e67d-4188-bc9e-6753c24c743e","direction":"outgoing","index":144954,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.896-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"b639342b-0c4d-489f-acba-0ca21c5b6173","direction":"outgoing","index":144955,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.906-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c3f7a896-1fa6-4356-b738-58a660575d63","direction":"outgoing","index":144956,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"53fefa9c-06d2-407d-877d-b8750e9ba097","direction":"outgoing","index":144957,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e7c70751-1c4b-4e89-9521-0ab59af16bab","direction":"outgoing","index":144958,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"df201ea0-1259-439c-8d35-5f92bf2bf9d6","direction":"outgoing","index":144959,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0463f44c-bfb8-4f36-8c99-48ac75695604","direction":"outgoing","index":144960,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1feaa919-5b21-4474-90bd-4796635d58cf","direction":"outgoing","index":144961,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c30e054a-9dd0-42ed-9c7f-8b6e0713279c","direction":"outgoing","index":144962,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"326d9455-d341-4b2d-93a7-e5242dcbedf1","direction":"outgoing","index":144963,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"0459eef1-417a-457a-9ec2-0338a4e31945","direction":"outgoing","index":144964,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"fc4ddf25-70ed-495b-8866-dffe6b822fed","direction":"outgoing","index":144965,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:08.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"d59262a1-f5cc-4a6d-97f1-a81c09fcb1c9","direction":"outgoing","index":144966,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e98485e0-6794-4a32-9cd3-6ebb9fccfd61","direction":"outgoing","index":144967,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"69f24d74-a356-4870-be19-deff23d457a7","direction":"outgoing","index":144968,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"ac5bb589-88e5-4d1d-b832-901963400735","direction":"outgoing","index":144969,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"f1a944e4-e229-4748-bf87-eed5d170f612","direction":"outgoing","index":144970,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.048-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"2f19b9dd-c0ee-4974-a817-c4601d55f2be","direction":"outgoing","index":144971,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"653b6586-c512-4551-a843-e721f95aaecb","direction":"outgoing","index":144972,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"cc86f43c-3f7b-40e3-a0b1-cf52c9f6a8d4","direction":"outgoing","index":144973,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.078-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"bff314af-d2f5-4bd3-a0ef-eb940ea80075","direction":"outgoing","index":144974,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.088-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3348d3b4-a7a6-4a92-89f5-27c8d2cdc955","direction":"outgoing","index":144975,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"099a202c-81af-46c8-ac96-59fbb503962f","direction":"outgoing","index":144976,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c9ac97d5-bcb1-4311-b5a9-8b9e9dd981a2","direction":"outgoing","index":144977,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.118-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d07ca762-765b-4563-b189-d690eac5c40d","direction":"outgoing","index":144978,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f9c326e7-fb76-42cc-ac93-cb4404790e44","direction":"outgoing","index":144979,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4007579a-7b58-4602-be90-c0fc2b9b3046","direction":"outgoing","index":144980,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"037fb008-508c-4f4e-969d-19ef0ce86d3a","direction":"outgoing","index":144981,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"64487f07-95e2-4cde-b945-2fd18b00e794","direction":"outgoing","index":144982,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.168-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9f938f09-e0f3-43e1-908b-8be875d1ea20","direction":"outgoing","index":144983,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"32ec369c-7da2-4635-92a4-7fe2d9ee92c8","direction":"outgoing","index":144984,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e484b0e4-eca1-4ebb-a448-15aace0903a6","direction":"outgoing","index":144985,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fb730847-59fd-41cc-bb32-a250e69ba987","direction":"outgoing","index":144986,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3374e84d-9ec5-4e3b-afbc-b866558ea9c9","direction":"outgoing","index":144987,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"de5d0d59-4c17-4352-a89d-69d939231038","direction":"outgoing","index":144988,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.230-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e5cd0a26-8aa9-4e75-8b4d-37d2453626c3","direction":"outgoing","index":144989,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9256ba4e-455c-4719-b1f2-76bbc010435c","direction":"outgoing","index":144990,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.251-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3286ee68-66cc-472b-90c9-8050593b0f9e","direction":"outgoing","index":144991,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d8173b75-5957-46e4-96f7-880ea95987ba","direction":"outgoing","index":144992,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.270-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"42630b2e-f23a-48b6-874b-ac213b6aeffb","direction":"outgoing","index":144993,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.281-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"89920919-f6e9-4a3e-9ead-44e6de3ea83e","direction":"outgoing","index":144994,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"b139b35d-b827-4582-aa02-d8168945e958","direction":"outgoing","index":144995,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.301-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"fb23a03f-55fd-4141-9a3c-5c4d304fb658","direction":"outgoing","index":144996,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.312-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"f2b1671a-c26c-473e-823e-0823c5bff537","direction":"outgoing","index":144997,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"284884f6-05d8-4194-a55c-cec05b50c70a","direction":"outgoing","index":144998,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"565079bf-9c95-4d40-baca-7ee979fe6776","direction":"outgoing","index":144999,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.344-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"a0c31bb9-192a-45fc-a732-8cba35324613","direction":"outgoing","index":145000,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"62a29442-43f1-425f-a7b5-f41f8fe20002","direction":"outgoing","index":145001,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"6af0d112-98d2-4e1a-9897-c065bfa54b13","direction":"outgoing","index":145002,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c7ebd61c-a757-4c3e-972b-e089b1bfdb3f","direction":"outgoing","index":145003,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.381-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"36be7762-2948-4aaf-bd9c-e756f72c2acb","direction":"outgoing","index":145004,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"68cf1052-6609-41ab-acf0-d2f899baafe8","direction":"outgoing","index":145005,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"95a70972-17d4-4bc5-8f85-26a7958eeb39","direction":"outgoing","index":145006,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"d7630ef3-fa3c-4a87-9046-8837c0b3c157","direction":"outgoing","index":145007,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"eb8126e3-72ee-4e60-97ba-4721977b9151","direction":"outgoing","index":145008,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.431-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"696d04fd-3c57-4db8-800d-d6d07a6b2379","direction":"outgoing","index":145009,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.438-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"a05c4fb2-a5d0-47a3-879e-8e4ceaa622b0","direction":"outgoing","index":145010,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"4b93c427-c0d3-4120-a4ac-46ce04bf88bc","direction":"outgoing","index":145011,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.457-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"322ec7ad-eca8-4130-8d4a-cc0593c08f32","direction":"outgoing","index":145012,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"28d12d60-5652-4927-89ca-5944c685815d","direction":"outgoing","index":145013,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.476-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"620b027e-eac1-4020-8be9-ba3f35c9d6fd","direction":"outgoing","index":145014,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"507b48ce-6300-4b60-8cae-bdc0b2cef7ef","direction":"outgoing","index":145015,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"58dc511b-aebb-41de-9f6f-4742a8a63e3b","direction":"outgoing","index":145016,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"a5d0832b-751b-49b3-a7b8-ad88365557c4","direction":"outgoing","index":145017,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2592b25a-372f-4db7-942b-5636a5f22b2a","direction":"outgoing","index":145018,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.527-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1fc1a956-c5c3-4df6-8ec2-3701e9b6f7fe","direction":"outgoing","index":145019,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"86aae89e-2d70-42b1-84b3-6f46ac808933","direction":"outgoing","index":145020,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"860932a2-ac33-4317-b0ca-a5f0e75758b2","direction":"outgoing","index":145021,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"027f8a4f-ddc5-46ca-ba1b-af881f94bc74","direction":"outgoing","index":145022,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"61999e70-a98f-4d19-b265-828212b9df91","direction":"outgoing","index":145023,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f30be040-fb76-4762-b288-2527c5b9c6c7","direction":"outgoing","index":145024,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dfe23407-e6d4-4f84-89ec-e43869f5fb4e","direction":"outgoing","index":145025,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1664f487-a57b-4d3f-81f4-5c704f0b4087","direction":"outgoing","index":145026,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8ca48973-4382-42b1-a9b9-ee81eaa33dd6","direction":"outgoing","index":145027,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.621-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"cf1e642d-7d3a-4045-9220-5f45c6a2eab2","direction":"outgoing","index":145028,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.631-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a5ca86d5-345f-41b4-ba47-47ae76f82863","direction":"outgoing","index":145029,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"afeaefdd-9d73-4853-a651-2c74c6c3ef88","direction":"outgoing","index":145030,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"e2776062-a136-4ba5-8094-f20dd7b056a1","direction":"outgoing","index":145031,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"f36d6d65-8a4e-46b4-8d02-743d6c05efc4","direction":"outgoing","index":145032,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"acb02595-7be3-49d0-974b-043caadad47c","direction":"outgoing","index":145033,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"60db5ee9-022f-4157-b780-b8f6af3928dd","direction":"outgoing","index":145034,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.696-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"c9992b86-4159-4693-a893-7e1f8f343c33","direction":"outgoing","index":145035,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.706-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"8275ee4c-04d9-4f73-85c1-f4b0a5657b87","direction":"outgoing","index":145036,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a37a25b6-1217-4e87-a358-937bf00588e7","direction":"outgoing","index":145037,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"86dd8e65-ce88-44b4-b75b-f1bf97855148","direction":"outgoing","index":145038,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.736-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"55774bde-c5b5-43f3-a93e-254cd1780ba9","direction":"outgoing","index":145039,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c0779287-92b1-4ddf-b761-9b339e6af3b4","direction":"outgoing","index":145040,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"04f017bd-6545-441d-8daa-9a24df5e1a73","direction":"outgoing","index":145041,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"eb5561ed-7dcd-4add-883b-f3ce18241663","direction":"outgoing","index":145042,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.777-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1774ad8c-df2d-459d-8c9a-9a501e99ca15","direction":"outgoing","index":145043,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.788-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0763e31f-c274-473b-9049-172593518362","direction":"outgoing","index":145044,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a33ebb06-164f-4c4f-b8d4-d8e6caf842c3","direction":"outgoing","index":145045,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"97a96eba-7036-4b55-b09a-abb50a8d7ba8","direction":"outgoing","index":145046,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"20c5e803-fbd5-4b0a-8dda-9d28c769615b","direction":"outgoing","index":145047,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.830-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5e89ebfd-546b-4079-87ae-f5f769f321ea","direction":"outgoing","index":145048,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.842-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"704e0cc1-afb2-49e9-be1d-119991a95c36","direction":"outgoing","index":145049,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.852-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f3f74f1d-be7c-4525-a822-f20c694657f6","direction":"outgoing","index":145050,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.862-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7e442478-86ff-4a42-9a4e-ac91f16942ca","direction":"outgoing","index":145051,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.871-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e44f071e-c7d1-4d9d-9d74-9ee9f92c5158","direction":"outgoing","index":145052,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.880-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0e798c98-6318-4c69-8868-a8949699f66c","direction":"outgoing","index":145053,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"96e929f9-dd6e-47aa-a9bb-87a3a4093ef0","direction":"outgoing","index":145054,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7289b836-1598-4b1f-8010-d44d3d60e142","direction":"outgoing","index":145055,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.911-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"ff175a7d-6687-401a-8d96-ef95759a626c","direction":"outgoing","index":145056,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"1eb0faa7-25cd-4b6e-9bce-777d1ee1aef9","direction":"outgoing","index":145057,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f44ab7d2-8cff-4dd5-8b61-b82e79194907","direction":"outgoing","index":145058,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f73011c3-d6f3-4cb8-abbf-6da44c141fa6","direction":"outgoing","index":145059,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"a3871a5c-fa8c-4145-ac66-d8a467cfff4b","direction":"outgoing","index":145060,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"43e03cdf-dfb9-4606-84a0-acf46ca25117","direction":"outgoing","index":145061,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.980-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"977f944f-ab96-4a28-9187-3cd1409675ce","direction":"outgoing","index":145062,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:09.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ea4c3803-8922-45f7-b100-815c5e79ae03","direction":"outgoing","index":145063,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:10.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ff26117b-aa96-4aca-a9bd-dab066ba66ff","direction":"outgoing","index":145064,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:10.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4de0abc0-6be5-4a89-97de-9f3fe984b099","direction":"outgoing","index":145065,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:10.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"1c87411a-d015-4a4b-87c0-742c6a17e88c","direction":"outgoing","index":145066,"result_id":"db918cfe-0de5-4971-ae10-7b2b26a6ce90","status":200,"timestamp":"2026-05-22T21:18:10.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_patient_code_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:18:08.597-04:00"},{"id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","created_at":"2026-05-22T21:18:32.757-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":true,"outputs":[],"requests":[{"id":"cdc426de-2cc6-4814-8f03-32123f7ebf7d","direction":"outgoing","index":142604,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"6e179045-07b7-4b6d-add4-f38b725a0d02","direction":"outgoing","index":142605,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"302adaa8-6ddc-4cc0-b893-228ad0f5af77","direction":"outgoing","index":142606,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"a33390a3-2ec0-43c9-b349-fd0ccec443a9","direction":"outgoing","index":142607,"result_id":"6184bd76-3c33-4129-ab3b-3aa6d588b7a7","status":200,"timestamp":"2026-05-22T21:08:22.719-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6cd9e383-aa87-4c04-b34c-537fc54967ab","direction":"outgoing","index":142635,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.262-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"952a933f-e2ad-4c7e-bc57-99224ce680af","direction":"outgoing","index":142636,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d709b7fd-0ffe-4633-8b4e-3997d082dd1c","direction":"outgoing","index":142637,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.305-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2bc0751-0e8e-4dea-b431-39ddb1697b30","direction":"outgoing","index":142638,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8b14926-db7a-4ea1-a63c-9160b43b5d30","direction":"outgoing","index":142639,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.339-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"74e58aab-8af7-4c30-a0cb-727cb923218d","direction":"outgoing","index":142640,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"755409b3-717d-41c5-af81-d020c017f5d4","direction":"outgoing","index":142641,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1eacb845-1941-4472-b1d4-d01121559c20","direction":"outgoing","index":142642,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.384-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dd561ed9-8877-42f4-9a1b-420a1b063cc2","direction":"outgoing","index":142643,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.397-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6214e1ea-55be-4575-825e-89e3e3d291c3","direction":"outgoing","index":142644,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0e6dcd32-8a6c-4981-a151-708e98212e9c","direction":"outgoing","index":142645,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"2494dda3-0fc7-45f9-aec4-2edb5f2a069b","direction":"outgoing","index":142646,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"25a2e270-5ed3-44ab-995b-2bf90178b3a3","direction":"outgoing","index":142647,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.452-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6cbdbd4b-d00f-485f-8e5f-a93b8093067b","direction":"outgoing","index":142648,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81034d61-0a3f-4f26-b251-809bad5f46e6","direction":"outgoing","index":142649,"result_id":"271c421e-756b-40ea-9f8f-e13600b8e236","status":200,"timestamp":"2026-05-22T21:08:34.481-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2be0c399-6028-46cd-92d5-3286378cc46f","direction":"outgoing","index":142690,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"25158941-9eb4-4e49-9170-456f0a7e610c","direction":"outgoing","index":142691,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c11c0fa-4b4c-4ed8-a6aa-6deb377fa44c","direction":"outgoing","index":142692,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22e5b4eb-be58-4a82-98e1-b6c62da0a29c","direction":"outgoing","index":142693,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:45.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab4f9d09-097a-4d19-9a5e-037365fa161e","direction":"outgoing","index":142694,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e63a9557-3ad7-4421-a5de-b86ace65e0e5","direction":"outgoing","index":142695,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"240ebfa4-c1a1-4526-aa25-0bdaa8511916","direction":"outgoing","index":142696,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ae998-0452-45ec-b43f-716ba451a2f1","direction":"outgoing","index":142697,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.050-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c9597d33-73ea-4016-90f8-a9f36951dda1","direction":"outgoing","index":142698,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.065-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4cd743ae-233d-4fcf-891d-b64f71b54c97","direction":"outgoing","index":142699,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c89233c-a760-4bba-af6f-169ec232ce32","direction":"outgoing","index":142700,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"cd3f8d1f-00ba-427b-b2d5-37ae87711b3b","direction":"outgoing","index":142701,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"063e2198-8ead-4f45-ab2e-978706d5ec01","direction":"outgoing","index":142702,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.123-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c24e16c-1cae-4d4f-ae24-0dcda29b9954","direction":"outgoing","index":142703,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9235a963-847d-4a05-8e47-3b0a39aee809","direction":"outgoing","index":142704,"result_id":"f71cc3b9-e0e9-4097-b9db-8957d408f94d","status":200,"timestamp":"2026-05-22T21:08:46.151-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"851d4890-9ec7-4594-a53c-2aa35397dfab","direction":"outgoing","index":142745,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.646-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"b57d441b-b33f-424c-b902-9ff0ac6e0b51","direction":"outgoing","index":142746,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.674-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a2b98d4d-3275-4d0d-ab38-cbbc1ccbc684","direction":"outgoing","index":142747,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92a4c345-2406-45bb-818e-f40c81ed13a3","direction":"outgoing","index":142748,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78c48a6-a914-4a18-bc56-426212ba68f5","direction":"outgoing","index":142749,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=88537baa-4543-416a-a167-2a2423eafa0b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d162caa1-c6cc-456d-b00d-20e9726d8f38","direction":"outgoing","index":142750,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"36e4143e-1438-491c-887d-65817478d9dc","direction":"outgoing","index":142751,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"46c07a6b-8422-4f54-bcd4-244749cc1b47","direction":"outgoing","index":142752,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"925e81f3-4815-4362-b34c-48ce21c83b4b","direction":"outgoing","index":142753,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"199f0a93-4c00-4204-b6bb-6accfa4a57b9","direction":"outgoing","index":142754,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.795-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3dd091ad-0d36-40e4-8d37-cc0e266448b3\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1853402-2806-45ab-b3ce-b9bfcee35b11","direction":"outgoing","index":142755,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.811-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6b00bb07-f9dc-45ec-b2cd-a1c57a31b9c0","direction":"outgoing","index":142756,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.824-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"938f994f-bbfc-4e74-8a54-ae7b5e498a72","direction":"outgoing","index":142757,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.843-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20692c7b-8d27-45d1-b22a-839e592d47b8","direction":"outgoing","index":142758,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2a9850b-faad-47fd-a0eb-8e21466fcc96","direction":"outgoing","index":142759,"result_id":"1a5d1c9f-73bf-4f3e-9673-053711031a03","status":200,"timestamp":"2026-05-22T21:08:56.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a6bf3581-1736-4db2-8150-96187a5837c2\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b5709320-c47d-4285-b583-308b10cf19b7","direction":"outgoing","index":142798,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"cac99f20-1f01-46d7-b3b1-b229c2f3cabb","direction":"outgoing","index":142799,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"60b3bfac-49ed-40ce-be4d-65d53822eccd","direction":"outgoing","index":142800,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.479-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1a80fcc5-c015-49c5-9d66-85e705d7fd57\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1149c244-ed8d-49e1-9c51-a919c62d84a2","direction":"outgoing","index":142801,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"91ab9353-6ad2-4039-bd07-3870fa84b0a8","direction":"outgoing","index":142802,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7dab17b1-afa5-4c00-9b16-443d7e1ac86b","direction":"outgoing","index":142803,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8236985a-4e48-4d89-8642-d1ef8c7f25c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c031e3e3-28e3-4aa1-b33d-93dc9943ec7d","direction":"outgoing","index":142804,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"5436d130-7c0a-4cce-aa0e-8d673d20a1e3","direction":"outgoing","index":142805,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.558-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bc02c961-4e5b-433d-a0f1-8fcfe2e464ce","direction":"outgoing","index":142806,"result_id":"ff019767-e1cd-40b9-877b-53a982e50c1e","status":200,"timestamp":"2026-05-22T21:09:13.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3aba2933-fe6d-47ec-8407-6de37243a916\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5677e1a9-b297-454b-b58d-812b304cb07f","direction":"outgoing","index":142891,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"f0d3f1b6-9d25-4e30-935c-bacd4e96e731","direction":"outgoing","index":142892,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.191-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"28c9146b-e18f-4437-86e4-eaad79be34b1","direction":"outgoing","index":142893,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.205-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"b1f77ac4-37c0-41c1-b1ef-e52930fae94c","direction":"outgoing","index":142894,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.216-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"337fd234-4180-4ffc-9294-78048c8fd7ed","direction":"outgoing","index":142895,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.228-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7f055dc7-67a8-4d48-a88c-ada89ad0aed5","direction":"outgoing","index":142896,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e1097dd3-142c-46a8-8d4b-a8965711e384","direction":"outgoing","index":142897,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ffdb9588-5e00-4b67-a91d-cad254bdf106","direction":"outgoing","index":142898,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2c2b63c3-1c6b-4e12-ba70-68bd77f0542a","direction":"outgoing","index":142899,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.279-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d8f06415-2730-4d2b-8027-bb3fe6e3753f","direction":"outgoing","index":142900,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.292-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"427007dd-7af3-4bda-9fdf-bd16deb73504","direction":"outgoing","index":142901,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"20dc6b58-7c58-484c-917f-5ffbd15bc17b","direction":"outgoing","index":142902,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.320-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d716c445-373b-47a5-bfc5-525e0133281b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6fbe6292-82ed-499b-9afb-5347acb71e1a","direction":"outgoing","index":142903,"result_id":"f5dffac5-bbdb-4987-9f7f-bb2a85fece3b","status":200,"timestamp":"2026-05-22T21:09:34.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ccc34576-b269-4491-8642-f8e8dad21cfa","direction":"outgoing","index":142982,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.972-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1984105e-1dfe-4380-b636-7927c47baaf2","direction":"outgoing","index":142983,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:17.993-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8df43090-93c6-4390-a849-b4d80445bb87","direction":"outgoing","index":142984,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"933f7135-6a35-4160-aeac-b84ea0bca97a","direction":"outgoing","index":142985,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.024-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"95fac879-714a-41b5-bdac-04711e03cf63","direction":"outgoing","index":142986,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.038-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa35a4f1-691e-45b0-a9ac-3501195e4f82","direction":"outgoing","index":142987,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.051-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b7bb9ec1-b6cf-4075-951e-5826af0a2bee","direction":"outgoing","index":142988,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"dbeb5882-6265-413e-bbac-1c5ee56b28ed","direction":"outgoing","index":142989,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"acc2b288-70f6-4c36-b7eb-349d66b66378","direction":"outgoing","index":142990,"result_id":"dc64a176-0c64-4fa0-a816-97173b76c335","status":200,"timestamp":"2026-05-22T21:10:18.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ed0d9765-3af3-49ba-8a8c-3baef1afa4d2","direction":"outgoing","index":143023,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9b914a42-3356-4578-873e-ec9299be9cba","direction":"outgoing","index":143024,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.060-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3f4a49-9e2a-4826-8708-f4ed7a59887a","direction":"outgoing","index":143025,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.079-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2565936e-769d-4fb6-9e81-0b12e3ecd2f1","direction":"outgoing","index":143026,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"962d7666-2129-4fc3-b0ce-a8cd9a761be0","direction":"outgoing","index":143027,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c39e4476-eef2-4b96-8743-e95ecf99b75a","direction":"outgoing","index":143028,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.119-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"429e5c16-58f1-423d-8c26-3a6fb3575c4f","direction":"outgoing","index":143029,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f4bde77-35dd-4cfd-9a9c-3d08ba6451f7","direction":"outgoing","index":143030,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03180678-fa41-4b98-9fed-cb2459206c56","direction":"outgoing","index":143031,"result_id":"e738c42d-fb32-4958-8414-e4410889abff","status":200,"timestamp":"2026-05-22T21:10:27.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"968b410f-3ea8-4999-b261-b280e3dbcc59","direction":"outgoing","index":143064,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"559a5524-9ebe-4ae6-84da-3eae18f80e1b","direction":"outgoing","index":143065,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.161-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b7eba04-a0b7-4656-98f6-6ecef6ea887e","direction":"outgoing","index":143066,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ac3878c1-2352-4e81-a6b7-4ed8906bb390\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e02524c-8fbe-42b5-bf9f-76300a1f4333","direction":"outgoing","index":143067,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.187-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"0a907206-bc85-4a7f-8035-c55adf933b7f","direction":"outgoing","index":143068,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"573bdf07-cff4-4612-86f1-ead7a4180d20","direction":"outgoing","index":143069,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9fd01ac-13ef-49d8-9c16-ea31a1880fc1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17841c16-9241-4b41-92a6-a253a5fe3dd2","direction":"outgoing","index":143070,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.227-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b706f5b9-95f7-4752-a6ba-de44ca52af0c","direction":"outgoing","index":143071,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.239-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a10648eb-e811-41c3-8887-8d9d1675a121","direction":"outgoing","index":143072,"result_id":"9ad9d93b-d177-4987-91df-84e9c73bb7ad","status":200,"timestamp":"2026-05-22T21:10:35.253-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8f73cc0c-6ddb-4f80-ac7e-b62f6fc19ab7\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"78d99a45-5835-47bd-aa88-9a99c60b76ba","direction":"outgoing","index":143108,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"9b22be4c-2695-4f7a-85ca-cf3a4b22b5d8","direction":"outgoing","index":143109,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"c9134509-6722-4736-a004-7a095a90e808","direction":"outgoing","index":143110,"result_id":"12060905-f000-4789-8a65-0c7f05eea088","status":200,"timestamp":"2026-05-22T21:10:42.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"599676ae-896c-474f-9cad-5ed9560bddab","direction":"outgoing","index":143166,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.490-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"4cfdae07-f9f0-4349-83fc-29c8eea4f575","direction":"outgoing","index":143167,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"542a15f3-dafb-4f94-9ed5-9c6b3eb7b73f","direction":"outgoing","index":143168,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"289e2ddd-8194-42de-b887-eda5e6887848","direction":"outgoing","index":143169,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.526-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"944f9861-94e0-4265-9f29-8a3247dd3ebe","direction":"outgoing","index":143170,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.540-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05053937-5c5b-4ceb-a866-2baa1486fc3f","direction":"outgoing","index":143171,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.555-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"fb26e6d7-6097-4b2d-8790-375b54fb1c08","direction":"outgoing","index":143172,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e70d0a1b-3f81-41f4-b130-d10309bc3834","direction":"outgoing","index":143173,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"12bf6013-568f-40c6-bf90-d25b9a65f4cc","direction":"outgoing","index":143174,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.591-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5dee6ddd-4b7b-4f77-a14d-f5c55db8a061","direction":"outgoing","index":143175,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c86ecad1-03a7-4637-984b-ae7b4e16a328","direction":"outgoing","index":143176,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"5058ab18-7e8d-4134-8072-eb07767f04af","direction":"outgoing","index":143177,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"35d6138e-c9f8-4140-9900-1809bfe25aa6","direction":"outgoing","index":143178,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.641-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39cfa167-20f2-4d5e-971d-2d29d8bfb796","direction":"outgoing","index":143179,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0fff5e72-88e2-413d-bf17-824dc6026893","direction":"outgoing","index":143180,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"31d17cab-8a97-4150-afdf-483aa74c39b7","direction":"outgoing","index":143181,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11707e61-a25b-4c3e-83aa-2a8a3817d520","direction":"outgoing","index":143182,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ff1bc43a-fdfd-4532-8e28-5350645cde6b","direction":"outgoing","index":143183,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.702-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a88fb1e-21e8-49be-acd8-0e3150c4867f","direction":"outgoing","index":143184,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72aac27f-a306-4b13-88b5-83a0b9c6e141","direction":"outgoing","index":143185,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39c9309b-1a04-4160-9ccd-e44689b7bccd","direction":"outgoing","index":143186,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"e5a65530-a6a0-4d0c-96df-8a98ebde83f6","direction":"outgoing","index":143187,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.754-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ce471f39-83a6-49f5-9d7e-a74b5ca21f92","direction":"outgoing","index":143188,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a0b7114e-e6ad-4ff1-a997-c4cb591a2214","direction":"outgoing","index":143189,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.791-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e3029e71-1b8a-40f3-918b-41256fd141c6","direction":"outgoing","index":143190,"result_id":"0d45a808-b2f9-414b-9cd8-5f0a6181d14c","status":200,"timestamp":"2026-05-22T21:11:00.803-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9ed9288-573f-46c1-862d-f15ced3e01c8\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad763595-bf50-4aa7-8e17-328fa457a28e","direction":"outgoing","index":143254,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"598c4d85-0521-456e-9d87-837c0594dc6b","direction":"outgoing","index":143255,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.933-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"91a4fc6b-22df-40d8-8422-05bf6ebac015","direction":"outgoing","index":143256,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"49ccc8f0-5979-4d10-8c08-a05cffcab940","direction":"outgoing","index":143257,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c27fda89-b188-424f-8bd3-c4d9a3f346ca","direction":"outgoing","index":143258,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:21.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=31e56f7d-098a-49c3-ac41-714a3a46d9d4\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e6335b1-cf9b-4710-adc0-8fd1ad1f051e","direction":"outgoing","index":143259,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"a0a43dc2-1a4c-4fa6-a802-a347da3c2d4e","direction":"outgoing","index":143260,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a1c3dc44-28ec-41a9-b3b6-85d59e71f759","direction":"outgoing","index":143261,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbf2c7b2-77bf-47ef-afff-3ab8b03c1143","direction":"outgoing","index":143262,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96522724-5da7-4f75-8401-3a660f0457d8","direction":"outgoing","index":143263,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ccab101-4cd2-4272-8312-7e75671c5f41\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8bd2eb1c-0e44-46d3-81ae-aabf20e5b296","direction":"outgoing","index":143264,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"879026dc-3966-4a31-aff4-642ff2a1c795","direction":"outgoing","index":143265,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.086-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1381fc1e-2b98-49d7-aca9-bb96428a0a48","direction":"outgoing","index":143266,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0e0328a-b9c0-40fd-b759-93a312a97958","direction":"outgoing","index":143267,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f78994cc-19ba-4a7b-9595-39cbb45bda4b","direction":"outgoing","index":143268,"result_id":"7004578d-c0b1-4753-b71b-c2fc4fbb041e","status":200,"timestamp":"2026-05-22T21:11:22.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4128de69-57a0-4d39-b35d-a4d63c9a4975\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"11a6ce53-abc4-406a-bc19-d7b4ba843acc","direction":"outgoing","index":143307,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.576-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"1da2a6cf-6ee7-41a2-b7bc-e42cbb6346f8","direction":"outgoing","index":143308,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"b6167bdf-3813-41b3-ad21-b9ed1d008d4f","direction":"outgoing","index":143309,"result_id":"568a68e6-0869-4106-b078-fb4c775e6719","status":200,"timestamp":"2026-05-22T21:11:30.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"a8237eaf-3475-4416-b418-4c2c439c4136","direction":"outgoing","index":143334,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.655-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"32560678-a03c-4765-9fbc-61f3f765f93f","direction":"outgoing","index":143335,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.677-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22ec6ce2-7a19-4002-b240-ce3bdb772488","direction":"outgoing","index":143336,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.692-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f06420a9-06dc-4f63-b81e-03bf26d6b834","direction":"outgoing","index":143337,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.707-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2e3fd39a-1bd8-4513-9863-8866e54913bb","direction":"outgoing","index":143338,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.721-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0aea055a-cc71-480a-9c8a-55ff6b0ba888","direction":"outgoing","index":143339,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6b1627c5-5f5b-40c4-93c9-905ea4387299","direction":"outgoing","index":143340,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"ba1f0012-302f-4e03-a33c-ad65b54fcf27","direction":"outgoing","index":143341,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c73f96c-4501-48c3-9df8-d0388b7d6bb8","direction":"outgoing","index":143342,"result_id":"fd75d090-7e0b-4d9f-a60d-3e8d8187cdd9","status":200,"timestamp":"2026-05-22T21:11:37.775-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5be12322-d723-4200-9f13-d53efdecdec3","direction":"outgoing","index":143373,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.448-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"293d4ec1-7e40-4c27-be9f-c4cb1be2d037","direction":"outgoing","index":143374,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"077fbfe6-bb11-406c-aa28-e66405919990","direction":"outgoing","index":143375,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.484-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df39f632-4cb3-430e-8236-2ce572e91fc3","direction":"outgoing","index":143376,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"45098c8e-1a69-44e4-8916-f528703a569c","direction":"outgoing","index":143377,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1777740a-4aeb-4ca8-97c1-21811bdb5a5a","direction":"outgoing","index":143378,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f3800ff8-e00a-4340-a9f6-4781fd8fad1c","direction":"outgoing","index":143379,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.544-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b0971d3f-5e82-4c80-8929-f5b3bc3e5f1d","direction":"outgoing","index":143380,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1188378-9352-4931-8e1a-68437e2410db","direction":"outgoing","index":143381,"result_id":"3be4e3ff-a045-42fe-8688-4229bab7240a","status":200,"timestamp":"2026-05-22T21:11:46.573-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2acf059e-0dd4-4bcb-95f1-eab2f497c6c5","direction":"outgoing","index":143415,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"85e6e14b-b177-4504-917b-5e1ec1e9b6a6","direction":"outgoing","index":143416,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"d50bd030-d841-45e0-be69-efe00fdad279","direction":"outgoing","index":143417,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"f41147f6-2769-48fc-a6dd-7eb052dab7ed","direction":"outgoing","index":143418,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3c046b7e-9949-4edc-a7c6-652dbce528bc","direction":"outgoing","index":143419,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56c9176b-0c8b-4d91-b879-1c93888ea0ca","direction":"outgoing","index":143420,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.565-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f6e81cba-dfb1-4830-982d-7856e7c0e34e","direction":"outgoing","index":143421,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.578-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47cd19db-85f3-471d-967c-b98d7271b57d","direction":"outgoing","index":143422,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1112898a-de35-41ff-9265-bd0971dd86a5","direction":"outgoing","index":143423,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.603-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"954c117e-3e0c-4283-9567-72fb8ef1fde0","direction":"outgoing","index":143424,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.615-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76f8b14e-9f21-493f-9bf9-2d04157bcf8c","direction":"outgoing","index":143425,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc5e319a-622a-4744-bad3-9843c307b646","direction":"outgoing","index":143426,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=033ebb85-7b26-463b-99bc-106b89c5c28b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5fc23602-4153-410c-910f-2925ad987443","direction":"outgoing","index":143427,"result_id":"fae3309a-ab6e-4bc1-9d67-9932343fb4a7","status":200,"timestamp":"2026-05-22T21:11:55.654-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"1f946d7d-cd3c-4269-8c96-dd2a68a359d1","direction":"outgoing","index":143457,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8b215bf6-a736-46a1-9ef0-25eb5d7cedb7","direction":"outgoing","index":143458,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7c53d4e-c013-4beb-bf95-f3f387cf17e2","direction":"outgoing","index":143459,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a8e73985-cb0a-465a-a729-afe822ba939a","direction":"outgoing","index":143460,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.523-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"18d833a5-0138-41b5-9d33-23b4a2bc9f7f","direction":"outgoing","index":143461,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.539-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b9cb9c6-d075-41e0-a00a-e846381a5b48","direction":"outgoing","index":143462,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16e62a15-619f-4552-bd67-dd9e58e35e61","direction":"outgoing","index":143463,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"60f4b77e-4ac1-4347-a99e-3b158eed212f","direction":"outgoing","index":143464,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d7efb76b-cff5-48cb-b03c-fc423d385cf9","direction":"outgoing","index":143465,"result_id":"f3685e6f-c5be-4a21-8d3e-ebc4ded028e2","status":200,"timestamp":"2026-05-22T21:12:02.595-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c213e4dd-0ebd-4011-a2cc-6ce7daaea039","direction":"outgoing","index":143519,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.904-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fa252a59-0c36-48c1-8ede-e02b4e225a0d","direction":"outgoing","index":143520,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"fd17024e-96cd-457a-b844-9d22f6bf193f","direction":"outgoing","index":143521,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"b81fc460-170c-4151-84bb-84d0483bdd9f","direction":"outgoing","index":143522,"result_id":"ba6ba88f-cbdc-4a6d-8483-7837bd962bd3","status":200,"timestamp":"2026-05-22T21:12:13.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"8bc30444-2575-415c-8ee9-1adf435943a0","direction":"outgoing","index":143569,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.396-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"22b41fd8-21e3-4797-bb1a-b2020d3c8334","direction":"outgoing","index":143570,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.420-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f08e513-4511-43d8-a5a1-08cf3a50f854","direction":"outgoing","index":143571,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.436-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8055ba9-0e68-4494-9021-d51c27eefdab","direction":"outgoing","index":143572,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"f86548dd-f4c8-4344-a937-1715da770c05","direction":"outgoing","index":143573,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.461-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e70cd87-975e-4e15-a89d-d3b4552421ee","direction":"outgoing","index":143574,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.472-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4935bdf-596e-489b-9994-21953b37ab6c","direction":"outgoing","index":143575,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"713a273b-1870-4215-9b4e-930876cf316f","direction":"outgoing","index":143576,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.496-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88d9aeea-0a08-4952-b1a6-b134718df6a2","direction":"outgoing","index":143577,"result_id":"0e58c81a-610e-4e82-a225-d2c46035a817","status":200,"timestamp":"2026-05-22T21:12:24.509-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8f97cd38-f8c0-40a5-8495-4fdb1802fff3","direction":"outgoing","index":143610,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"83b36181-9120-4897-8cdd-9c93d991f7a1","direction":"outgoing","index":143611,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.029-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e744160-f20d-424f-8925-0c3ef1f80a68","direction":"outgoing","index":143612,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.042-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69171976-f5f6-4738-83d7-dc111570a8b5\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ae845c-586e-4c5b-98ea-c8f660a37f1e","direction":"outgoing","index":143613,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"9bf7e0b1-e401-46dc-b76a-7e07a154877a","direction":"outgoing","index":143614,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"948c995d-294e-4f48-a69f-a87fae18626f","direction":"outgoing","index":143615,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=45303e3a-7acc-46d8-9389-36cb1746da9e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a026f5d4-1610-442f-9e59-9355032af082","direction":"outgoing","index":143616,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"e204b9e8-7e0e-4734-a6a2-09790499a66c","direction":"outgoing","index":143617,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de25e52-39e3-4ce9-8a05-1768cd23bc51","direction":"outgoing","index":143618,"result_id":"3592bb09-3300-45dc-a6f3-6dba17a2691a","status":200,"timestamp":"2026-05-22T21:12:32.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=700f3804-6f02-425b-b3f8-86ec5ef94b8f\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47be4939-11d5-44d7-8123-1d284d635073","direction":"outgoing","index":143651,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.306-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1f4f37d0-a743-4f29-ab20-5b578bf99eb3","direction":"outgoing","index":143652,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.332-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e158617d-749a-4f74-bc92-04486b9c1a49","direction":"outgoing","index":143653,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a766619a-a0ea-44a2-83bb-cb9dc5086da3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e618ba7-5c63-4a0f-8462-e2ba22317d1c","direction":"outgoing","index":143654,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"26317b80-1191-4d47-b128-a34265bb60b1","direction":"outgoing","index":143655,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"02d11ca5-66e1-4107-bb5f-15bb1d8df620","direction":"outgoing","index":143656,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c1458455-597d-4ba2-8cc6-5b43265ebc6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dad32566-efb3-49ed-8a05-5f357d185c2c","direction":"outgoing","index":143657,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.404-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"8d0a5baa-c291-48ca-9c08-7180c5707ed3","direction":"outgoing","index":143658,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fcb495ec-1667-4719-86e7-a90286ef545b","direction":"outgoing","index":143659,"result_id":"a2a88eaa-16f6-4a4b-9819-8d4849a98edc","status":200,"timestamp":"2026-05-22T21:12:41.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69ae57b3-4712-47f3-9add-22d55d87b9f4\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"df6876b6-c9e8-4147-8167-0083b07790d2","direction":"outgoing","index":145067,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"b4f2ca6d-8fa6-4fcf-8ead-407ff924390f","direction":"outgoing","index":145068,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.940-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"64357ec6-312d-4168-be73-1cc4f18870ee","direction":"outgoing","index":145069,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.950-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"2938d597-3724-4c5a-a02e-5e7e241007b4","direction":"outgoing","index":145070,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"b9211b56-8637-432f-8180-8adea3c5760f","direction":"outgoing","index":145071,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.968-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"0f8dc679-4c03-4a85-ae7f-6161c46deece","direction":"outgoing","index":145072,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"6e5ed589-f83d-4928-b746-8843ebe1a5f0","direction":"outgoing","index":145073,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"772d1372-76e4-4b1d-9979-eb85c3ca07ab","direction":"outgoing","index":145074,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:32.995-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"1c601f87-bd03-427d-bbc0-e8a6c593ee49","direction":"outgoing","index":145075,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.005-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"330ebd13-ad04-416f-b079-5cf56f4befb7","direction":"outgoing","index":145076,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.014-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"a1084744-e127-4539-b1c3-fac10aff1b23","direction":"outgoing","index":145077,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.025-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"44b85191-2857-4870-b4fa-a1a439b70fe3","direction":"outgoing","index":145078,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"3ee10a1a-71b4-4288-bd3d-476db353a889","direction":"outgoing","index":145079,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.045-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"9ba9b634-7086-486d-a34b-378620977802","direction":"outgoing","index":145080,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"05d54881-6e0d-4776-986e-fc53b5e61fce","direction":"outgoing","index":145081,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.066-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd3bb04b-db9a-49ef-94bb-f96211f4934a","direction":"outgoing","index":145082,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.075-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e16af945-9dd3-4c7d-b091-dc386bf7b0e0","direction":"outgoing","index":145083,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8dc6226d-9996-4a98-8a51-30ebf1decd7e","direction":"outgoing","index":145084,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.094-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ff315c3-0446-4ea2-a479-c70abedb8209","direction":"outgoing","index":145085,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094abbdd-e003-4f62-bce4-0244318ccee2","direction":"outgoing","index":145086,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.116-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"f977acc3-a3ac-4e3a-ab6d-cea0b01cfd64","direction":"outgoing","index":145087,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95f3cede-dcf2-429c-a724-833fea0abeb2","direction":"outgoing","index":145088,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.136-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dcd50d29-a72e-499b-8170-6607d3921913","direction":"outgoing","index":145089,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.146-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"c5068551-f67a-404d-b5a3-27310d37f45c","direction":"outgoing","index":145090,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.156-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"a6c2cdb4-b6dc-4d6e-ad72-10519bd0c939","direction":"outgoing","index":145091,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.164-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"716290e6-ab9c-49a8-a81d-4a9749209dd2","direction":"outgoing","index":145092,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.173-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"c6de1348-6356-4f0d-aa3c-dd8534db2aaa","direction":"outgoing","index":145093,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"43e1050b-7fdf-4a8c-a1c5-92e6be1bd7a0","direction":"outgoing","index":145094,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b11745e3-0a60-4664-896e-691c382521c6","direction":"outgoing","index":145095,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.201-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"446d40c4-860e-49c6-9fff-ae43fb8d4325","direction":"outgoing","index":145096,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"3985c547-63fa-4ec1-9aab-2f840f7d95a6","direction":"outgoing","index":145097,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.222-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4085924-4b20-4438-9593-da46adb2b190","direction":"outgoing","index":145098,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"09fdc0aa-ee88-469d-951a-9d8c948508d5","direction":"outgoing","index":145099,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"406729ea-c627-4104-bb29-ae9fb276d9e9","direction":"outgoing","index":145100,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b19408ef-1ffc-4603-a527-4d5b6a1d37cc","direction":"outgoing","index":145101,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab6c73dc-aaf6-4ffc-96d7-1028f9cfe165","direction":"outgoing","index":145102,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"fdf9da08-94fb-4597-b4e7-d05887ba156e","direction":"outgoing","index":145103,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.290-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"92a085ae-c5a3-4bb3-a4aa-13eaae30ffff","direction":"outgoing","index":145104,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c0ab902-ed18-4d78-ac59-035a67c09d17","direction":"outgoing","index":145105,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.310-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"1383155d-b78f-46f5-8187-a092a99925bf","direction":"outgoing","index":145106,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"812a23db-a28d-47a6-bed8-da42be9b3100","direction":"outgoing","index":145107,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.330-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cc23d079-3200-45e8-a65f-17f2235d2f12","direction":"outgoing","index":145108,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"55ba68ba-0464-4322-bf4b-7aa8e5b6982f","direction":"outgoing","index":145109,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.350-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b168ab4c-cc99-4141-93f0-44149fd05b72","direction":"outgoing","index":145110,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d4fc590-e188-47a1-8187-bb251c5f4d8e","direction":"outgoing","index":145111,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.369-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"6425145b-ac1b-461f-b954-19ac232d8262","direction":"outgoing","index":145112,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5ec4ddf1-dee7-4cf1-8417-1377c7b6645e","direction":"outgoing","index":145113,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cbf6e6e9-5f4e-49a3-a742-7e2ecef0d444","direction":"outgoing","index":145114,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"12bfdb10-255d-4069-ab35-ee7d48941209","direction":"outgoing","index":145115,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.410-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0cec503a-4f5e-43bb-b29e-bca9d9bb20dc","direction":"outgoing","index":145116,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.421-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5feb30c9-0efd-4eee-b1c6-6523960468b7","direction":"outgoing","index":145117,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"79e2ce1b-f760-4e4f-93ff-b7a5f842367d","direction":"outgoing","index":145118,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.443-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b323a95-1058-451b-b7d6-2eb1d01cb5b6","direction":"outgoing","index":145119,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.454-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e379e2d-fc39-42b6-927e-6c95909c064b","direction":"outgoing","index":145120,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"fed5066a-b46a-4be4-8593-c813539bad62","direction":"outgoing","index":145121,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"1cf10eb5-0da9-4576-bca5-949ff264df71","direction":"outgoing","index":145122,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"6751aed6-b0d2-4556-b7ae-85859031844a","direction":"outgoing","index":145123,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"9ba35d07-2701-418c-95d4-c8d9e07acbfa","direction":"outgoing","index":145124,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.507-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"378647b4-bff2-4625-9f1c-5370c3ca2205","direction":"outgoing","index":145125,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.516-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"4c695d03-82be-4ddc-8e71-71659e382ce9","direction":"outgoing","index":145126,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.527-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final,entered-in-error","verb":"get"},{"id":"764ccbfb-62eb-4018-bc10-d7e3caed548d","direction":"outgoing","index":145127,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"090e9a71-f4f4-4c9c-88f9-f995c9dc8676","direction":"outgoing","index":145128,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85\u0026status=final","verb":"get"},{"id":"1e8159b6-e8c2-40d3-ba05-d2c186c19cc4","direction":"outgoing","index":145129,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"af4cdef1-43fc-471a-98de-76a5b1714cf1","direction":"outgoing","index":145130,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"6f69babb-18ae-4e59-a61c-052f1fd9a544","direction":"outgoing","index":145131,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85\u0026status=final","verb":"get"},{"id":"fb2e6fca-bd4f-4a78-8c71-9d5da32be20a","direction":"outgoing","index":145132,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.585-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"4b09b4f4-7a2d-48ca-9285-6c9a6d5bdeae","direction":"outgoing","index":145133,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.596-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"29c9f911-5c21-449e-bcb4-af08c2eac04d","direction":"outgoing","index":145134,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe13d9d5-d564-4595-90c4-76e9fb59744c","direction":"outgoing","index":145135,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c7531d9-e69f-4f48-b39d-46a130e4d070","direction":"outgoing","index":145136,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8e8dd28e-4fe2-4ebc-8fb2-8fa537637fac","direction":"outgoing","index":145137,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d98a9e1e-ce09-4644-99dc-ca350c7ca734","direction":"outgoing","index":145138,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.645-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8a85db5-e919-4f5f-bf63-8506660ad898","direction":"outgoing","index":145139,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.653-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"029fde82-bcd7-417c-a692-b9c14a1d3f4c","direction":"outgoing","index":145140,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"884483fd-af89-4aa3-9d91-b0f8e1148b8e","direction":"outgoing","index":145141,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"201edd10-3693-4c4b-ae30-cdf194d39b66","direction":"outgoing","index":145142,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.683-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"0252a313-ae20-44c3-8e17-101a3cf2ad5a","direction":"outgoing","index":145143,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.693-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4daecc48-92c5-4f9d-864c-7b5e6e732420","direction":"outgoing","index":145144,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"16d1e9c3-1a79-4392-bf10-364cfc8a5848","direction":"outgoing","index":145145,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"2e76a952-4376-4d50-9011-07f55f7be4d5","direction":"outgoing","index":145146,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f8722da8-284c-4269-bbc9-3004b0f7494f","direction":"outgoing","index":145147,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"932eb6da-7573-4005-be61-3773a6ce03df","direction":"outgoing","index":145148,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"3c805650-8e51-4ea3-80c2-b8aeaf44b9f1","direction":"outgoing","index":145149,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.750-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"50f4fc22-9ab9-463f-84b1-a84896dc58b4","direction":"outgoing","index":145150,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.761-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0502bf56-8842-482e-8412-923d3e5d5fea","direction":"outgoing","index":145151,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.772-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"ec32e39c-f506-445e-9a65-948baaf4aa6f","direction":"outgoing","index":145152,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85\u0026status=final","verb":"get"},{"id":"bb0e02aa-dcf3-4ee8-9946-793180ce0df6","direction":"outgoing","index":145153,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355\u0026status=final","verb":"get"},{"id":"ac5f6cbb-ae8b-414f-96ca-47922efd4221","direction":"outgoing","index":145154,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"39ef7abb-faad-4eb8-8027-66dcb778bb21","direction":"outgoing","index":145155,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.809-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"41dfb9e0-5dd9-46e5-ba88-6792b73cd99a","direction":"outgoing","index":145156,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.818-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"364314b1-1e8f-4444-8a7b-8faece1f9b61","direction":"outgoing","index":145157,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0e76031-a512-4182-b21e-a2209891ea4f","direction":"outgoing","index":145158,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"03029ad0-8645-4562-9287-5512970bcb9b","direction":"outgoing","index":145159,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"88294d60-cf48-4662-acba-b0e4e61fe3d3","direction":"outgoing","index":145160,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8090d3b6-79cf-4011-be05-23c9b6add201","direction":"outgoing","index":145161,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.864-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"36a63ce4-5cac-4ef1-9c12-2b1561c17c4b","direction":"outgoing","index":145162,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.872-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"71ec2dfc-138c-4578-933d-bd825cc7aa59","direction":"outgoing","index":145163,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.883-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"501145c3-b933-477c-89a2-8ea4646f9496","direction":"outgoing","index":145164,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"80f6fe27-aca3-46d2-99f7-a1cf5110bd03","direction":"outgoing","index":145165,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.903-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85\u0026status=final","verb":"get"},{"id":"c522026f-0c0b-471e-a58b-9a61e0397153","direction":"outgoing","index":145166,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355\u0026status=final","verb":"get"},{"id":"6a78accd-1395-4fe7-b697-878ecd315457","direction":"outgoing","index":145167,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.924-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"733c5c30-ccb4-46fb-9d68-a7c6c88ef35c","direction":"outgoing","index":145168,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b155e689-81a8-46ca-a610-9189f4411a32","direction":"outgoing","index":145169,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"cf6b1d89-7386-43b8-b628-52c9e1113c57","direction":"outgoing","index":145170,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.952-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a42242ce-68f6-4dbe-885e-43f4648ece0c","direction":"outgoing","index":145171,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.962-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"45e0f0e0-b6ea-48ab-a9e6-fe1c51c78527","direction":"outgoing","index":145172,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d98c9a55-a2f9-4d9f-ba38-673e5c42b552","direction":"outgoing","index":145173,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d4c2d01-c192-4037-98d9-5c7821881e68","direction":"outgoing","index":145174,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:33.992-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"f67d2b8e-3253-4af0-8762-f5896ed0ecb3","direction":"outgoing","index":145175,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.001-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ba52380-8eb8-4406-811d-c69946a6ab0b","direction":"outgoing","index":145176,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"79544d1f-f704-4be7-9e0a-b51486a29482","direction":"outgoing","index":145177,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.022-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"b79fbee7-f73e-4527-abc3-7728168158bb","direction":"outgoing","index":145178,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6c54737c-c59a-436b-ab9f-c5256bcbbc4c","direction":"outgoing","index":145179,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"268b0a07-2507-44e0-afcf-a028155d1fce","direction":"outgoing","index":145180,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.054-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"a2f43a19-b073-44a7-adbd-da91e62199a2","direction":"outgoing","index":145181,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"57562898-f0be-4400-90ee-683ac4ebcbf2","direction":"outgoing","index":145182,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5cb7b0f6-39bd-4688-9732-dcc8298cfa6b","direction":"outgoing","index":145183,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"95b682aa-0c26-4672-af94-14bcba6ce4c9","direction":"outgoing","index":145184,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f40495d3-3f56-4f3c-bafe-2e6c215a8cd1","direction":"outgoing","index":145185,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.106-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4481a463-6eee-4e62-81f9-051f743af1fa","direction":"outgoing","index":145186,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"95fc694e-bbc6-4f7e-abb7-47e3c8197faa","direction":"outgoing","index":145187,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0886a937-bee0-45d3-be85-43b9e7d37ca1","direction":"outgoing","index":145188,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3cbbdb91-ec37-4e18-a894-dfd6fdd2e9c2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"22de852a-6ff3-4fe1-94d2-7ee7649b30fe","direction":"outgoing","index":145189,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.147-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355\u0026status=final","verb":"get"},{"id":"8b739638-4cc0-420a-839d-6e4b9bb4010c","direction":"outgoing","index":145190,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d5bfe37-3b9e-446a-93cb-deaf35d4365a","direction":"outgoing","index":145191,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2a18b9b8-ac92-49af-a45a-41e889e7c8de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b0ca216e-2795-44a5-b3ee-9c7297d2a4ad","direction":"outgoing","index":145192,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.176-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355\u0026status=registered,preliminary,final,amended,corrected,cancelled,entered-in-error,unknown","verb":"get"},{"id":"7ad08ab4-dc98-4f2c-9e7c-4c6f976a09f4","direction":"outgoing","index":145193,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"487d47f8-f590-46b5-9efe-f0f984abbbd6","direction":"outgoing","index":145194,"result_id":"2d234b01-cab9-4ddc-ba47-0528a5f101c7","status":200,"timestamp":"2026-05-22T21:18:34.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=23f1c2a1-4f76-48cc-88a6-e257cd5c47bc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_patient_category_status_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:18:32.757-04:00"},{"id":"a8f78923-22c9-4471-a95f-484f4e96de79","created_at":"2026-05-22T21:19:12.888-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"213dc0d9-1bfd-49f7-b828-bb7744da6935","direction":"outgoing","index":142608,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.700-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ab5d2ae6-1983-46c9-b740-9737cccb650a","direction":"outgoing","index":142609,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.733-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"a2917f9e-9f11-4325-b1a7-11da2ae73d78","direction":"outgoing","index":142610,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.748-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8b898c0c-66f7-4f7d-81d8-cfbc310beac8","direction":"outgoing","index":142611,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.799-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"c7073f7d-678a-4cb9-a344-2eace39c1e1b","direction":"outgoing","index":142612,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.814-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"843b1127-6ac8-4667-9ede-5fcc5839d169","direction":"outgoing","index":142613,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.828-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"5429d306-1ba7-4303-a371-c11c8c5518f4","direction":"outgoing","index":142614,"result_id":"e29fea05-dac2-403d-bdb8-001548160375","status":200,"timestamp":"2026-05-22T21:08:23.840-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"512eb863-955f-40fa-ab43-4d78ac59784a","direction":"outgoing","index":142650,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.604-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"c44ac570-3eb5-4ef8-874e-99bc5d622ffb","direction":"outgoing","index":142651,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.630-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"145cac0e-947d-4bbb-81fe-e6f8548fa250","direction":"outgoing","index":142652,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"3538be3b-ce0e-46ca-917d-8f9a87529f68","direction":"outgoing","index":142653,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"d3653bb2-fa4f-45ee-b3df-6973423d84bd","direction":"outgoing","index":142654,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.676-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c87479b3-1350-4515-9b4c-3e27cd8b9bb7","direction":"outgoing","index":142655,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81077f41-a062-460b-bee4-bf5a102b656f","direction":"outgoing","index":142656,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.705-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a5acf28c-01a6-4b77-8442-ce6d59dcf4e6","direction":"outgoing","index":142657,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.722-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f392f70f-c4cc-46bf-9741-72e668052b25\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"274bb9f2-030e-46a7-83b1-f2f3e9cffcf9","direction":"outgoing","index":142658,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.738-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"49fafe76-2bd0-407c-8733-d3d6c744bb8d","direction":"outgoing","index":142659,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6ff1a19e-c48a-4c29-8e91-43962e380182","direction":"outgoing","index":142660,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"47890152-f08f-4e19-b7c2-68ab1717b245","direction":"outgoing","index":142661,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.780-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"29f66cdc-65cf-495b-990f-bd238a2dbc03","direction":"outgoing","index":142662,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.794-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=0a3ef39c-e297-4f0f-b9fe-d941d208c6ce\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"657ed6aa-a33d-44a8-8f80-6ac90bcaf9bf","direction":"outgoing","index":142663,"result_id":"757946fb-9d23-4399-bc29-2a795e3dac21","status":200,"timestamp":"2026-05-22T21:08:37.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"0c485a1e-8353-4235-ac10-7f745649ee39","direction":"outgoing","index":142705,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"a954f348-ff86-4e73-8274-b8bd0a7585bd","direction":"outgoing","index":142706,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.293-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"577d1f22-cea8-4b76-bd89-b4f3cb7cb4c5","direction":"outgoing","index":142707,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"f86581b7-3277-4cac-96b3-72bac6545f20","direction":"outgoing","index":142708,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"6ac5b24c-ef27-4664-8f1d-488415871161","direction":"outgoing","index":142709,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0bcec63e-c5cd-4a95-b08f-e1c130fb9e6e","direction":"outgoing","index":142710,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.360-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52472409-82f8-41ad-ba3f-3f92b7b52643","direction":"outgoing","index":142711,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.377-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"38575731-d2aa-42b9-a3a8-f4083c9a7b84","direction":"outgoing","index":142712,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.394-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d64f04a9-e1ba-4fef-b644-b12161769439\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"07bb0178-d5a1-4ed5-a975-050d86f1e630","direction":"outgoing","index":142713,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.413-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"5db0ad54-b6e6-4523-91cf-110a7d10c1f5","direction":"outgoing","index":142714,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53d9f580-8dfb-45f9-b8de-b10b90b731d1","direction":"outgoing","index":142715,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b13a2dab-1b9a-4088-bd0e-76f359ba28b2","direction":"outgoing","index":142716,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2303d048-dd6b-42e2-86a4-2231ac8edd41","direction":"outgoing","index":142717,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.469-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=796fe07d-b901-40ec-8d85-cf1fce5ca810\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"81cab75d-2705-4ec5-b901-e54777e8e56d","direction":"outgoing","index":142718,"result_id":"642bc607-ff81-4fca-9bb1-334cceec4c62","status":200,"timestamp":"2026-05-22T21:08:49.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"239fa566-f511-4c99-8d45-19ff8e46ffff","direction":"outgoing","index":142760,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"d1a1527e-2a26-4a2c-b591-6f359394fa64","direction":"outgoing","index":142761,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.875-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"ef1567fc-ca65-4d14-b004-5f456f240027","direction":"outgoing","index":142762,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.890-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0cda50b7-0228-4090-aa4c-25e7e4b6c61f","direction":"outgoing","index":142763,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.905-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2bc98548-c952-4588-a5c3-6c501336954d","direction":"outgoing","index":142764,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"87baa689-4beb-402a-864b-f17e51333b40","direction":"outgoing","index":142765,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e3004fe-0cc7-4af2-ae97-c3bb3b65d0cd","direction":"outgoing","index":142766,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.959-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=cf0f3539-bba5-4f33-816c-60a09070b34b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"30f2683d-3ccd-4842-bd63-016968e2b589","direction":"outgoing","index":142767,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"20991b22-4a53-4712-8b57-aa2d9bf33b73","direction":"outgoing","index":142768,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:08:59.990-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9679ef56-98ab-450f-94e2-eb34b09f9277","direction":"outgoing","index":142769,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.004-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a777ec7-5f67-4b9d-9648-82f62ce417f8","direction":"outgoing","index":142770,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7c70334a-02ea-4df9-a08f-9098c8812cd1\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d4d9987-424b-4fae-b0c6-09a79c2c3c92","direction":"outgoing","index":142771,"result_id":"9cb8eebb-bd47-441e-a83f-de2231eb94c9","status":200,"timestamp":"2026-05-22T21:09:00.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e92ed314-a8ab-4735-ba1f-26d08a2a9869","direction":"outgoing","index":142807,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.111-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"651d8494-ad2e-495e-a134-eee9332f731d","direction":"outgoing","index":142808,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"652bba06-c435-49e3-9e7e-6fc58ecbcfdf","direction":"outgoing","index":142809,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1f3124c1-4f7b-4df7-951b-e818da33245c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"054b7da0-0245-4f9e-90f0-1941658d7e16","direction":"outgoing","index":142810,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"c00829da-710a-47e6-9b13-95d7f28ec552","direction":"outgoing","index":142811,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.174-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=1b7882a4-bf3c-4063-8482-33bcb828813e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7cde50c6-36da-43f8-975f-9953973e7e6c","direction":"outgoing","index":142812,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"1883f011-ac86-4cdd-89dd-4c719388098e","direction":"outgoing","index":142813,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dbd9b74c-be3c-49f9-9633-573ef5bae275\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72af3c91-23fa-4419-8bd5-07d3ea7cd24c","direction":"outgoing","index":142814,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.213-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"4b6da725-cd37-4642-afed-ef4835119062","direction":"outgoing","index":142815,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=59fe7544-4d14-42a1-9b7d-883bd303a1d7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4e03eaa1-2f02-4ad4-bbe1-13ffb6616d42","direction":"outgoing","index":142816,"result_id":"0a498f49-b480-4751-b59a-2f6361c925b0","status":200,"timestamp":"2026-05-22T21:09:17.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b3e0367d-66a8-4195-bb90-d8924603fc5d","direction":"outgoing","index":142904,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.294-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"e0a86155-b077-4b40-bbe3-efa88ec96873","direction":"outgoing","index":142905,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.319-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"4d8011f4-619a-4ea7-93eb-53b96df0bb99","direction":"outgoing","index":142906,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5be88e98-a979-48ec-8784-e0689e73d5fe","direction":"outgoing","index":142907,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"afb8c552-bf3f-4e21-a5eb-9ab05c530ff3","direction":"outgoing","index":142908,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3f87b94b-a4c6-45ee-990b-0d6751bbb35a","direction":"outgoing","index":142909,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"4df533b5-7d06-44cd-b470-d4f40663f1dc","direction":"outgoing","index":142910,"result_id":"adf61e16-a8c0-468d-95c2-3e48124272d6","status":200,"timestamp":"2026-05-22T21:09:35.388-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"098f8f5a-1385-4c6d-bc6a-ba85c7036532","direction":"outgoing","index":142991,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.589-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"76ede850-3612-4a64-ad66-31857f0d6df0","direction":"outgoing","index":142992,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.610-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"370ba11d-7ae6-4254-8d50-cab45f7968df","direction":"outgoing","index":142993,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3cb5a72f-fc04-493c-9c20-b7477ce92f91","direction":"outgoing","index":142994,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.636-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c7389791-96dc-4c03-bb1f-b3e607a2d20c","direction":"outgoing","index":142995,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.648-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7616ae5c-771e-45bf-b861-4fdb04a67a43","direction":"outgoing","index":142996,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.662-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ecfbfe24-6bb2-48b0-b902-a1a0bd592880\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"283eaef0-1b2f-4686-8a0f-41756bf2f0ae","direction":"outgoing","index":142997,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1ccf8e6f-c90f-4818-b3c8-ede0fcb47464","direction":"outgoing","index":142998,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"72d4c40e-380f-4b63-aa79-67a8724b4683","direction":"outgoing","index":142999,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e1066b13-62b1-4885-b11d-e85361ae9b5c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b8711d5-b1d2-4af4-aa5c-c519f09dde69","direction":"outgoing","index":143000,"result_id":"ab851ef7-bbeb-4c37-b2a3-bb8e1ec230be","status":200,"timestamp":"2026-05-22T21:10:20.713-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e33c1ca1-0f49-4fdb-a2e6-8f8f8e9c0a42","direction":"outgoing","index":143032,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.790-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2debbf25-bc46-4e66-8bab-a57b1cb4eb16","direction":"outgoing","index":143033,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.813-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9928259e-cdb3-408e-9940-981272de101c","direction":"outgoing","index":143034,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.834-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3d69e37d-894d-4587-b296-d446df991bae","direction":"outgoing","index":143035,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.853-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1a16ed5d-6f6b-4d17-b0bf-69fe7669e0f9","direction":"outgoing","index":143036,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fdccdeff-0e45-44d4-bc4c-8a95d4e63f65","direction":"outgoing","index":143037,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.895-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fb39a865-1e12-47ce-b3d6-b2432d8baa80\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3391a127-9df6-4a20-92fc-58913664ccc0","direction":"outgoing","index":143038,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"e372b0b1-60be-4021-a525-7801fa8821a7","direction":"outgoing","index":143039,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c1088305-ce81-4639-8dc3-2a2fcdbc304e","direction":"outgoing","index":143040,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d4de4c54-0984-486d-9c58-b0f558d1a0cc\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c135a0bf-f541-4c19-b8af-134c5eb4859d","direction":"outgoing","index":143041,"result_id":"228d157d-f73b-4d78-abd3-ff1958d8d1e9","status":200,"timestamp":"2026-05-22T21:10:29.967-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"131aa460-5aa4-4a6a-b3e5-4b3892ab1b43","direction":"outgoing","index":143073,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.835-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2054a894-dc1f-44f8-8da9-afe6b70f62c8","direction":"outgoing","index":143074,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.858-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b96385cf-e41e-47c4-8305-2fa270a0e5a0","direction":"outgoing","index":143075,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.876-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb4597be-c1e8-406c-85f1-7a92d61c83f5","direction":"outgoing","index":143076,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=578d6af5-cc20-4d53-b683-f97be816539b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c593b071-70ec-4bed-9875-10011c8ba169","direction":"outgoing","index":143077,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.908-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"878e5631-9e6c-4f0c-ad5c-41efd6367b10","direction":"outgoing","index":143078,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737efd6b-580d-42c7-a8eb-a037d941556f","direction":"outgoing","index":143079,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.934-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5e42816e-dec5-4a0e-bceb-5c1e40164e5d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0d2ee444-16dd-4bb5-a27f-bd209f93c5b6","direction":"outgoing","index":143080,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05f53142-c4b3-4f28-804c-d3e510489ae6","direction":"outgoing","index":143081,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.963-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"dd5b6114-53f2-481e-abb3-37c87d7a2196","direction":"outgoing","index":143082,"result_id":"557bd17b-62c8-43a5-aab6-58b28794c1b7","status":200,"timestamp":"2026-05-22T21:10:37.975-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ad054d05-c119-45f4-b3e5-57026fe9bbcf","direction":"outgoing","index":143111,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.399-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"4c05f617-e38d-4e61-90ec-9ea64556cd25","direction":"outgoing","index":143112,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.419-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"cc80a8e1-eb84-4405-92b3-dc5b5e63e8a1","direction":"outgoing","index":143113,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"86bf7b3f-8d90-4ddd-a7c8-3325c4e173f2","direction":"outgoing","index":143114,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a2f246cd-7fec-4ff1-be62-07313ebeb5ad","direction":"outgoing","index":143115,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"a1f537b7-bf86-42fd-adea-e0cf8110594c","direction":"outgoing","index":143116,"result_id":"42eeb4f4-3da3-4507-9b43-59e3d2fe85b0","status":200,"timestamp":"2026-05-22T21:10:43.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"dfb5f69e-05b7-4ed4-908a-a3831d9a2f8c","direction":"outgoing","index":143191,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"83559d18-b3ac-4b35-ba6b-28c12340f19c","direction":"outgoing","index":143192,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"f15d677c-30b2-402c-8b35-d084e0bce081","direction":"outgoing","index":143193,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa883a49-df42-4cca-a220-ef916fc7a818","direction":"outgoing","index":143194,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0f0cce23-d439-4981-9c6b-7352b8f52854","direction":"outgoing","index":143195,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"aa244b6d-b1da-4065-a87b-dd78a983cb1c","direction":"outgoing","index":143196,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4e77dfc0-2898-4732-bc25-9e055c0367f0\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b252deeb-fb52-4af2-9cac-1982ba28da13","direction":"outgoing","index":143197,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"ef0abaf3-f8c9-4efc-9f69-026e85d4ea57","direction":"outgoing","index":143198,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"89fd35ae-e15d-48d7-9d37-6c02d47ef456","direction":"outgoing","index":143199,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"45cda9f1-2a6e-45ea-9734-bf1038b7c65a","direction":"outgoing","index":143200,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"da3e44dc-4918-4751-9cda-9d4cd46f025c","direction":"outgoing","index":143201,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=90343c41-3654-4fac-b203-e90ba4d8b7ed\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e85e646e-f08e-40b1-b1fb-d6f2d35db95f","direction":"outgoing","index":143202,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9ba802ee-93d8-4bc9-8b06-e5ea8c3aa4a3","direction":"outgoing","index":143203,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"31b0fea0-1e47-4f0f-9821-7a0007cd1213","direction":"outgoing","index":143204,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.334-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"8309be3e-3a22-4656-8fbf-545f064efc95","direction":"outgoing","index":143205,"result_id":"675cbcdd-32aa-478a-b5c6-554cafe20181","status":200,"timestamp":"2026-05-22T21:11:04.345-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"06b0bbc9-ac94-45d0-a6de-e6d5dfe44100","direction":"outgoing","index":143269,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5cd07ac9-77a3-4394-9740-6e3ac2d09fec","direction":"outgoing","index":143270,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.078-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f07bcc2b-eeaf-4fef-845e-5ea98cb20e82","direction":"outgoing","index":143271,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"f80a4eb4-2d0d-41a8-9db9-b92b0a0c3c7f","direction":"outgoing","index":143272,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"880a9b19-f677-44de-b256-3f9d14f959e7","direction":"outgoing","index":143273,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5b54beab-554f-4eea-8dc8-c9aadb1f9cc9","direction":"outgoing","index":143274,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b40b5648-e38b-4418-8c29-c07a787aee00","direction":"outgoing","index":143275,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=524331ca-ead2-4c09-9235-beb5a4146aec\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"277e55c7-284f-466c-89c6-a128108e77ab","direction":"outgoing","index":143276,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"45468217-4f75-42b0-b398-8a949a845080","direction":"outgoing","index":143277,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"384ca20a-cc19-4c23-aff6-a51477ef5c59","direction":"outgoing","index":143278,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c5164a1d-12a1-4d54-95e9-cc017b097d36","direction":"outgoing","index":143279,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.224-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e98b83fb-46cf-4a51-9b0e-edd4b2a0e634\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0db7100-2316-4bb8-a392-9ae2b7253835","direction":"outgoing","index":143280,"result_id":"1d80d204-3550-46f2-a44c-30e0da2535f1","status":200,"timestamp":"2026-05-22T21:11:25.244-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"cb7cec43-b5ec-4973-8bde-0adcf9417c4d","direction":"outgoing","index":143310,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.561-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"0cc05925-c437-494c-aab8-f26e2784d9dc","direction":"outgoing","index":143311,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"e3758542-883b-464d-905b-95b6d96df4f9","direction":"outgoing","index":143312,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.587-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"5a2e24e3-5935-4e02-931f-c13ee881ee24","direction":"outgoing","index":143313,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"53e37a22-e769-4574-8c0d-7b6f1be7c83f","direction":"outgoing","index":143314,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.616-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"62c80db6-1a47-4f3c-9d6b-b989afef6ce4","direction":"outgoing","index":143315,"result_id":"77348e7e-50e5-452f-b708-adb5a65da191","status":200,"timestamp":"2026-05-22T21:11:31.629-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"27492779-3f4a-4fdf-9482-21909ddaf5e2","direction":"outgoing","index":143343,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3670caf5-30d5-4d91-bc47-698a8ca4fc78","direction":"outgoing","index":143344,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"73452740-f0b1-421d-862b-5c93c7724a61","direction":"outgoing","index":143345,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ebc86a0c-64b6-4021-a43a-fccd4067ccae\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52cac830-a582-4851-9443-0dc85f220398","direction":"outgoing","index":143346,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.209-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"fd3cba97-edf0-4b89-a5fb-164fc0838634","direction":"outgoing","index":143347,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b18f9e42-e653-4784-8bae-1940de78ce53\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4effaed4-492f-47a3-9dd1-4374c0fd4e46","direction":"outgoing","index":143348,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.235-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"45843988-a684-4c79-968a-1be8c4135a48","direction":"outgoing","index":143349,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.249-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"735d93e7-f15b-4d69-9820-4a5188000fc5","direction":"outgoing","index":143350,"result_id":"b32dbde3-74e5-4fe0-a3e8-e1ec48002d27","status":200,"timestamp":"2026-05-22T21:11:40.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"3ed293c7-aa15-4a42-a795-0cb957c54922","direction":"outgoing","index":143382,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.090-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"09bbc29f-1eaf-4848-8b17-887150ae86f7","direction":"outgoing","index":143383,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ba4c4346-3a61-41d9-8752-60f258039d20","direction":"outgoing","index":143384,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.129-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"54fea3ed-c56f-4ece-9a99-d32e7a13ffa1","direction":"outgoing","index":143385,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"27c35f66-ab3a-401f-8350-10d454890757","direction":"outgoing","index":143386,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"82763b1e-f868-493d-bcb8-9a63f3093541","direction":"outgoing","index":143387,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7f1d6a77-e3c0-4307-ae88-1d61fb472b81\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"765c3e68-7437-4834-9db4-5167c4d5d574","direction":"outgoing","index":143388,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"512d1685-5399-47cb-879f-192b639880ad","direction":"outgoing","index":143389,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b84a0fb8-d3ce-4fac-a056-a7f114b4193b","direction":"outgoing","index":143390,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4343467d-accc-42f5-8da2-60fe5bcc2261\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"05c7fefb-6e03-4301-9261-547c4edb9b33","direction":"outgoing","index":143391,"result_id":"708c518f-23cb-46bb-91e7-b3b150b678ec","status":200,"timestamp":"2026-05-22T21:11:49.231-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0eab903e-5aa6-45c2-adc8-979b6806c011","direction":"outgoing","index":143428,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"a74eccb2-9db7-4781-88bc-78415131eae8","direction":"outgoing","index":143429,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.661-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"0e2f2f2c-6654-4f1c-a91e-53d591f649bf","direction":"outgoing","index":143430,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"3aca742f-619e-4dcc-be32-02c39165d068","direction":"outgoing","index":143431,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.690-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"c1553ed8-95a7-4a35-b9b8-0a0f15eb3d86","direction":"outgoing","index":143432,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"5f9a44da-2514-4a32-9ac7-e7100eff3eeb","direction":"outgoing","index":143433,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"1b239477-0b80-40fc-9bb8-0e3cff7fdfeb","direction":"outgoing","index":143434,"result_id":"a2bb6bb0-6bb9-4fb0-a8aa-07ab0ca97fe1","status":200,"timestamp":"2026-05-22T21:11:56.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"a4dbd4f7-64cf-4a69-9d6a-32c0daee2215","direction":"outgoing","index":143466,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d76248d2-3c9c-4d9b-ba9f-b6c4bb0e362b","direction":"outgoing","index":143467,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.210-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"53c6f96f-58b8-4507-9a87-8be527ef2010","direction":"outgoing","index":143468,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=8a8bfde8-9568-40f5-a917-ca2decbfc166\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"54c7d645-5f55-463e-9f70-9334654b135d","direction":"outgoing","index":143469,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"91d7d192-8332-46cd-a565-0745ad3fdf74","direction":"outgoing","index":143470,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.255-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2526abe-bd4e-49cb-b505-38954cfe783c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6def2e0a-7f01-48f2-9aad-11f2d94b0e01","direction":"outgoing","index":143471,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.269-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ece2361f-2ebe-4baa-9a90-911271fa7978","direction":"outgoing","index":143472,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.282-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3f1068bb-79a9-4f73-8b29-fe5aa5f05270\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"073fd4f6-4085-4ce6-852e-4a422005edf3","direction":"outgoing","index":143473,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.297-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9ac1391a-7887-430b-ac4d-6583cca40179","direction":"outgoing","index":143474,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.311-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f6f3628c-3309-4a21-b917-4765e7f8e8c9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a166b08b-99b6-4d67-b59d-2def2a707c0a","direction":"outgoing","index":143475,"result_id":"1fa86419-f4b6-4424-9d6b-037d7ece8cc7","status":200,"timestamp":"2026-05-22T21:12:05.323-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"6995a7a3-cac4-4dae-919c-4c4cbb79ddda","direction":"outgoing","index":143523,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.884-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"7e36f3db-5259-4465-bac7-4a767aa40674","direction":"outgoing","index":143524,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"42b02cd5-cd71-4d94-b7a9-67f7ae343242","direction":"outgoing","index":143525,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.916-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"e6442c2a-2264-471a-ba50-eab8afc0db6f","direction":"outgoing","index":143526,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.928-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"0c8f1f1c-c9e8-49d7-bb96-ecebd4770d19","direction":"outgoing","index":143527,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"040034d7-d6b1-4bb9-b9dd-acafa46f490e","direction":"outgoing","index":143528,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.956-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"38401b7d-5077-408a-ab13-ceb646df4820","direction":"outgoing","index":143529,"result_id":"2ee2c581-936c-4747-a0fb-ba9f3b1681c4","status":200,"timestamp":"2026-05-22T21:12:14.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"3488eebf-b505-4c50-b64f-070e3b0996b4","direction":"outgoing","index":143578,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.073-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2c9e8d3f-8182-4b7c-ae46-b38a34a1ed86","direction":"outgoing","index":143579,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"5f8b46fa-3ad6-425c-a297-49f0dd948e11","direction":"outgoing","index":143580,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.114-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c45c0c8c-c23b-4b2b-b633-50e7183fa3f3","direction":"outgoing","index":143581,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=da98b47c-e3b3-491f-a4fd-00d5286be7ca\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e502a95-d091-4ab9-b7bd-bd9b6a7b5c23","direction":"outgoing","index":143582,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.144-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a1898e2f-9cd6-4ff3-90a4-d31e04a20536","direction":"outgoing","index":143583,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1c012fde-ac17-4299-8681-7804a3e11b0f","direction":"outgoing","index":143584,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=95b994f8-e309-41c6-b5dd-e20094663cef\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ad76a49a-d3e4-49d1-81c6-7f194680f3e2","direction":"outgoing","index":143585,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.184-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"05a71be1-ce12-491c-8cd2-cc68ad9b322f","direction":"outgoing","index":143586,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"4447b7d8-d425-4501-a1c0-fbf21817059b","direction":"outgoing","index":143587,"result_id":"5c3bd952-fccb-4d13-b53a-a5804b1d33d4","status":200,"timestamp":"2026-05-22T21:12:27.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9b0fa213-e9ee-4d9c-b18f-fc2645df3641","direction":"outgoing","index":143619,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.635-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"0caf861b-9b98-487e-aec3-4da33a7c407f","direction":"outgoing","index":143620,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.658-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"4094398f-8327-4c2b-b7f2-50958a6c2dea","direction":"outgoing","index":143621,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.672-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c15b4015-f6bc-45b0-b7a6-d359a5e10d0d","direction":"outgoing","index":143622,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.688-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=69b102e5-c944-42ba-8985-6e24d38576de\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1908f13f-bb73-4d25-b79f-8c341e90a232","direction":"outgoing","index":143623,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.704-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"21b9df12-a7f3-46e1-b20e-e0d4f4b5f101","direction":"outgoing","index":143624,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a621a520-d1e3-4686-8f8f-07d402f45ccc","direction":"outgoing","index":143625,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=4a3a9b74-6d49-470b-82d7-01c386c12ebf\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c47c900-6ecf-485d-b269-9de2dd2d5190","direction":"outgoing","index":143626,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.744-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9acf49db-3ccf-4c9d-84d3-064c42790921","direction":"outgoing","index":143627,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.756-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"f7827a00-12d5-4a68-80b2-a26835082001","direction":"outgoing","index":143628,"result_id":"fc1300fb-15f0-4a38-bfe4-c91e8fccf10d","status":200,"timestamp":"2026-05-22T21:12:34.771-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"78cb1c19-d9b7-438f-8b68-832ea9f7c181","direction":"outgoing","index":143660,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.105-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"21155383-1691-4960-9f9f-0843606b2f10","direction":"outgoing","index":143661,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.124-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"175ce37b-f06d-4c3a-89f3-27afb8f70765","direction":"outgoing","index":143662,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.143-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9c05dca3-f437-42a1-805a-4dc72a7715de\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b178a76b-4130-43bc-970c-b7d2a3ef7538","direction":"outgoing","index":143663,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b7070ae0-0fa2-4c1d-bd6d-c6dfd379ee3e","direction":"outgoing","index":143664,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f3ada986-6bc0-4c01-808c-518ea2bc9d69\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8cdfa5fc-af93-49ba-9a60-07a793eaaf65","direction":"outgoing","index":143665,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.204-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"508c93dd-60c9-489d-ab54-30debd69cc9f","direction":"outgoing","index":143666,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.223-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=80194c56-9cd3-410d-9fb3-19729350bd7c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6e514bb3-5af8-43a5-a804-e8725ceadc62","direction":"outgoing","index":143667,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"2346b492-00d1-4d03-ad74-25d44e1ffffa","direction":"outgoing","index":143668,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.259-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=55851eba-1f56-4d96-8b22-7f2db55140db\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"669b92ef-7744-41e9-80a2-7f632156e791","direction":"outgoing","index":143669,"result_id":"1f789080-257a-427a-a794-e035fb026fc7","status":200,"timestamp":"2026-05-22T21:12:45.276-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"73c1e705-4715-42c6-a902-c514011226c9","direction":"outgoing","index":145195,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.032-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"fc4e9060-2ac4-4d9c-9893-f72401d693f7","direction":"outgoing","index":145196,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.046-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"417a8b96-fc3d-4c21-adb8-1805ade704f2","direction":"outgoing","index":145197,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"bbf602f8-650e-4994-9e99-af7afb886c35","direction":"outgoing","index":145198,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.068-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"be341ee6-6b81-4969-b982-ad43a0ffe943","direction":"outgoing","index":145199,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"73814ba5-869e-4270-aede-4375ebb83ac7","direction":"outgoing","index":145200,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"cb7baaa4-9408-4bab-9566-0cbc03f5f4a2","direction":"outgoing","index":145201,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"e4a4a38e-9ffe-4694-b3b9-b69261b0004c","direction":"outgoing","index":145202,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"8595c3e9-6db4-4321-881b-805ab3d059db","direction":"outgoing","index":145203,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.131-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"e3ed183c-1b9e-42e7-84c5-21975eb4f2b6","direction":"outgoing","index":145204,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.141-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-08-23T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"e9d55274-3284-4b44-b65c-fe06a6429bef","direction":"outgoing","index":145205,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"300d6406-3edd-4ffc-b41a-241aadfb5794","direction":"outgoing","index":145206,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-08-25T10:39:52%2B00:00\u0026patient=85","verb":"get"},{"id":"97763854-2307-44a8-a69b-dd5ff88dd851","direction":"outgoing","index":145207,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-08-24T10:39:52Z\u0026patient=85","verb":"get"},{"id":"16152cd9-d2a7-4bb7-bbd2-37f35c26d49b","direction":"outgoing","index":145208,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.177-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"a7f98930-ca33-4aeb-91cc-1e5309f610a6","direction":"outgoing","index":145209,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"86d8908e-ce3a-4c66-8bea-622c1afb7ba7","direction":"outgoing","index":145210,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.197-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2022-09-22T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"dec688f9-f8b5-4de5-a54b-30fffa2334f4","direction":"outgoing","index":145211,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"b928ee48-0cfd-43d3-9754-87261a8476ee","direction":"outgoing","index":145212,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2022-09-24T22:39:43%2B00:00\u0026patient=85","verb":"get"},{"id":"b6442ec3-bb9d-4219-b4f9-9cd62b57de1b","direction":"outgoing","index":145213,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.229-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2022-09-23T22:39:43Z\u0026patient=85","verb":"get"},{"id":"aef51f1c-29a7-438a-8c31-14466bf2b981","direction":"outgoing","index":145214,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.241-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"01e40260-b63f-4ab9-aae3-12844f7d97a4","direction":"outgoing","index":145215,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.254-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"9c9aca63-972b-4d33-848f-29d7bb754e60","direction":"outgoing","index":145216,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.265-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"1f6e4605-aebb-45bf-b50d-eeff9fd975c5","direction":"outgoing","index":145217,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"2a7047d5-2b61-4f7f-a612-ac9e988f191e","direction":"outgoing","index":145218,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2015-04-25T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"8e05172f-68a2-4364-8c7c-94fc4b179830","direction":"outgoing","index":145219,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.296-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=gt2015-04-23T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"23466de3-3e29-46f9-8ee5-689ffe9fb005","direction":"outgoing","index":145220,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.308-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"296bc10f-09a8-46c8-afa0-dce4100e6448","direction":"outgoing","index":145221,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.318-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"d8fc42d1-d8e9-4efa-b8d4-f2c6666bd6f5","direction":"outgoing","index":145222,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.327-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fad61cd7-0c93-4968-92bf-c649fe5a6e49\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a7679504-8c62-4ecc-98c1-6f0425b2c05e","direction":"outgoing","index":145223,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1976-02-04T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"8ce8d404-dd3e-4efe-8f8e-dd7124224a83","direction":"outgoing","index":145224,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.349-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e13ae000-9c0c-42d0-aaf2-84795d76e7b5\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b3ef46f2-8bd8-4bb2-a4ec-085c5300c077","direction":"outgoing","index":145225,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"040c21a0-2b09-4761-b26b-bf3aa925f4fe","direction":"outgoing","index":145226,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.368-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f94c05e7-942c-4721-9ed9-8d667d0f3f53\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"759d844d-4a78-4686-ba36-b6c3cbcaa47a","direction":"outgoing","index":145227,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.378-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1976-02-06T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"00d60882-c40d-4c89-8bc7-127ba5850002","direction":"outgoing","index":145228,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=748e1b22-dd0e-415a-9caa-2008ff137dd7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a9ac2ffd-e6e7-42c8-8d4f-3fb1327ff002","direction":"outgoing","index":145229,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.398-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1976-02-05T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"10b08154-8739-41d9-8ad4-ab133a04649e","direction":"outgoing","index":145230,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"be21c4e8-a0ea-4be3-aadf-5da9b3c111b7","direction":"outgoing","index":145231,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"998b431b-423a-4504-92de-35791898db71","direction":"outgoing","index":145232,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.428-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"66127088-19a3-44e0-9066-3a745733aa8f","direction":"outgoing","index":145233,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"8b0f0ea4-4ea7-423c-8bf0-0ad154c2271a","direction":"outgoing","index":145234,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.446-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"976630a9-44b0-4ff5-85e1-ad1d92688fbe","direction":"outgoing","index":145235,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.454-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"2e7660e2-4e7a-425d-b52d-6e277685aca9","direction":"outgoing","index":145236,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2021-06-04T12:19:16-05:00\u0026patient=355","verb":"get"},{"id":"88b3bb67-9a1b-4d31-b697-c55743bb4afd","direction":"outgoing","index":145237,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"c8de47b0-0804-4be7-8cb4-f405c03e7d3b","direction":"outgoing","index":145238,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.486-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"847b90df-65a6-4af9-8554-97330102a30b","direction":"outgoing","index":145239,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2003-07-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"aa654dac-aee0-4fab-bfd9-266580c35353","direction":"outgoing","index":145240,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.505-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a6b4f36c-b491-4860-ba1f-2b2cf4387d33","direction":"outgoing","index":145241,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11ea6782-6712-4248-b3eb-5b41da5e5b83\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90f3b56d-9a0d-4429-9f5d-b429b9858839","direction":"outgoing","index":145242,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.525-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=11ea6782-6712-4248-b3eb-5b41da5e5b83\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d4b14010-22a9-4b2b-8766-b17651fa4deb","direction":"outgoing","index":145243,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.537-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2003-07-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"06aa50fe-6522-42ce-82ff-7b8a4fb76a66","direction":"outgoing","index":145244,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.547-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1e9fb57-e8bd-436c-9cfe-755b4a161793\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"24192ab9-b8f8-48ae-afd8-5ffa4ab1ea15","direction":"outgoing","index":145245,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.559-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a1e9fb57-e8bd-436c-9cfe-755b4a161793\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40a26139-2ffb-4cf5-a924-2409f749b7d9","direction":"outgoing","index":145246,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.567-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2003-07-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f5480b47-60a9-4524-be0e-fe3a7adf5008","direction":"outgoing","index":145247,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.577-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"23800d7a-0fac-4add-a376-fe679d416f6d","direction":"outgoing","index":145248,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.588-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"9e31512f-0332-4516-9209-75fdffdbcf38","direction":"outgoing","index":145249,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.597-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2009-08-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2777d6b2-45e8-40cd-bce0-dcc9a174477d","direction":"outgoing","index":145250,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"740e3968-45f4-47b1-b8a9-8d18bfcbaa90","direction":"outgoing","index":145251,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.617-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6590d4c9-dc15-4776-addb-3792ace81f43\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0842581f-debc-4c7d-9bea-6140af2b07db","direction":"outgoing","index":145252,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.628-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6590d4c9-dc15-4776-addb-3792ace81f43\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2b07029a-15b7-483f-a510-889e26b6c139","direction":"outgoing","index":145253,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.639-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2009-08-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"17d64dff-a924-4552-91a6-4fb6b5f58caf","direction":"outgoing","index":145254,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.647-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ecc2958-c505-4367-b475-f7e68248926b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7ba4dc47-2a93-42dc-af0f-6b485d085c2e","direction":"outgoing","index":145255,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.659-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=3ecc2958-c505-4367-b475-f7e68248926b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f6f5ce5-8cd5-41c6-be99-dd0ab5bce0e2","direction":"outgoing","index":145256,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.670-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2009-08-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a095ca40-5781-4e97-ab7a-9ef25e584235","direction":"outgoing","index":145257,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.679-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"918a9fd8-bc2a-4b66-b2c1-097daf20e86d","direction":"outgoing","index":145258,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"696b7209-3951-44bc-ab60-546b52711651","direction":"outgoing","index":145259,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c3ac7037-2ab0-40a9-8238-1e4104fb956d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"536a753a-df18-444c-8b7d-4f28eab0cd0f","direction":"outgoing","index":145260,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.709-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c3ac7037-2ab0-40a9-8238-1e4104fb956d\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"03088a7d-73fa-46d6-be7e-d6603b521562","direction":"outgoing","index":145261,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.718-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"0133a560-0e13-4ea2-ab45-d00f9d728613","direction":"outgoing","index":145262,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.729-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f7ab373d-e5f2-4e95-9dd9-8dd34952c1f1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e185374f-26bb-44c9-bfd5-a445973e21d6","direction":"outgoing","index":145263,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.741-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=f7ab373d-e5f2-4e95-9dd9-8dd34952c1f1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2937b793-3a6a-4fab-9550-571f22d26554","direction":"outgoing","index":145264,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.752-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"665fe92c-bfdd-4870-907e-1bde5354316d","direction":"outgoing","index":145265,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.760-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"13e62b5e-19bf-4508-8760-c568747d4ab5","direction":"outgoing","index":145266,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.769-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7805f631-93da-46bb-8138-db228a6ca83b","direction":"outgoing","index":145267,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"f62d4b5f-b67f-47aa-a44d-3b61933b32f6","direction":"outgoing","index":145268,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.786-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"6cc5422b-5660-4ae3-af92-b1786f7dc266","direction":"outgoing","index":145269,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"1aafdc09-766c-41d2-8c44-63e298475cf4","direction":"outgoing","index":145270,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.808-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"b87724e4-2598-4a89-ab74-3567697aacb3","direction":"outgoing","index":145271,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.817-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1975-04-08T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"2b257743-f13b-4bd2-9c63-e6fd69797d09","direction":"outgoing","index":145272,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.827-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=gt1975-04-06T02:51:45-04:00\u0026patient=85","verb":"get"},{"id":"3e96b499-7552-4a3a-a08f-0f309bd4ddd0","direction":"outgoing","index":145273,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.836-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"9e8d5ba2-6db4-4839-80b4-bd513fba68a8","direction":"outgoing","index":145274,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.844-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"64051243-d57d-4196-a52c-90a17dbaec35","direction":"outgoing","index":145275,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.854-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge1940-05-02T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"7898ce0b-aaa0-489c-935c-2ca9d67c39f7","direction":"outgoing","index":145276,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.863-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c5b102a6-5d59-4d80-bd72-25586ed3b37d","direction":"outgoing","index":145277,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.873-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le1940-05-04T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"b3fcd9cf-3cf2-4df9-9590-a25bd5f2aaaf","direction":"outgoing","index":145278,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=1940-05-03T01:11:45-04:00\u0026patient=85","verb":"get"},{"id":"c7e0f860-4542-43d9-8b35-f0a902ddaac7","direction":"outgoing","index":145279,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.892-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1940-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"edb47289-4f26-4d8e-8dd6-e4a570495ccc","direction":"outgoing","index":145280,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.902-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"32b1f0ac-6bd5-4a54-bd68-ba1fa25e88e8","direction":"outgoing","index":145281,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=gt2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"d0b185d0-e139-4bb4-bf61-939ddcc6e642","direction":"outgoing","index":145282,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.922-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=ge2020-05-17T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"2b6b8a24-b677-437f-b0b6-6baa1f6b224a","direction":"outgoing","index":145283,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=lt2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5d13aa3f-acea-4e20-9154-9bb412574bcc","direction":"outgoing","index":145284,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=le2020-05-19T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"5edbc9d5-7e66-4a22-82ba-86422e038a82","direction":"outgoing","index":145285,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.951-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026date=2020-05-18T10:17:51-05:00\u0026patient=85","verb":"get"},{"id":"7458aefe-b971-46e7-a608-d233c33d8595","direction":"outgoing","index":145286,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.960-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"8d5ed7d3-b56d-42c7-9e0d-801bf9dba277","direction":"outgoing","index":145287,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.969-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"1a38c836-682c-437c-9b38-046d04aefcd1","direction":"outgoing","index":145288,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:13.982-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2020-11-17T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"3450b224-bc56-42f3-9f5f-c7d23bc9af9e","direction":"outgoing","index":145289,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.047-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"79b6906d-26df-4f13-b246-a8401a537807","direction":"outgoing","index":145290,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2020-11-19T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"3e4c30d5-4f65-44cf-a143-0ecebf3698ec","direction":"outgoing","index":145291,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.066-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2020-11-18T16:19:31-08:00\u0026patient=85","verb":"get"},{"id":"cb51028a-b8e4-4913-b6e3-883cee94fd65","direction":"outgoing","index":145292,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.074-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"aa5c93c6-ff02-4f45-99ba-73fe0c850fa0","direction":"outgoing","index":145293,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d6b42553-d81f-4b34-9fdd-6b267fe5aed6","direction":"outgoing","index":145294,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5dc79501-2766-4f97-95e2-5190d492cb59\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4749471c-011b-4d82-a3a3-8722952137b6","direction":"outgoing","index":145295,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1952-09-24T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"75e62118-b048-4cfa-96ed-6fdeb690b2d5","direction":"outgoing","index":145296,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2ebb7c50-4dec-4dcb-a5ba-4114a3f85a25\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba124f44-e57b-4ef3-87f7-4b0d8dcdf1c8","direction":"outgoing","index":145297,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.122-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7b8dd157-a27e-49f1-b23f-012f0154b021","direction":"outgoing","index":145298,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1952-09-26T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"24384d75-dd51-4e79-aeea-3b87b48865c0","direction":"outgoing","index":145299,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1952-09-25T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7778b040-3b71-4d01-a4d2-25626e551504","direction":"outgoing","index":145300,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2ab0a974-30ad-4dd8-acc1-560a8d1875bd","direction":"outgoing","index":145301,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.159-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"415c5361-dbed-4fa6-abd2-b74a7e93d0fd","direction":"outgoing","index":145302,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge2013-09-04T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ba613395-8d51-494a-8bcc-eafd6fe659cc","direction":"outgoing","index":145303,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.175-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"f23b5ebf-341a-4310-8c78-0ed3422e93d4","direction":"outgoing","index":145304,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fcd78a63-d902-46cc-bd36-c9d88768a4fe\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"428816d5-e99a-4d08-b770-ca8989471679","direction":"outgoing","index":145305,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.193-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fcd78a63-d902-46cc-bd36-c9d88768a4fe\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4b0d2094-0665-49e4-84d8-c664a402b0ac","direction":"outgoing","index":145306,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.203-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le2013-09-06T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"560835ef-e32a-4cc1-844c-c227c8482795","direction":"outgoing","index":145307,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94b9d718-d06a-480b-a21f-603fc0986ff1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e116483-a195-4028-9582-b8f1a5cf6fcf","direction":"outgoing","index":145308,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=94b9d718-d06a-480b-a21f-603fc0986ff1\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e11698dd-7cda-4068-ac4d-e40eb61c3fd1","direction":"outgoing","index":145309,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.233-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=2013-09-05T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"7c7ea917-6235-49bb-88d1-6e4ae7553482","direction":"outgoing","index":145310,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.242-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"46a7e933-0453-4a99-b494-cbcc9a904f8a","direction":"outgoing","index":145311,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=gt2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"7be7a9a1-4a7f-48ef-a747-5abe5c269ccc","direction":"outgoing","index":145312,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.264-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=ge2022-03-28T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"40f12765-a51e-453b-8648-709c2fdfb265","direction":"outgoing","index":145313,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=lt2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"31f231b3-36a9-41b6-ba01-843ba6162b38","direction":"outgoing","index":145314,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.283-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026date=le2022-03-30T22:38:59%2B00:00\u0026patient=85","verb":"get"},{"id":"8306f3a8-ebce-418c-8c52-81052572b53a","direction":"outgoing","index":145315,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026date=2022-03-29T22:38:59.084000%2B00:00\u0026patient=85","verb":"get"},{"id":"a29ad064-6eda-44d8-81d8-b7d46b5c049d","direction":"outgoing","index":145316,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026date=1993-01-13T21:54:22-06:00\u0026patient=355","verb":"get"},{"id":"84159e88-111c-4cf5-aeb5-5da2c477f5e7","direction":"outgoing","index":145317,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"8b3a0399-19fc-41ce-962b-9d042dc09058","direction":"outgoing","index":145318,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.322-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"36783f33-f054-447e-9c11-58da8662446e","direction":"outgoing","index":145319,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.333-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=c9d6663f-98d1-4234-be71-2ddad8ecaac6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac9f8770-143a-4985-ad2e-4a05b890af88","direction":"outgoing","index":145320,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.343-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1994-05-18T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"2ebf0e9f-3cf4-418d-9f0c-6ea08b8af5ad","direction":"outgoing","index":145321,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bfc7a3e4-c02b-48c1-9a48-573f2cd4f1d6\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f4401fd6-3c91-47a4-aa1c-fc1c179d183d","direction":"outgoing","index":145322,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.362-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"b5e7f425-b421-4e74-b39d-189c9414339a","direction":"outgoing","index":145323,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.372-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d98de28a-91dc-4105-98b9-d3a3e722c4b7\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004c9842-cf75-4694-a23e-a133a8ad9e12","direction":"outgoing","index":145324,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.381-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1994-05-20T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d0063f03-c0c3-4f11-a8df-2d6fd0900ab2","direction":"outgoing","index":145325,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dc4f43c6-fa4b-4de9-ac3e-cc2a09abcac1\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"70623e78-edf6-4a0c-9ddd-103d68045253","direction":"outgoing","index":145326,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1994-05-19T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"65dabd2f-a74b-4fd1-ab57-b437e1792715","direction":"outgoing","index":145327,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"04136f91-1374-44cf-a455-88098d3474b5","direction":"outgoing","index":145328,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.424-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"309f5087-1d22-4ec2-828d-d938418a010f","direction":"outgoing","index":145329,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.434-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=ge2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"90c891af-8151-4a39-8a81-3bbb50252603","direction":"outgoing","index":145330,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.445-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=lt2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"dbad1914-6a04-4790-8d21-01d1c8a9adff","direction":"outgoing","index":145331,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=le2005-07-06T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b4bfd05e-d011-466c-b248-dfa73e36de62","direction":"outgoing","index":145332,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026date=gt2005-07-04T00:00:00%2B00:00\u0026patient=85","verb":"get"},{"id":"b5633599-f42c-44a4-928a-ce30d35442c1","direction":"outgoing","index":145333,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.477-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026date=gt1972-01-12T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"df593cd4-d8f1-4b5f-af8a-028d9c189a55","direction":"outgoing","index":145334,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"392b1ea7-6d8a-4edb-937a-b4260be25004","direction":"outgoing","index":145335,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"1a3004ca-762d-4e04-b54e-e92735a6dbc4","direction":"outgoing","index":145336,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.506-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=734c54ef-ad39-46ee-8423-48e5970fb823\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0ad64ec2-9f95-4dfc-ae34-d9d01fbc5be0","direction":"outgoing","index":145337,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.515-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=734c54ef-ad39-46ee-8423-48e5970fb823\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"699cf889-40c5-43b3-9b69-ee0e061a13bd","direction":"outgoing","index":145338,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.524-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1944-02-09T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"a16a9551-bc36-42f0-a7a3-12ccd64c3fa5","direction":"outgoing","index":145339,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2804061-6fff-4664-b125-bbd022730ca3\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e381e2c-372a-45a4-8dfb-a7c2074d2b16","direction":"outgoing","index":145340,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.546-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=e2804061-6fff-4664-b125-bbd022730ca3\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"39e7ec61-0b6e-46ff-b425-9a0da21305bd","direction":"outgoing","index":145341,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.556-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"d9aa81fd-8b52-4e06-921a-fadb71977c24","direction":"outgoing","index":145342,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1944-02-11T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"479736e7-36ec-4616-ba25-82d02a544555","direction":"outgoing","index":145343,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.575-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1944-02-10T19:33:18-04:00\u0026patient=355","verb":"get"},{"id":"ecc0ecc0-63cf-4b99-9e19-6fcb8cbd38fa","direction":"outgoing","index":145344,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.584-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"61c61f9d-a410-4f25-b0d1-fe41007c69fe","direction":"outgoing","index":145345,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"9db7a492-43ba-4059-967f-fc38868d31b4","direction":"outgoing","index":145346,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.605-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee748e0a-7f55-4f99-82ec-1d272d59326b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"040a42a3-9881-476c-8f2f-ad6906e79cca","direction":"outgoing","index":145347,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=ee748e0a-7f55-4f99-82ec-1d272d59326b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9f7e2ad4-703c-4450-8ee7-c071806ef780","direction":"outgoing","index":145348,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.624-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1940-10-04T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"5e2c1e5c-6ce7-43d9-ad8f-c9b2b1dc89d7","direction":"outgoing","index":145349,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.633-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb183cd8-a75b-4b7b-b055-8a0dfcb31238\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36ade5dc-5581-4a8a-bbcd-1a2c667b6feb","direction":"outgoing","index":145350,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.643-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=eb183cd8-a75b-4b7b-b055-8a0dfcb31238\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f33d7004-b227-4bbd-b46f-e29748d1da1d","direction":"outgoing","index":145351,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.652-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"d4b92710-090c-4d29-b649-59aaedd35f81","direction":"outgoing","index":145352,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.660-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1940-10-06T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6a3d6606-9b21-4505-984d-4b45f4091d8a","direction":"outgoing","index":145353,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.669-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1940-10-05T00:00:00%2B00:00\u0026patient=355","verb":"get"},{"id":"6e5f1de7-7724-48bc-941c-c9f5255ad68c","direction":"outgoing","index":145354,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.678-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"b21a53a0-97e7-4bca-9630-7fb6a9a323a0","direction":"outgoing","index":145355,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.689-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=gt1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"faccd19a-4eae-40d4-bbe4-d07fe43ea354","direction":"outgoing","index":145356,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=80d5bd29-c14e-4664-875d-4e63e403704e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"998a961a-371b-4021-a8d5-638cfc03b186","direction":"outgoing","index":145357,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=ge1983-03-16T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"30e30324-a9d2-4ede-9577-14a9dbd96251","direction":"outgoing","index":145358,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.717-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=dc9f3da4-343d-4db1-b1fc-65cd7c8a8e5d\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d0f4945a-8d9f-4407-97ab-83a9936b6822","direction":"outgoing","index":145359,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=lt1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"ca7056c7-17af-47ba-b1a6-cfc8b155bba8","direction":"outgoing","index":145360,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=af6506b9-bb72-4f8c-a590-9661bfbfd252\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2625ef94-925b-4a36-be72-9f57661c4560","direction":"outgoing","index":145361,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.749-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026date=le1983-03-18T18:33:18-05:00\u0026patient=355","verb":"get"},{"id":"d2933d65-9172-4131-949b-99d481d3ae0f","direction":"outgoing","index":145362,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.758-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=29c2c771-f072-4a6a-8d2a-ea9977e73e04\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ddb8519b-8306-480a-a79a-8ea109c99d0c","direction":"outgoing","index":145363,"result_id":"a8f78923-22c9-4471-a95f-484f4e96de79","status":200,"timestamp":"2026-05-22T21:19:14.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026date=1983-03-17T18:33:18-05:00\u0026patient=355","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_patient_category_date_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:12.888-04:00"},{"id":"141c99a6-c475-4f36-864d-6ed25167c9d3","created_at":"2026-05-22T21:19:28.795-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"23c11438-ab61-462f-8ca4-9228f663e743","direction":"outgoing","index":142615,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.220-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"6b682127-e53e-4658-aa8e-713ad87748da","direction":"outgoing","index":142616,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"1c638932-2bd5-4571-8897-36971bb14bc9","direction":"outgoing","index":142617,"result_id":"3289e6fa-4203-4b80-b5e1-a5a04a122667","status":200,"timestamp":"2026-05-22T21:08:24.302-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"55c3deab-56c3-4275-9236-70ab4ba25132","direction":"outgoing","index":142623,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.418-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"e80d7c67-32ba-433c-a61c-aa6fd7d87077","direction":"outgoing","index":142625,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.466-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"3fa301f3-2924-4c9b-8389-aa6d2aec31ca","direction":"outgoing","index":142626,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.482-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"18628b98-cee4-4c71-9d75-bc2afca79929","direction":"outgoing","index":142627,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.495-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"af104007-3f40-4991-9cd1-b0c4421c68fa","direction":"outgoing","index":142628,"result_id":"46867c45-ec6e-4f78-92ef-df6997ebd609","status":200,"timestamp":"2026-05-22T21:08:29.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"},{"id":"e42f3709-b9cf-4bec-aebe-c155ca764153","direction":"outgoing","index":142678,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.668-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"2d0b1eae-a9f0-4d5e-aa6a-2259a5c61fac","direction":"outgoing","index":142680,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"a1f8a0b3-2554-4350-b205-db7c043c0356","direction":"outgoing","index":142681,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"098de892-18b5-4862-9da5-abb63079a857","direction":"outgoing","index":142682,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.727-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"46be6d29-76ac-4f60-afe3-a007ec3cf40e","direction":"outgoing","index":142683,"result_id":"308e0133-174c-4d0b-a3e3-92a4f6751d90","status":200,"timestamp":"2026-05-22T21:08:42.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"},{"id":"3460b691-5e7a-44c9-bea2-f57a5c95506b","direction":"outgoing","index":142733,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.286-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"3a466515-09a6-4d6f-88b4-0667e79bade3","direction":"outgoing","index":142735,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.337-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"6a2fc3b7-3312-4f33-a4b0-2120577a8004","direction":"outgoing","index":142736,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"393018d8-9a85-4f7c-835b-b13812d7c9ea","direction":"outgoing","index":142737,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.365-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"a5ea0900-44d5-4f6c-b9ce-397a1c3a8d9a","direction":"outgoing","index":142738,"result_id":"dac4f998-06f2-40ea-a719-be328ce3ed0b","status":200,"timestamp":"2026-05-22T21:08:53.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"},{"id":"62c62e6f-a508-40d2-8043-9448b381d816","direction":"outgoing","index":142786,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.375-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"a22bb776-b30e-422c-ad56-73e76f9d22da","direction":"outgoing","index":142787,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.402-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"53fa06ab-f471-4f3e-8b48-bf59e2877f1b","direction":"outgoing","index":142789,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"ce9f98ac-e92e-4711-86d6-56b9d1cdabfe","direction":"outgoing","index":142790,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.449-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"834afb02-5a60-4ac1-9e87-d39056f409b3","direction":"outgoing","index":142791,"result_id":"5b3733f2-1f5e-4bcb-9f6a-c0d11be4d53c","status":200,"timestamp":"2026-05-22T21:09:09.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"},{"id":"bec353b3-1f4f-4350-afcc-0e16a183a4de","direction":"outgoing","index":142911,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.763-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"ca697516-ef1c-4fb9-a6e9-87a05d0529af","direction":"outgoing","index":142912,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.781-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"727dc320-991e-47af-b070-21667cb9cc1b","direction":"outgoing","index":142913,"result_id":"fac12906-377b-4640-89b9-ad6e7372bcf0","status":200,"timestamp":"2026-05-22T21:09:35.796-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"},{"id":"3b9b6352-41ad-438e-bb40-0aadbb996204","direction":"outgoing","index":142970,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"8f006efb-26bc-4c89-b361-27c11e481271","direction":"outgoing","index":142971,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.943-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"7f81270e-c019-461f-9be6-6ed8a7ba4a95","direction":"outgoing","index":142973,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.971-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"68cdd464-6f20-479d-974d-75619134cff9","direction":"outgoing","index":142974,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.986-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"7b1c0531-d767-4345-acb5-b5e261b4e9e2","direction":"outgoing","index":142975,"result_id":"dd518067-8661-45d8-ae0c-d4d560448de3","status":200,"timestamp":"2026-05-22T21:10:13.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"},{"id":"e2a4c64d-492f-48d0-9a5c-bfcddd4196b2","direction":"outgoing","index":143011,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.299-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"4c8d8d8b-c7e3-4e52-9ddb-2e331a723525","direction":"outgoing","index":143012,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.329-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"b2594bc6-09a7-4466-82f3-6b8995ac711c","direction":"outgoing","index":143014,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.361-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"07cd08e7-89c7-4f60-89b7-bcdf8280bc9c","direction":"outgoing","index":143015,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"00c304cf-b556-426f-b141-9fd2b616996f","direction":"outgoing","index":143016,"result_id":"a65100c7-d694-4af1-a71f-26dcc2bcf22c","status":200,"timestamp":"2026-05-22T21:10:24.386-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"},{"id":"1104c4e0-0657-4dbd-9a6c-e647f4542402","direction":"outgoing","index":143052,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.583-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"f4d613cc-6720-49b2-961a-dbf8aa104892","direction":"outgoing","index":143053,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"f19c9168-7ae3-4f7a-bcc6-f693010382c5","direction":"outgoing","index":143055,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"03926bca-c5f2-41e4-b4ea-890f7a24a34c","direction":"outgoing","index":143056,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"9451b097-5537-447e-a93b-75d9fa63c62e","direction":"outgoing","index":143057,"result_id":"54ffe4de-d966-4a27-9d98-831cf6b631c1","status":200,"timestamp":"2026-05-22T21:10:32.671-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"},{"id":"371571be-9e39-4bf0-9d38-71b1c22a59bb","direction":"outgoing","index":143093,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.056-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"ed5bfc8f-3499-4b13-808a-57fc7f33d343","direction":"outgoing","index":143095,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.103-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"66c17173-392c-4508-ae8f-bd19feb55152","direction":"outgoing","index":143096,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.120-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"b665f13c-e8b5-44a9-a551-13845f5acc43","direction":"outgoing","index":143097,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.134-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"4dedb71c-4a9a-42ef-88a9-5f443f40b910","direction":"outgoing","index":143098,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.148-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"33b561b4-f009-4728-8f94-c67f33ffc0c9","direction":"outgoing","index":143099,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.162-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"8da8ecc4-2275-49ba-8c1d-a8eddd5fa2d3","direction":"outgoing","index":143100,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.178-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"cb13877f-107a-4471-8e9e-a4e3203172e6","direction":"outgoing","index":143101,"result_id":"619f4293-fe4d-48b2-9001-8ec7a7c5edf0","status":200,"timestamp":"2026-05-22T21:10:41.196-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"},{"id":"d7c8a670-a035-492e-b388-0d69aedde651","direction":"outgoing","index":143126,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"7ad05933-2b3b-49b4-926c-ef6037316b51","direction":"outgoing","index":143127,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5d477ebd-2af7-4aaa-b5c9-a37ecd38f9d9","direction":"outgoing","index":143128,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"96797fd8-2e2e-4520-9e82-d30ae18bdbfd","direction":"outgoing","index":143129,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.275-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d162c8cc-5aa4-424c-8d93-5cffe931c512\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"417104ad-efff-4fd9-a66f-b1a04aef2272","direction":"outgoing","index":143134,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"52a8dfc2-a985-4708-a9c6-89226615c01d","direction":"outgoing","index":143135,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.363-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fe771d0c-6c08-469c-aa2d-a19995cc9564","direction":"outgoing","index":143136,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.376-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0a05b0b9-ab87-4dd0-a95f-0529b05eb5f8","direction":"outgoing","index":143137,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6f4a841b-43cc-41e8-8911-5b65f997be68\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"44b40e60-b638-4e96-b4fb-0cd0c1e300ce","direction":"outgoing","index":143138,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.403-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"21bffd5c-ed25-4bce-b751-233688339eb2","direction":"outgoing","index":143139,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.414-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"196f90f3-bc5c-4b47-9eff-dcc780ee204a","direction":"outgoing","index":143140,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.426-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c06345e4-ddb1-4ced-b280-469e0cd9725b","direction":"outgoing","index":143141,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.440-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=6cb17c91-cf14-4aa3-ac66-04a1010043a9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af9f3c86-15ff-46d9-a49d-f4204fbb0e04","direction":"outgoing","index":143142,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.455-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"9e6f401a-954c-43e9-a5f6-3a9695a992a9","direction":"outgoing","index":143143,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.470-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8da7ea43-70f7-440d-9b44-bef2287de2b7","direction":"outgoing","index":143144,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.487-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1b7032b0-a76d-43f8-ad3f-b7e09eb22cc8","direction":"outgoing","index":143145,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.503-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e324b3c4-c9fe-4543-9ae4-1d2f5ea70355","direction":"outgoing","index":143146,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.517-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"17effb88-eaa4-4f56-a88d-3b8bd9211c07","direction":"outgoing","index":143147,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"120ab3f2-2198-46ca-b15f-d65d27973aa9","direction":"outgoing","index":143148,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7956b5e1-f882-4ce2-8509-8e2b9a3537f3","direction":"outgoing","index":143149,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.564-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac706351-6c2b-4092-adef-ae15aa9e0458","direction":"outgoing","index":143150,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.580-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1ce6834e-d8e5-407c-a6ac-808deb4c5a60","direction":"outgoing","index":143151,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.593-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=daa9e065-fd12-4f14-a2a3-4e2efc905f60\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3b48ae2e-88a1-438f-b384-1a4efb708fae","direction":"outgoing","index":143152,"result_id":"ac9587b3-94f6-40ad-bb05-dd849ac9f371","status":200,"timestamp":"2026-05-22T21:10:51.607-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"},{"id":"b4e76ae7-04ec-472b-981a-386aa59d3a35","direction":"outgoing","index":143242,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.140-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"c5ba4a34-bf00-40e9-9ceb-bdddeeae8622","direction":"outgoing","index":143244,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"70724910-bba3-4cd2-8bcd-6cc6e37063f2","direction":"outgoing","index":143245,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.195-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"4d1d3fea-0789-44f2-81e2-5181ad84531e","direction":"outgoing","index":143246,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"5f327329-aed8-4f72-a20b-37349f8d8417","direction":"outgoing","index":143247,"result_id":"66d3bf48-ec14-4487-aab0-33156389b010","status":200,"timestamp":"2026-05-22T21:11:18.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"},{"id":"cf4a0f64-0ef7-4a92-b14f-f2b812639fc2","direction":"outgoing","index":143295,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:28.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"26faf1c4-0fc8-4be8-bf9e-62ece9fdc9a6","direction":"outgoing","index":143297,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"90e4d0b5-2066-425e-9f7e-eabec0e2dd01","direction":"outgoing","index":143298,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.093-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"02c948b8-549f-4fbe-9bd0-4064f289f2d7","direction":"outgoing","index":143299,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"d4c1a708-9290-43b1-8ba8-37ed5897edfd","direction":"outgoing","index":143300,"result_id":"6835ddd8-e6c9-4c05-9d87-be80421bc42b","status":200,"timestamp":"2026-05-22T21:11:29.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"},{"id":"459775ff-516f-48e7-b2d4-64125e8935ab","direction":"outgoing","index":143322,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.435-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"e2855226-395f-46e2-af4d-0578bce678bd","direction":"outgoing","index":143323,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.475-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"38962e10-c591-4c51-904d-f51f3f584220","direction":"outgoing","index":143325,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"d88e5700-1236-4c76-8607-22bc0bb922e4","direction":"outgoing","index":143326,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.563-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"3f0378ad-946e-4c0e-8f0f-00c1b953e42a","direction":"outgoing","index":143327,"result_id":"113d3f2d-fdce-4781-82b8-4da55ed059fc","status":200,"timestamp":"2026-05-22T21:11:33.594-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"},{"id":"cb9a3daf-95fc-42e6-afcf-e59af56ed46e","direction":"outgoing","index":143361,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"2d062395-d011-4d19-92eb-e7d1b2bffcdf","direction":"outgoing","index":143362,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"03040903-c1f1-497b-a312-1a264f05a258","direction":"outgoing","index":143364,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.130-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"76311989-f70e-4472-9e6d-a4fdb30a2f6b","direction":"outgoing","index":143365,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"73e8fc9c-b7bc-4ca9-a85f-76e704825d08","direction":"outgoing","index":143366,"result_id":"cad6e668-1013-446c-a021-68248c60e156","status":200,"timestamp":"2026-05-22T21:11:44.158-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"},{"id":"d7311b8f-4358-4728-be64-df9b68da7b43","direction":"outgoing","index":143435,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"23ff6fef-60a8-40c5-898e-df1eac3d477a","direction":"outgoing","index":143436,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"cd1657a9-d4b4-4023-8661-422c75bebc3e","direction":"outgoing","index":143437,"result_id":"d6f0fcac-02c9-44aa-b03b-0594ab5b87a9","status":200,"timestamp":"2026-05-22T21:11:57.137-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"},{"id":"f4be9118-e3ee-4979-8be1-2ad5071e2056","direction":"outgoing","index":143445,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.886-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"f1bbe42f-7a45-4c76-a08e-3ca84c957d46","direction":"outgoing","index":143446,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.913-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"4a290697-d34c-41c0-b4d5-bd2e4cb8792e","direction":"outgoing","index":143448,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.945-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"f73385d3-dddd-4353-a329-7e1b50dd0743","direction":"outgoing","index":143449,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"0c962e63-23c2-4b9d-bb39-268563e822aa","direction":"outgoing","index":143450,"result_id":"20118640-ecd4-47b8-8bb1-90a13080b68f","status":200,"timestamp":"2026-05-22T21:11:59.987-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"},{"id":"c1ac860f-4478-4130-b3ce-1e33ede5a22a","direction":"outgoing","index":143530,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.342-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"3f87601d-b926-441c-8300-c5ed79d81db0","direction":"outgoing","index":143531,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"40e77c59-fcf6-4a05-b47c-7aaff8c446d9","direction":"outgoing","index":143532,"result_id":"357cd871-e1d5-4c47-8760-fd5e4b254b8a","status":200,"timestamp":"2026-05-22T21:12:15.371-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"140941c3-c43e-4803-9df5-0e56ab4174e2","direction":"outgoing","index":143557,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.899-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"26887f4e-73da-4bd6-8092-e41b5f4211f2","direction":"outgoing","index":143558,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.925-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"d2d0d9f2-f4db-41eb-9ce7-eed9819ff594","direction":"outgoing","index":143560,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.957-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"65d3f7c2-b8d1-44b9-8030-fb62a8519243","direction":"outgoing","index":143561,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.970-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"efe26882-f817-4070-908f-ae2729d7deab","direction":"outgoing","index":143562,"result_id":"3b2d4ce0-be2c-4eaa-ad69-511c17bd441c","status":200,"timestamp":"2026-05-22T21:12:21.985-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"},{"id":"7a4baabf-d356-4d87-b886-d9a1a20623cc","direction":"outgoing","index":143598,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.619-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"aa01796b-c23d-463c-95d4-1b38723d319f","direction":"outgoing","index":143599,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.642-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"cea0157d-0de1-4b7a-a9cc-40c90ec6787c","direction":"outgoing","index":143601,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"2dfc8a97-c6ab-4805-b8fd-2ef8c9e98db3","direction":"outgoing","index":143602,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.686-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"540c371a-cc2b-4c5f-8572-8a1110fd5591","direction":"outgoing","index":143603,"result_id":"11f486d6-7638-4b7e-be75-ba56ab7ce8cd","status":200,"timestamp":"2026-05-22T21:12:29.697-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"},{"id":"748cec38-d716-4376-b35e-351f921c7e1c","direction":"outgoing","index":143639,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.268-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"a1f7ce7e-1376-4742-a461-c6dabaca6a4c","direction":"outgoing","index":143640,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"5a25eceb-6862-425b-a7a8-f88f66ebf937","direction":"outgoing","index":143642,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.325-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"b8f3e113-d04b-4af4-b9fd-c72f28c0b395","direction":"outgoing","index":143643,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"d954f74a-ddd2-4011-b636-9c7d1572f1fa","direction":"outgoing","index":143644,"result_id":"9376ce30-9a8f-47af-ad85-0e992616cfea","status":200,"timestamp":"2026-05-22T21:12:37.354-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"},{"id":"0ccc57f2-1934-4a10-8a3b-edbc680d8bef","direction":"outgoing","index":145364,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.882-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"9c434838-a70e-468d-91ae-096a5de3bb98","direction":"outgoing","index":145365,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.891-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"8545a5b4-ccf0-4704-93a1-68bc973210b8","direction":"outgoing","index":145366,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.901-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"20e219ae-fae7-48af-b4aa-9cbbd33e833c","direction":"outgoing","index":145367,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.910-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=85","verb":"get"},{"id":"510098e6-5411-4c71-bde4-b55ed6c95793","direction":"outgoing","index":145368,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.920-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=Patient/85","verb":"get"},{"id":"bfb5c36b-6ce2-49c9-b0ba-7fd3e242808c","direction":"outgoing","index":145369,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.927-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C82810-3\u0026patient=85","verb":"get"},{"id":"4236d76b-315c-451c-9e17-7b4b4db2320c","direction":"outgoing","index":145370,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.937-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=355","verb":"get"},{"id":"e956aa55-d507-44ef-ba2f-982854888534","direction":"outgoing","index":145371,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.948-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=82810-3\u0026patient=907","verb":"get"},{"id":"955bf000-72ab-4f5e-922b-46c1c38e4457","direction":"outgoing","index":145372,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.955-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=85","verb":"get"},{"id":"c9a67fda-d493-4553-825a-ea424dcbe40e","direction":"outgoing","index":145373,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.966-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=Patient/85","verb":"get"},{"id":"2b9d2976-cf10-4e89-83cb-01b95a836c69","direction":"outgoing","index":145374,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C86645-9\u0026patient=85","verb":"get"},{"id":"17e15c63-b91e-45f8-81b1-6b880ae06e06","direction":"outgoing","index":145375,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=355","verb":"get"},{"id":"f140f48c-c8ea-4d0b-953a-e320ae602aa1","direction":"outgoing","index":145376,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:28.991-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=86645-9\u0026patient=907","verb":"get"},{"id":"700f1768-e63c-4137-8277-c8104a4500f0","direction":"outgoing","index":145377,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.000-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=85","verb":"get"},{"id":"f8b9017b-4212-4d88-99cc-78f3f063c5e9","direction":"outgoing","index":145378,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.010-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=Patient/85","verb":"get"},{"id":"0c0a20ef-1504-44ef-b209-3efcd45c9aa9","direction":"outgoing","index":145379,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.018-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C11341-5\u0026patient=85","verb":"get"},{"id":"f8b088d0-a681-4786-868d-95126c2042b5","direction":"outgoing","index":145380,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.028-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=355","verb":"get"},{"id":"c50a6f26-3961-4dec-b9bf-707144e4f6ea","direction":"outgoing","index":145381,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=11341-5\u0026patient=907","verb":"get"},{"id":"443b37eb-1704-4a44-b709-260754125de1","direction":"outgoing","index":145382,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.044-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=85","verb":"get"},{"id":"27ec1fb5-428b-427c-80ca-d23f4dfddd5d","direction":"outgoing","index":145383,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.053-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=355","verb":"get"},{"id":"c6d8888a-813d-445d-a951-c35467cb66e8","direction":"outgoing","index":145384,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.062-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=Patient/355","verb":"get"},{"id":"175ea931-1777-4d49-8cbb-19e4463ffeeb","direction":"outgoing","index":145385,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.071-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9279-1\u0026patient=355","verb":"get"},{"id":"1ec08fbe-adc4-48a4-8d55-79631dd51ea8","direction":"outgoing","index":145386,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9279-1\u0026patient=907","verb":"get"},{"id":"e73cde64-2f42-478c-b8a3-4e20fef80222","direction":"outgoing","index":145387,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.089-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"20c42889-78bb-447a-90a9-9bc59358548d","direction":"outgoing","index":145388,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.099-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"adcc46d7-16b3-49ed-a778-1cf5a8030307","direction":"outgoing","index":145389,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.107-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=741062008\u0026patient=355","verb":"get"},{"id":"b7a06154-fee0-4512-8124-8af1aa999e76","direction":"outgoing","index":145390,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=85","verb":"get"},{"id":"1147dfe1-1bc4-4e5a-bac3-c706ef6faddf","direction":"outgoing","index":145391,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=355","verb":"get"},{"id":"9b37a80a-e537-4b9a-a928-e8abcd64d29f","direction":"outgoing","index":145392,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.135-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=Patient/355","verb":"get"},{"id":"f9395baa-dd67-4532-ba4c-e84042102e69","direction":"outgoing","index":145393,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8867-4\u0026patient=355","verb":"get"},{"id":"8f45f012-9375-472a-a7c1-8382258da2a9","direction":"outgoing","index":145394,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.155-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8867-4\u0026patient=907","verb":"get"},{"id":"c1d54a54-50c1-4968-8961-d1efb97ffccd","direction":"outgoing","index":145395,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.165-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=85","verb":"get"},{"id":"f66d5872-9944-432f-a60b-a967eb74a8ad","direction":"outgoing","index":145396,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.172-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=355","verb":"get"},{"id":"06325fe3-8ded-41a0-beef-67f4f0e9c282","direction":"outgoing","index":145397,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=Patient/355","verb":"get"},{"id":"b386428d-5a10-4384-a284-cf5e4a7a9456","direction":"outgoing","index":145398,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.192-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8310-5\u0026patient=355","verb":"get"},{"id":"c9704bb0-5c47-4fad-b82c-6f12a900e6e4","direction":"outgoing","index":145399,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.200-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8310-5\u0026patient=907","verb":"get"},{"id":"4fa2ed29-b72e-4812-9234-8edb9c0d70a9","direction":"outgoing","index":145400,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.208-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=85","verb":"get"},{"id":"8104ccac-81c4-4461-8da1-1552522bc8f5","direction":"outgoing","index":145401,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=355","verb":"get"},{"id":"d2d70933-bf5e-4aa6-8cb5-b5eb0ef9fcef","direction":"outgoing","index":145402,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.226-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=Patient/355","verb":"get"},{"id":"eeeed551-111e-413f-9b69-0a973eaf9327","direction":"outgoing","index":145403,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C77606-2\u0026patient=355","verb":"get"},{"id":"55440e08-51ca-4d2b-b47d-e0709835aceb","direction":"outgoing","index":145404,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.246-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=77606-2\u0026patient=907","verb":"get"},{"id":"3ff3c070-2a8b-44c1-b697-678169c7b6fa","direction":"outgoing","index":145405,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.256-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=85","verb":"get"},{"id":"a013e584-7b46-48cb-9af1-23fef5159b8d","direction":"outgoing","index":145406,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.267-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=Patient/85","verb":"get"},{"id":"56b8f5c9-d4ab-4fb2-8449-7bfab86c1848","direction":"outgoing","index":145407,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.277-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C2708-6\u0026patient=85","verb":"get"},{"id":"49805ce7-9996-4b61-89cc-8fbf03c9038d","direction":"outgoing","index":145408,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.285-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=85","verb":"get"},{"id":"ac49aa37-e95b-467e-87a2-8deffe20e7f5","direction":"outgoing","index":145409,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.295-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=355","verb":"get"},{"id":"c80ed3f7-77cc-4db0-9eca-a23cecd6f971","direction":"outgoing","index":145410,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=355","verb":"get"},{"id":"28295037-eaeb-4201-99ee-6bb75fd5bbaf","direction":"outgoing","index":145411,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.314-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59408-5\u0026patient=907","verb":"get"},{"id":"adc11550-6252-4ce8-9dca-02be42765903","direction":"outgoing","index":145412,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.326-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=2708-6\u0026patient=907","verb":"get"},{"id":"a01de4a0-e67b-4523-8149-714576bc627f","direction":"outgoing","index":145413,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=85","verb":"get"},{"id":"23ab6211-6009-4e49-9477-5608d1250cd3","direction":"outgoing","index":145414,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.347-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=Patient/85","verb":"get"},{"id":"7c976ad2-88ec-4017-a96a-b5a09b9a7330","direction":"outgoing","index":145415,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.357-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C72166-2\u0026patient=85","verb":"get"},{"id":"fcba7d1d-07fd-4a01-8d6c-3179306520b9","direction":"outgoing","index":145416,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.366-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=355","verb":"get"},{"id":"06a4bc8e-a0f2-421d-b91c-1806d8990e50","direction":"outgoing","index":145417,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.374-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=72166-2\u0026patient=907","verb":"get"},{"id":"397b3904-02f6-462e-9050-a2e9d45aadba","direction":"outgoing","index":145418,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.383-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=85","verb":"get"},{"id":"aeff8b61-4ab4-4c77-a382-f9082d872bec","direction":"outgoing","index":145419,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.391-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=Patient/85","verb":"get"},{"id":"036ffedf-6e20-4d0a-9ea6-c50e6e71ceb2","direction":"outgoing","index":145420,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C76690-7\u0026patient=85","verb":"get"},{"id":"17b6d4e5-4cb9-4fba-a8bc-31df2bf43762","direction":"outgoing","index":145421,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.408-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=355","verb":"get"},{"id":"ace0b7c0-5f88-481d-a243-689466292365","direction":"outgoing","index":145422,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.417-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=76690-7\u0026patient=907","verb":"get"},{"id":"88669885-df81-4cbd-8793-0ee24eb51d98","direction":"outgoing","index":145423,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.427-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=85","verb":"get"},{"id":"e1156106-7c90-4286-94b5-4347163339a4","direction":"outgoing","index":145424,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=Patient/85","verb":"get"},{"id":"6b21cde3-e9f4-4787-9cdf-9e77da94486c","direction":"outgoing","index":145425,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.447-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C9843-4\u0026patient=85","verb":"get"},{"id":"ef5f02bf-3ab2-49b6-a696-706d936912c0","direction":"outgoing","index":145426,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.456-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=355","verb":"get"},{"id":"fe6cd29e-c321-4a61-874b-8b64a67d0662","direction":"outgoing","index":145427,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.464-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=9843-4\u0026patient=907","verb":"get"},{"id":"f60ef1a1-3319-4d6f-b04e-e978950401c9","direction":"outgoing","index":145428,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=85","verb":"get"},{"id":"65897811-131e-4b0d-9542-dad26ef08424","direction":"outgoing","index":145429,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=355","verb":"get"},{"id":"3af613ad-2e01-400c-aa23-857b9f440ecd","direction":"outgoing","index":145430,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.491-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=Patient/355","verb":"get"},{"id":"2c0209a5-80c6-4106-bf96-9a9806e4389a","direction":"outgoing","index":145431,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.501-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8302-2\u0026patient=355","verb":"get"},{"id":"f3f2849c-8bb7-458f-8f7d-2939d4e62707","direction":"outgoing","index":145432,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.510-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8302-2\u0026patient=907","verb":"get"},{"id":"2bb70392-dd9a-469e-8efa-3348cb104043","direction":"outgoing","index":145433,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=85","verb":"get"},{"id":"2f248943-4fb8-4ebe-8e60-1800db196826","direction":"outgoing","index":145434,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.528-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=355","verb":"get"},{"id":"c1f4df42-0bc6-4903-8deb-29f29796b2a4","direction":"outgoing","index":145435,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.538-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=Patient/355","verb":"get"},{"id":"c247b452-713e-419d-8a5e-1a39028f945d","direction":"outgoing","index":145436,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C39156-5\u0026patient=355","verb":"get"},{"id":"a76f5a5d-9efb-4a9e-9b84-5803cbb5e8df","direction":"outgoing","index":145437,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=39156-5\u0026patient=907","verb":"get"},{"id":"a1eb7fc0-9a4f-477c-a680-25a69e0f631a","direction":"outgoing","index":145438,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=44250-9\u0026patient=85","verb":"get"},{"id":"6d432820-f1ca-486e-8c19-3299511ac520","direction":"outgoing","index":145439,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.579-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C44250-9\u0026patient=85","verb":"get"},{"id":"360e673c-ef87-4071-b721-d0146b37477f","direction":"outgoing","index":145440,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.590-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=63586-2\u0026patient=355","verb":"get"},{"id":"be5f1f9a-6074-401a-83b8-d05ce0d2d9e3","direction":"outgoing","index":145441,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.599-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=85","verb":"get"},{"id":"0ebfb880-52ec-440f-a5b6-cb9349215d91","direction":"outgoing","index":145442,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.608-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=355","verb":"get"},{"id":"abb0b559-d5f9-444f-b7eb-a1db10e4fd36","direction":"outgoing","index":145443,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.618-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=Patient/355","verb":"get"},{"id":"88ed3e54-da69-483b-9714-a0c999580be6","direction":"outgoing","index":145444,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.625-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C85354-9\u0026patient=355","verb":"get"},{"id":"5a467149-ebb5-45f7-af48-1c13b317532e","direction":"outgoing","index":145445,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.632-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=85354-9\u0026patient=907","verb":"get"},{"id":"e7c1dd5e-01fd-4b35-8841-655148983e8a","direction":"outgoing","index":145446,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.640-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=20454-5\u0026patient=85","verb":"get"},{"id":"7b2f5b45-bf5a-4117-b02e-8640ed248753","direction":"outgoing","index":145447,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.649-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C20454-5\u0026patient=85","verb":"get"},{"id":"bdd4b493-30da-4a17-9acf-24b0474f19ff","direction":"outgoing","index":145448,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=785-6\u0026patient=355","verb":"get"},{"id":"dd6d22d6-cbf2-4873-b258-f594b2cbbf14","direction":"outgoing","index":145449,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.666-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=85","verb":"get"},{"id":"ad712510-2db0-4ac0-9606-f772b227b9b2","direction":"outgoing","index":145450,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.675-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=355","verb":"get"},{"id":"2005a1e3-dd43-4c3c-b6d7-eee2d8c022ef","direction":"outgoing","index":145451,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.682-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=Patient/355","verb":"get"},{"id":"53f0a8ed-2a7d-4fc1-8c2a-98c8d9563900","direction":"outgoing","index":145452,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.691-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C59576-9\u0026patient=355","verb":"get"},{"id":"804dc1ad-2855-4ef6-9aad-4601e586a3ef","direction":"outgoing","index":145453,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.699-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=59576-9\u0026patient=907","verb":"get"},{"id":"bf7b1095-7082-442d-8836-5f6dc0461ed4","direction":"outgoing","index":145454,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.708-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=85","verb":"get"},{"id":"9dffacbf-3cbc-49b8-8706-3c9bec38d82e","direction":"outgoing","index":145455,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=355","verb":"get"},{"id":"985b19d3-bcb7-4e78-808c-a673062dcf50","direction":"outgoing","index":145456,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.725-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=Patient/355","verb":"get"},{"id":"76d8c7ce-63df-4a15-bf7d-5af33f31a44a","direction":"outgoing","index":145457,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.734-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C8289-1\u0026patient=355","verb":"get"},{"id":"44f575df-979e-48e8-8994-6404a562973f","direction":"outgoing","index":145458,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.742-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=8289-1\u0026patient=907","verb":"get"},{"id":"2072dfcd-52c9-49c3-9bd3-5376a60365d0","direction":"outgoing","index":145459,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.753-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=85","verb":"get"},{"id":"12a1c73a-922d-4099-9972-bcdb244d53a4","direction":"outgoing","index":145460,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.762-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=355","verb":"get"},{"id":"67ec428f-22a7-4648-af46-93dc7a9bfc74","direction":"outgoing","index":145461,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.773-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=Patient/355","verb":"get"},{"id":"92ad4927-aa6e-4464-98cd-bc14d5cc0f63","direction":"outgoing","index":145462,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.783-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=http://loinc.org%7C29463-7\u0026patient=355","verb":"get"},{"id":"7be7e7e8-4263-4d90-9393-1d28ef3ffbd1","direction":"outgoing","index":145463,"result_id":"141c99a6-c475-4f36-864d-6ed25167c9d3","status":200,"timestamp":"2026-05-22T21:19:29.792-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?code=29463-7\u0026patient=907","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_patient_code_granular_scope_search_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:28.795-04:00"},{"id":"26405c92-496e-4c16-823f-43fc39150aaa","created_at":"2026-05-22T21:19:31.572-04:00","inputs":[{"name":"received_scopes","value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"granular_scopes_2_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[{"id":"bcac1d20-e0e8-44b1-9cbb-9775a37f8664","direction":"outgoing","index":142591,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.021-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"f83ecd5a-2bdd-45c1-abbd-10041eae889f","direction":"outgoing","index":142593,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.057-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"afecd385-cb69-42cc-b986-441fb1504d36","direction":"outgoing","index":142594,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.072-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"aff98444-6771-4a03-80cd-54919b393c1a","direction":"outgoing","index":142595,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"0b2fb35b-a9f2-4452-8f58-e8ba3dd3d365","direction":"outgoing","index":142596,"result_id":"85ba61da-2c49-4cfe-a667-f805bebcfe18","status":200,"timestamp":"2026-05-22T21:08:21.098-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"5745fd30-e520-4bcf-b74a-03a54252310f","direction":"outgoing","index":142664,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"cd4cbcbc-b124-48cd-95bd-0751e42c61a0","direction":"outgoing","index":142665,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.498-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9e26d690-4d6d-4409-9c93-e3854ef031a8","direction":"outgoing","index":142666,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.514-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6210dcf7-606b-4fae-b912-5a743d4435fb","direction":"outgoing","index":142667,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.532-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"815666dd-41df-4897-9901-a84a8e6e542d","direction":"outgoing","index":142668,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.548-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1e0d7764-478a-4841-9da8-adc09b790b29","direction":"outgoing","index":142669,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"959f4f26-f6ef-4d4d-8d93-6298facd444d","direction":"outgoing","index":142670,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9d1b80dd-eb92-4f88-a8ef-973ef40f33f6","direction":"outgoing","index":142671,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"42ef2d32-2c43-4208-a573-32c580abdc8f","direction":"outgoing","index":142672,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.611-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3cb9f1d0-a814-4729-b9e3-3c6f9924b02f","direction":"outgoing","index":142673,"result_id":"2a31135d-5dc9-4014-a389-f7316057fbc8","status":200,"timestamp":"2026-05-22T21:08:40.627-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c1bb721-edf9-4266-9598-0693d5ffc425","direction":"outgoing","index":142719,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"059a0b3b-d4b2-4049-bf35-28b6dd7574a1","direction":"outgoing","index":142720,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.097-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb4672a8-9406-4daa-b7cc-e3fd7c27f860","direction":"outgoing","index":142721,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.117-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1dac884b-9dd9-4ccb-82d9-5b8e03169162","direction":"outgoing","index":142722,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9c6216ab-8a83-4a4a-8844-e50050ebd39d","direction":"outgoing","index":142723,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2f2ff6d3-a44d-4192-b091-81bceec696c9","direction":"outgoing","index":142724,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.170-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"425db202-cd36-4eca-b977-4ca977d00c74","direction":"outgoing","index":142725,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.185-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"18053de1-0eeb-41c8-88e8-dd070b174283","direction":"outgoing","index":142726,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.202-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6a8c2077-b9e2-4246-85bf-448894258687","direction":"outgoing","index":142727,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.217-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e0972690-2b92-4444-8efc-c4eadd6864dc","direction":"outgoing","index":142728,"result_id":"e6ca8a45-5e47-4066-ae58-11f35ef9e5b1","status":200,"timestamp":"2026-05-22T21:08:51.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8e8eed58-ee86-4905-9174-f6bd5dadf2b6","direction":"outgoing","index":142772,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.571-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"9ef3f8e8-f9e3-48a8-9739-b5b69e8b69d6","direction":"outgoing","index":142773,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.598-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a6dccb5f-802e-42d0-8c6f-b930dd3bc1f8","direction":"outgoing","index":142774,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.614-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dea0a695-3e62-4bbf-b43a-399856b7a44d","direction":"outgoing","index":142775,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.634-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f9cb5635-6614-4b1d-b3bb-25087edc66d5","direction":"outgoing","index":142776,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.650-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"083a559f-13fd-4887-966e-071329bbeba1","direction":"outgoing","index":142777,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.667-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"8363287c-3d86-4fb5-b43a-7d41facb7267","direction":"outgoing","index":142778,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.698-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9ca77962-f22c-4c78-a091-ba4706a4badf","direction":"outgoing","index":142779,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ab96f973-ca9c-4463-8a23-71000bce51dc","direction":"outgoing","index":142780,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8888fdec-defb-488e-a66a-5f72ee30fc09","direction":"outgoing","index":142781,"result_id":"bbbe5f0e-b7ac-4ed3-8ebc-6ce663402141","status":200,"timestamp":"2026-05-22T21:09:01.746-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b60528de-1874-4702-95a8-5284e5cb55d9\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d6855ee1-782e-47c7-96e5-4fbb30d3d5de","direction":"outgoing","index":142817,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"5391e6d0-8032-4dbd-b06b-002bed62f125","direction":"outgoing","index":142818,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.335-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58dcaba7-6f05-4df5-b06b-7efc5778e4cb","direction":"outgoing","index":142819,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"52de6d98-c2f1-4520-91d4-4c23b78160e6","direction":"outgoing","index":142820,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"418396cb-bf67-415e-86f7-96fd134dcb3c","direction":"outgoing","index":142821,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.380-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7a1d55d1-fe25-4dfd-8ca7-4db9b9bd55b9","direction":"outgoing","index":142822,"result_id":"f8f29d71-0d1b-4e09-8107-2efa79e241fa","status":200,"timestamp":"2026-05-22T21:09:19.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=7ae0687b-b7cb-433f-b105-6e11e83aca6e\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"63b598a3-6852-4ea0-b21c-24507a97257d","direction":"outgoing","index":142827,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.805-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=85","verb":"get"},{"id":"aad5e6ac-a1c0-4a2f-ba6a-5de9b87fdb2c","direction":"outgoing","index":142829,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.849-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=Patient/85","verb":"get"},{"id":"2a65687d-c556-400c-81e3-3d62c7a4e995","direction":"outgoing","index":142830,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.869-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"d70be5a5-daf0-42a0-b0dd-f3020ebbf857","direction":"outgoing","index":142831,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.885-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=85","verb":"get"},{"id":"8f83d094-9235-4b4f-8dbe-b0f83075eb95","direction":"outgoing","index":142832,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.900-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=85","verb":"get"},{"id":"1a7f6149-67c3-4281-a651-a611c298c786","direction":"outgoing","index":142833,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.915-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=85","verb":"get"},{"id":"2399c404-7eff-4ae4-9ba6-fd27e27efb5d","direction":"outgoing","index":142834,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.932-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"725d36c8-0dbc-4bff-b4a6-112f70176127","direction":"outgoing","index":142835,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2387874b-c764-4680-b5ed-8a768061cd73","direction":"outgoing","index":142836,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.976-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"58af7d25-b398-4222-8588-6e0e680aa899","direction":"outgoing","index":142837,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:29.989-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0054e5ef-b1d9-4249-9dcf-5ddec19af092","direction":"outgoing","index":142838,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.003-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=395a162e-1a67-453b-a976-a6cf3d89e2ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"36fa8689-0e3c-4535-97cc-ed358539d998","direction":"outgoing","index":142839,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.016-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"134a0e96-01bf-4419-a7ae-87661b28f0f2","direction":"outgoing","index":142840,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.030-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"03b7910a-db92-46d6-bed0-1c92a9361c0a","direction":"outgoing","index":142841,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.043-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"c400a2fd-60e5-4dfd-ba83-4bac1174c07b","direction":"outgoing","index":142842,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"de1c0fcd-2828-4611-a29b-241f076f8d5b","direction":"outgoing","index":142843,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.070-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"0c6f7170-cea9-4935-8649-74a74d9eaf34","direction":"outgoing","index":142844,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.084-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"9a261e52-0644-4140-b487-f7490a835024","direction":"outgoing","index":142845,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.095-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"d17f9d68-8b52-4922-9dc9-914e43a17afc","direction":"outgoing","index":142846,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.108-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"a8f2e0e0-008b-462a-9781-f5f50344c0c7","direction":"outgoing","index":142847,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.121-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=355","verb":"get"},{"id":"355d2bba-57b9-4071-af4a-7ba5ef865a01","direction":"outgoing","index":142848,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.133-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=355","verb":"get"},{"id":"feb51d0c-8693-4765-9694-b4a192f2ad51","direction":"outgoing","index":142849,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.145-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=355","verb":"get"},{"id":"34216cab-0337-4128-8baa-f66e404a816b","direction":"outgoing","index":142850,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.157-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=355","verb":"get"},{"id":"b437299a-2349-43b0-9c17-f083273e1524","direction":"outgoing","index":142851,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.169-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"8829186d-c81f-4a60-8abc-2e984fd64f16","direction":"outgoing","index":142852,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.180-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"e8e51374-0536-4572-935e-ffb965d49277","direction":"outgoing","index":142853,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d5031e7a-713a-4ca8-ad5f-b67756843cdb","direction":"outgoing","index":142854,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"910b9110-3d8e-4bac-af3e-245291968dd0","direction":"outgoing","index":142855,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.219-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"af3e5e5d-ee92-4a59-aa33-c8de29869a77","direction":"outgoing","index":142856,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.232-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"56d2d961-4b86-4fe1-aca6-394d1325ef98","direction":"outgoing","index":142857,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.245-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7321a724-b61f-4425-b03f-98ce7b3158eb","direction":"outgoing","index":142858,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.260-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3d3cdb25-0553-450d-8f5d-dc3e2c1cd319","direction":"outgoing","index":142859,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fb467770-0e11-45e8-b6aa-c3a2e3888ec1","direction":"outgoing","index":142860,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.288-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=2754d475-b7b3-4748-9e55-f4d2f8540f9b\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1168261a-65e3-4618-a964-32cd1c589388","direction":"outgoing","index":142861,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.300-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"83af2b56-11eb-4166-909f-b8a5e38bb488","direction":"outgoing","index":142862,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"40e61cf2-b007-4a36-ba0f-058d18dbf5ee","direction":"outgoing","index":142863,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.328-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=5fd3e52c-7fc6-4743-b3bb-29349e60a95c\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac70b927-f74c-42e6-9976-6fe9d5abdb87","direction":"outgoing","index":142864,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.340-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"01cb27a0-0f96-4a36-a9e5-6556dd89d119","direction":"outgoing","index":142865,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.351-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"57a73cf7-afe9-4e5e-b6ad-8714fb81b14f","direction":"outgoing","index":142866,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"5507c56e-1bbd-46ba-b745-51841d1346ef","direction":"outgoing","index":142867,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"cdc4e252-eddf-4986-a516-d7f703d5954a","direction":"outgoing","index":142868,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.390-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"718e59ba-68f2-4282-a46e-212d9ccfa415","direction":"outgoing","index":142869,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.401-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"06ee4a1c-edaa-4b70-bf17-2961bbe9f2e0","direction":"outgoing","index":142870,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.411-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"0c1eac7b-4371-46a2-8cb0-4aca93882247","direction":"outgoing","index":142871,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.425-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=sdoh\u0026patient=907","verb":"get"},{"id":"201d3b72-5d89-4f8d-9b6a-b7b6817af5cf","direction":"outgoing","index":142872,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.437-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=functional-status\u0026patient=907","verb":"get"},{"id":"4989779e-d416-4a1e-8643-37082af67b8d","direction":"outgoing","index":142873,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.450-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=disability-status\u0026patient=907","verb":"get"},{"id":"900c2893-8729-453b-8f70-3bea92512421","direction":"outgoing","index":142874,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.460-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=cognitive-status\u0026patient=907","verb":"get"},{"id":"ef4c0d66-fd28-4f3f-89fb-55d3e8b98282","direction":"outgoing","index":142875,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.473-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=907","verb":"get"},{"id":"30fd5fa9-dcb3-47d0-b978-50b1b8dcf838","direction":"outgoing","index":142876,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.483-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"05e3abb5-427c-4848-9cea-d02ef520b222","direction":"outgoing","index":142877,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.494-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"0252719c-3a56-4af4-a77b-6799508a785b","direction":"outgoing","index":142878,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.508-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"a08af27c-ef03-4432-be2b-54e765f1b389","direction":"outgoing","index":142879,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.520-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"4ed78294-c5e2-43a8-8791-81849dde7edd","direction":"outgoing","index":142880,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.533-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"33b9e429-7433-4fe4-85b0-995755404c25","direction":"outgoing","index":142881,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.545-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"acfc91e9-fb9f-4d1f-946e-f684ec9fa4d4","direction":"outgoing","index":142882,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.557-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"7796e6b9-4103-408b-a93a-45756565691c","direction":"outgoing","index":142883,"result_id":"f6fefb16-973c-491a-94e3-96c92c6637e6","status":200,"timestamp":"2026-05-22T21:09:30.568-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"3798cc83-f610-4e4d-9062-b125328ad246","direction":"outgoing","index":143001,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.701-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"ddf6d503-8548-421b-acc7-19f9c25e7dfc","direction":"outgoing","index":143002,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.714-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dffbf639-90da-4fde-ae92-1757f06b6ba7","direction":"outgoing","index":143003,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.728-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f90b213b-fc55-4318-8528-1661e28e1025","direction":"outgoing","index":143004,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.743-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"21d13d8b-a545-45b1-8272-1ecc44118ee6","direction":"outgoing","index":143005,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.757-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"916d5932-ef05-4d13-b047-d313ce2d999e","direction":"outgoing","index":143006,"result_id":"fe51ba20-3b12-4451-b545-7a8c49467e97","status":200,"timestamp":"2026-05-22T21:10:22.770-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fc3b4a2c-dbf8-47f4-8822-f995f6865719","direction":"outgoing","index":143042,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.008-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"f2c8fd07-7e93-4209-914c-1a4af74c589c","direction":"outgoing","index":143043,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.035-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6798f4e6-74f6-489d-85a6-e9dd116db298","direction":"outgoing","index":143044,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.052-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2de2265d-43a2-41f0-84b1-4c7d4120d867","direction":"outgoing","index":143045,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.067-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"8ff5ff1d-cce3-43c6-a80b-6bdd7c05603c","direction":"outgoing","index":143046,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.080-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"222c4580-20f7-4626-966b-430247aada28","direction":"outgoing","index":143047,"result_id":"ff699e23-702d-4c8f-842a-24b1a09db299","status":200,"timestamp":"2026-05-22T21:10:31.092-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"de91b9da-54a0-4e28-b784-b26c2cdb5065","direction":"outgoing","index":143083,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.921-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"583cfb1d-a97a-41a6-a451-4099aee6ef94","direction":"outgoing","index":143084,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.944-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f99d3fb8-c1de-4cf0-abeb-de4742cce31f","direction":"outgoing","index":143085,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.958-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=bb7a9368-7cf1-4ef8-b7d3-c84364663471\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"1a707e19-cee0-4615-a4e2-ff66c0a86310","direction":"outgoing","index":143086,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.973-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"a3faa2a0-19c7-4682-a46d-613ef8145356","direction":"outgoing","index":143087,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"90016b9a-87c7-42e8-8ab4-ea40a6c647c2","direction":"outgoing","index":143088,"result_id":"a06a01b3-32bc-493f-aafa-f4ee4975822e","status":200,"timestamp":"2026-05-22T21:10:38.999-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=d2b496bc-5dba-41be-b80f-55b5b09b484a\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8c7da6f5-2d26-498f-8051-bb6b6f33fd0c","direction":"outgoing","index":143117,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.747-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"e57da4e9-7854-4ed0-8179-66ec71142afa","direction":"outgoing","index":143118,"result_id":"f3e21823-894d-4835-bf72-434f274e20b7","status":200,"timestamp":"2026-05-22T21:10:43.764-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"6dd37b64-1140-4a55-bf7a-ad777e87fb07","direction":"outgoing","index":143206,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.941-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"c190d648-ee69-4691-93a3-3fa3414c23aa","direction":"outgoing","index":143207,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.961-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c1a9616-bc64-4b63-a367-56c8cd07b35d","direction":"outgoing","index":143208,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.984-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f5ed12c2-c3e1-4123-8208-d7bc3578b446","direction":"outgoing","index":143209,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:08.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"320c0779-ee08-4b19-ae7e-7fa6b324822e","direction":"outgoing","index":143210,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.012-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"eb5a6da2-f9d9-453b-9840-8e5f0a83c390","direction":"outgoing","index":143211,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.026-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"f65212b1-9d46-4a91-9ce2-f36412e9b9d8","direction":"outgoing","index":143212,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.039-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ba9b8ce1-196a-463b-839a-98d84285fe6d","direction":"outgoing","index":143213,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.055-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4d732ae7-bdd0-4b94-8613-a8cfea0ebb95","direction":"outgoing","index":143214,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.069-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"9b1155e4-bccc-47d4-b75e-4a24efd4cb3c","direction":"outgoing","index":143215,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.082-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a94b2656-081e-46e5-b502-6a9ce292ae7e","direction":"outgoing","index":143216,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.096-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=355","verb":"get"},{"id":"d7afa24d-07b3-4875-ba8b-6ffeda0e92e4","direction":"outgoing","index":143217,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.110-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b2f0516c-b6e2-4139-b7a7-1f8f83799004","direction":"outgoing","index":143218,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.126-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8652faf5-2c24-4144-ab0f-ad033b0c7583","direction":"outgoing","index":143219,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.138-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"f7334b6e-9bbf-4604-a9a3-736b254667c9","direction":"outgoing","index":143220,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.152-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"bd42ee37-49d7-4537-861c-46826f05ed99","direction":"outgoing","index":143221,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.167-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=50\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0c528a6c-3a27-42c4-9514-1b4c2caada2c","direction":"outgoing","index":143222,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.181-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=60\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"c514a5fc-9ae7-4804-b2f8-f26f6bb5dcf7","direction":"outgoing","index":143223,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.194-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=70\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3a475fa0-55d2-449e-ada9-accd13a250f5","direction":"outgoing","index":143224,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.206-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=80\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ac02c797-7553-47d0-b9b3-b643557249df","direction":"outgoing","index":143225,"result_id":"5aa1f62e-8757-4a83-bb4f-a79fe16624ab","status":200,"timestamp":"2026-05-22T21:11:09.221-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=fc25acc9-24d6-4665-94ea-f666661968cb\u0026_getpagesoffset=90\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3e211849-5ec8-4c60-a19c-0f39ce7648ae","direction":"outgoing","index":143281,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.163-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=social-history\u0026patient=85","verb":"get"},{"id":"269dce6b-1d91-4637-8767-ae0407ccbe3a","direction":"outgoing","index":143282,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.215-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"678a65a9-62f4-4fd5-b90e-9e9f4d86d7fd","direction":"outgoing","index":143283,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.252-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"004a733d-cb78-4261-a064-257d692a149b","direction":"outgoing","index":143284,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.284-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b4935508-bebb-4e82-b8f1-de969ed477fc","direction":"outgoing","index":143285,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.321-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=81fb04de-fc8a-4bcd-98d6-7940563743ac\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"76bc44b1-8465-487f-a01f-516e7841e6cb","direction":"outgoing","index":143286,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.364-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Csocial-history\u0026patient=85","verb":"get"},{"id":"ddd31f41-8374-414f-ab98-bbcc431f0b73","direction":"outgoing","index":143287,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.400-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0890eadd-c3cf-4d09-be83-b4b4514fc495","direction":"outgoing","index":143288,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.439-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3f236cb0-43e1-4ccd-b8d1-ed4b8c4bd311","direction":"outgoing","index":143289,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.465-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=30\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a511c836-7e8f-4b40-bd6f-168a85f9dae5","direction":"outgoing","index":143290,"result_id":"964e72e7-f278-49bd-9ba7-d026d3008996","status":200,"timestamp":"2026-05-22T21:11:27.497-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=87891da8-03b5-400b-b110-44f2463953ea\u0026_getpagesoffset=40\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"dfaa1c67-3557-49d4-a2d7-036442afceec","direction":"outgoing","index":143316,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.923-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"01fbca51-1882-4019-b251-c1affb902347","direction":"outgoing","index":143317,"result_id":"9c09ab91-cd83-4e5c-bcf4-5abeb7a5905b","status":200,"timestamp":"2026-05-22T21:11:31.946-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=85","verb":"get"},{"id":"73bbc96a-c71d-44d1-b539-9703d406993c","direction":"outgoing","index":143351,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.240-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"2ed9116f-6a36-40d5-90cb-d9458f148329","direction":"outgoing","index":143352,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.263-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"59e23804-c497-4e1b-9961-8846a3ccd39c","direction":"outgoing","index":143353,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.278-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fca5e202-30fe-4154-bc73-bfb409af69b8","direction":"outgoing","index":143354,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.291-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"da0c830e-1992-4755-81a8-859f54210011","direction":"outgoing","index":143355,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.303-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8293c640-908a-4488-aba7-da08ccd90992","direction":"outgoing","index":143356,"result_id":"107ba4d8-0774-405c-add5-dbe7337b0dfb","status":200,"timestamp":"2026-05-22T21:11:42.316-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"d62cca06-4753-4897-b7e9-7f78f1bfb8cb","direction":"outgoing","index":143392,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.182-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c66a764b-f53c-47bc-bb85-fb8c69dfdd96","direction":"outgoing","index":143393,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.207-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3278760d-05a2-48d9-8059-790d201dc634","direction":"outgoing","index":143394,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7c3e3186-7e80-44e7-80bf-4fd10fdcaef1","direction":"outgoing","index":143395,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"381d4e38-e7b7-44ab-a5b4-acfb20a6ce7e","direction":"outgoing","index":143396,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"094b12d7-4044-40f1-9e9e-35b6acec747f","direction":"outgoing","index":143397,"result_id":"67df9f2d-430d-4953-b864-5c006e24c298","status":200,"timestamp":"2026-05-22T21:11:50.266-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"2888c624-8708-45c8-8be6-f35f4beaefa0","direction":"outgoing","index":143402,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.304-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=85","verb":"get"},{"id":"e0d68b87-c737-441c-bc0f-3c29b4170cbf","direction":"outgoing","index":143404,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.346-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=Patient/85","verb":"get"},{"id":"423f521c-aae1-489b-858f-d194a7b415b3","direction":"outgoing","index":143405,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.359-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-tags%7Csdoh\u0026patient=85","verb":"get"},{"id":"dd10709c-312a-472c-bd03-4553f0134a4e","direction":"outgoing","index":143406,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.373-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=355","verb":"get"},{"id":"d9e9557b-eef7-46c8-8a73-2796b4fc61a5","direction":"outgoing","index":143407,"result_id":"28a27622-9f37-4b23-83a1-b51124d0b89e","status":200,"timestamp":"2026-05-22T21:11:52.387-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=survey\u0026patient=907","verb":"get"},{"id":"b6292381-c82e-496c-b5d6-5f8fa8dd1e57","direction":"outgoing","index":143476,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.512-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"c8dfe4a0-4ab4-46e8-a54b-9a7a77feb089","direction":"outgoing","index":143477,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.534-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b6dc0135-7cf5-4e32-910d-93a227d97a26","direction":"outgoing","index":143478,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.551-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"a330fc79-ada6-4dee-8860-5b18705806a3","direction":"outgoing","index":143479,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.566-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"ec12350e-acc1-492a-848c-884572d2bb2e","direction":"outgoing","index":143480,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.582-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"3867935f-5daa-4e85-b81d-510d2e873b4f","direction":"outgoing","index":143481,"result_id":"7b05f7f2-867a-4c87-8430-9c347fbf26ac","status":200,"timestamp":"2026-05-22T21:12:06.601-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"ecf9ddbb-d5dd-4ef1-9bb9-11963593e6b4","direction":"outgoing","index":143486,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.931-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=85","verb":"get"},{"id":"1ad5700c-23fc-4dbc-940b-44fb2d724bb6","direction":"outgoing","index":143488,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.983-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=Patient/85","verb":"get"},{"id":"01284cd7-1da7-44d8-a25c-dd5a1804309e","direction":"outgoing","index":143489,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:11.997-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Claboratory\u0026patient=85","verb":"get"},{"id":"02fe14e1-c137-47e6-a045-698acf4b166c","direction":"outgoing","index":143490,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.009-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=85","verb":"get"},{"id":"269abb6b-c41e-479a-a79e-6f54b0fc761d","direction":"outgoing","index":143491,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.020-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=85","verb":"get"},{"id":"ae73eef4-61df-4f41-b6d3-3660d0482d86","direction":"outgoing","index":143492,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.037-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=85","verb":"get"},{"id":"e0a6e5f0-2a1f-429a-b470-db5da84fa6b2","direction":"outgoing","index":143493,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.049-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=85","verb":"get"},{"id":"a048e08d-239c-4410-948a-16dfe29da2ff","direction":"outgoing","index":143494,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.063-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=85","verb":"get"},{"id":"6384b613-c355-4e84-828c-0488b1479d5e","direction":"outgoing","index":143495,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.076-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=85","verb":"get"},{"id":"b39dfaca-99e4-48e1-b0a6-dac9b5d1682b","direction":"outgoing","index":143496,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.087-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=355","verb":"get"},{"id":"557209dc-a060-4d44-a251-2cdab69a431c","direction":"outgoing","index":143497,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.102-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=355","verb":"get"},{"id":"b40761a6-4490-401a-b02b-db11f5b5432c","direction":"outgoing","index":143498,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.115-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=355","verb":"get"},{"id":"7090bab0-b328-4fea-81b6-5541174f8dca","direction":"outgoing","index":143499,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.128-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=355","verb":"get"},{"id":"3847f544-9e1d-45df-b6dc-a92eaca4ff20","direction":"outgoing","index":143500,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.139-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=355","verb":"get"},{"id":"e4a892d2-4739-45c2-a62a-45a1d35c7db3","direction":"outgoing","index":143501,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.153-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"d04b27ab-f599-4140-82cb-f73b3769caa3","direction":"outgoing","index":143502,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.171-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"b86583a4-71d4-436b-aa5b-481eab9c3423","direction":"outgoing","index":143503,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.186-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"4dc81c82-0b09-4e52-9c8d-17d087f29bb9","direction":"outgoing","index":143504,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.198-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=355","verb":"get"},{"id":"1265ff30-8a16-4d0a-ba92-0e4a82c11cb6","direction":"outgoing","index":143505,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.211-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=laboratory\u0026patient=907","verb":"get"},{"id":"1e5155aa-2678-4ae8-89f6-2f029d5a934e","direction":"outgoing","index":143506,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=exam\u0026patient=907","verb":"get"},{"id":"8b353425-c4bb-47fd-9022-f8dc6a98d977","direction":"outgoing","index":143507,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.237-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=therapy\u0026patient=907","verb":"get"},{"id":"6132079b-ffd8-432e-a768-0da095434ed0","direction":"outgoing","index":143508,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.250-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=imaging\u0026patient=907","verb":"get"},{"id":"5a8609a9-1ae0-4fe7-a375-afefb0cb4a06","direction":"outgoing","index":143509,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.261-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=procedure\u0026patient=907","verb":"get"},{"id":"956574b1-ef3f-4d7e-8583-4749bdc89fce","direction":"outgoing","index":143510,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.274-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=907","verb":"get"},{"id":"8c3ec7aa-4688-4ee4-8cec-f0bc55d33f88","direction":"outgoing","index":143511,"result_id":"2cc7ac1c-f960-4a2d-b8cb-916353da5422","status":200,"timestamp":"2026-05-22T21:12:12.289-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=activity\u0026patient=907","verb":"get"},{"id":"48b1797d-1521-4441-abcf-2b9e45078bd0","direction":"outgoing","index":143588,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.160-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"a4326098-4601-485d-94bd-b8e2e3698731","direction":"outgoing","index":143589,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.183-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"737b3999-a752-4c98-ae57-739b41fadce8","direction":"outgoing","index":143590,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.199-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"5f2e4c43-346e-4d50-b697-0a587e2fca78","direction":"outgoing","index":143591,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.212-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"781f6a73-0b6b-4aa8-9ce2-9c55f7d17a44","direction":"outgoing","index":143592,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.225-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"7665367d-3d30-4bcd-84bb-c1c3f6597daa","direction":"outgoing","index":143593,"result_id":"42fbd346-45a6-4e8f-87f3-d85274baf27e","status":200,"timestamp":"2026-05-22T21:12:28.238-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6bc42d96-48d4-4298-b26e-2a53a031ee27","direction":"outgoing","index":143629,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.673-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"e565cf2f-1921-4ea4-87db-a37d8f7e99e1","direction":"outgoing","index":143630,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.687-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"95426d4a-9020-44ae-9647-da7444aef23f","direction":"outgoing","index":143631,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.703-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=b9a1090e-5967-44c6-969e-e9ffb944e6e2\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"0b5b18c5-3d89-4ef9-a194-2cb7284ac2ad","direction":"outgoing","index":143632,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.716-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a82c0a3-5819-4f41-bd85-1b5bd33b99ff","direction":"outgoing","index":143633,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.730-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"53e4455d-c273-4e3b-ab58-7af46cd751a6","direction":"outgoing","index":143634,"result_id":"8959b8dd-3014-42cd-84f9-c9ffc0c56fd2","status":200,"timestamp":"2026-05-22T21:12:35.745-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=a626c4c7-72f3-46b2-a1ee-16b2e720332b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"939eec64-091f-46f5-b9a3-5a8fb826911a","direction":"outgoing","index":143670,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.313-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=vital-signs\u0026patient=355","verb":"get"},{"id":"88bc25d0-bf6a-475e-855b-8118b4810953","direction":"outgoing","index":143671,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.338-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"6d2ffc94-54e3-4504-8c76-20d7658e0b90","direction":"outgoing","index":143672,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.353-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=9a2286df-b6e0-4905-b3c9-16694c100130\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"8ceefd20-e371-4ba8-b1b5-033fadde57c7","direction":"outgoing","index":143673,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.367-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation?category=http://terminology.hl7.org/CodeSystem/observation-category%7Cvital-signs\u0026patient=355","verb":"get"},{"id":"7a561b33-ace9-4a12-bd7b-1fa681c20b70","direction":"outgoing","index":143674,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.379-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=10\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"fa537135-26a8-4bfe-a1da-3034d9dbff4f","direction":"outgoing","index":143675,"result_id":"bd226ca6-eadf-406d-bad8-3fe5a36ad343","status":200,"timestamp":"2026-05-22T21:12:47.392-04:00","url":"https://inferno.healthit.gov/reference-server/r4?_getpages=637d08ba-bf79-4002-b3ef-756cdf04549b\u0026_getpagesoffset=20\u0026_count=10\u0026_pretty=true\u0026_bundletype=searchset","verb":"get"},{"id":"003657b8-1822-47dd-baba-01684a9170a4","direction":"outgoing","index":145464,"result_id":"26405c92-496e-4c16-823f-43fc39150aaa","status":200,"timestamp":"2026-05-22T21:19:31.724-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b2a278de-75d5-42d0-9e56-cf1bcbd8c8fd","verb":"get"},{"id":"6c1e5e99-8478-4503-844b-daca5ef47185","direction":"outgoing","index":145465,"result_id":"26405c92-496e-4c16-823f-43fc39150aaa","status":200,"timestamp":"2026-05-22T21:19:31.767-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"2ddd73f8-40d8-4baf-bccb-897930c283d6","direction":"outgoing","index":145466,"result_id":"26405c92-496e-4c16-823f-43fc39150aaa","status":200,"timestamp":"2026-05-22T21:19:31.779-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/b1f3e1ca-1930-4843-a2fc-bc4e74d35d4b","verb":"get"},{"id":"1420b973-fbbe-41f5-8787-75b953f6ea0f","direction":"outgoing","index":145467,"result_id":"26405c92-496e-4c16-823f-43fc39150aaa","status":401,"timestamp":"2026-05-22T21:19:31.789-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Observation/8c376cb8-8406-48e1-9526-b237d3c53f7f","verb":"get"}],"result":"pass","test_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group-us_core_v610_Observation_granular_scope_read_test","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:31.572-04:00"},{"id":"95ee4199-12c8-4661-ad66-ecc33fad56a2","created_at":"2026-05-22T21:19:31.798-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","label":"SMART Credentials for Granular Scopes 2","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2-us_core_v610_observation_granular_scope_2_group","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:31.798-04:00"},{"id":"a0789b46-2222-4ec6-bfb6-c81d9350f50e","created_at":"2026-05-22T21:19:31.805-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:31.805-04:00"},{"id":"a8cbaf2c-b7a0-418e-8caa-774edfd94687","created_at":"2026-05-22T21:19:31.807-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:31.807-04:00"},{"id":"a9f81724-35e2-47ec-9acc-4fb2016c487c","created_at":"2026-05-22T21:19:31.810-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","test_suite_id":"us_core_v610","updated_at":"2026-05-22T21:19:31.810-04:00"},{"id":"ebaf16f7-60d4-4d4c-9097-052b03ff179c","created_at":"2026-05-22T21:19:31.811-04:00","inputs":[{"name":"received_scopes","label":"Received Scopes","description":null,"value":"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh","type":"text"},{"name":"patient_ids","label":"Patient IDs","description":"Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements","value":"85,355,907","type":"text"},{"name":"granular_scopes_2_auth_info","label":"SMART Credentials for Granular Scopes 2","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey patient/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"enabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"40f641a6-313c-4404-9556-0cb72fc2b553\",\"refresh_token\":\"2c059258-3e04-420a-a44d-bbd75cfb8eb7\",\"issue_time\":\"2026-05-22T21:17:06-04:00\",\"expires_in\":3600,\"name\":\"granular_scopes_2_auth_info\"}","type":"auth_info"},{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"us_core_v610-us_core_v610_smart_granular_scopes-Group02-us_core_v610_smart_granular_scopes_2","test_run_id":"f462abdc-b299-4571-a816-8499c93e1498","test_session_id":"4D4dxYfv9Vu","updated_at":"2026-05-22T21:19:31.811-04:00"}] \ No newline at end of file diff --git a/lib/us_core_test_kit/generated/v3.1.1/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v3.1.1/us_core_test_suite.rb index c4b020503..a38ecbc7f 100644 --- a/lib/us_core_test_kit/generated/v3.1.1/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v3.1.1/us_core_test_suite.rb @@ -66,7 +66,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -86,10 +87,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generated/v4.0.0/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v4.0.0/us_core_test_suite.rb index 8454e8ad5..e1ea8e201 100644 --- a/lib/us_core_test_kit/generated/v4.0.0/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v4.0.0/us_core_test_suite.rb @@ -68,7 +68,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -88,10 +89,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generated/v5.0.1/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v5.0.1/us_core_test_suite.rb index 6b7f4dfcc..72d63163d 100644 --- a/lib/us_core_test_kit/generated/v5.0.1/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v5.0.1/us_core_test_suite.rb @@ -78,7 +78,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -98,10 +99,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generated/v6.1.0/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v6.1.0/us_core_test_suite.rb index c41fc7a5a..d0b50aac2 100644 --- a/lib/us_core_test_kit/generated/v6.1.0/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v6.1.0/us_core_test_suite.rb @@ -85,7 +85,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [ @@ -119,10 +120,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generated/v7.0.0/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v7.0.0/us_core_test_suite.rb index ea27f3e87..a76df3344 100644 --- a/lib/us_core_test_kit/generated/v7.0.0/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v7.0.0/us_core_test_suite.rb @@ -91,7 +91,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -121,10 +122,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generated/v8.0.0/us_core_test_suite.rb b/lib/us_core_test_kit/generated/v8.0.0/us_core_test_suite.rb index 4bde2a630..d3b4b3af8 100644 --- a/lib/us_core_test_kit/generated/v8.0.0/us_core_test_suite.rb +++ b/lib/us_core_test_kit/generated/v8.0.0/us_core_test_suite.rb @@ -93,7 +93,8 @@ class USCoreTestSuite < Inferno::TestSuite /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -123,10 +124,13 @@ def self.metadata message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/generator/templates/suite.rb.erb b/lib/us_core_test_kit/generator/templates/suite.rb.erb index 755464b03..13320dee5 100644 --- a/lib/us_core_test_kit/generator/templates/suite.rb.erb +++ b/lib/us_core_test_kit/generator/templates/suite.rb.erb @@ -42,7 +42,8 @@ module USCoreTestKit /\A\S+: \S+: URL value '.*' does not resolve/, /\A\S+: \S+: No definition could be found for URL value '.*'/, %r{Observation.component\[\d+\].value.ofType\(Quantity\): The code provided \(http://unitsofmeasure.org#L/min\) was not found in the value set 'Vital Signs Units'}, # Known issue with the Pulse Oximetry Profile - %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)} + %r{Slice 'Observation\.value\[x\]:valueQuantity': a matching slice is required, but not found \(from (http://hl7\.org/fhir/StructureDefinition/bmi\|4\.0\.1|http://hl7\.org/fhir/StructureDefinition/bmi\%7C4\.0\.1)\)}, + %r{A definition for CodeSystem 'http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem' could not be found, so the code cannot be validated} # only logged the first DocumentReference validation ].freeze <% if version_specific_message_filters.empty? %> VERSION_SPECIFIC_MESSAGE_FILTERS = [].freeze @@ -104,10 +105,13 @@ module USCoreTestKit message_filters = VALIDATION_MESSAGE_FILTERS exclude_message do |message| - message_filters.any? { |filter| filter.match? message.message } end + validation_context do + snomedCT '731000124108' # explicit snomedCT expansion parameter + end + perform_additional_validation do |resource, profile_url| ProvenanceValidator.validate(resource) if resource.instance_of?(FHIR::Provenance) end diff --git a/lib/us_core_test_kit/reference_resolution_test.rb b/lib/us_core_test_kit/reference_resolution_test.rb index 21f074c39..840ea0bff 100644 --- a/lib/us_core_test_kit/reference_resolution_test.rb +++ b/lib/us_core_test_kit/reference_resolution_test.rb @@ -84,7 +84,7 @@ def unresolved_references(resources = []) found_one_reference = false resolve_one_reference = resources.any? do |resource| - value_found = resolve_path(resource, path).select { |v| v.is_a?(FHIR::Reference) } + value_found = resolve_path(resource, path).select { |value| value.is_a?(FHIR::Reference) } next if value_found.empty? found_one_reference = true diff --git a/us_core_test_kit.gemspec b/us_core_test_kit.gemspec index 9e1c7d90c..7905842ab 100644 --- a/us_core_test_kit.gemspec +++ b/us_core_test_kit.gemspec @@ -3,13 +3,13 @@ require_relative 'lib/us_core_test_kit/version' Gem::Specification.new do |spec| spec.name = 'us_core_test_kit' spec.version = USCoreTestKit::VERSION - spec.authors = ['Stephen MacVicar'] + spec.authors = ['Inferno Team'] spec.summary = 'US Core Inferno tests' spec.description = 'US Core Inferno tests' spec.homepage = 'https://github.com/inferno-framework/us-core-test-kit' spec.license = 'Apache-2.0' - spec.add_runtime_dependency 'inferno_core', '~> 1.2', '>= 1.2.2' - spec.add_runtime_dependency 'smart_app_launch_test_kit', '~> 1.0', '>= 1.0.1' + spec.add_runtime_dependency 'inferno_core', '~> 1.3', '>= 1.3.1' + spec.add_runtime_dependency 'smart_app_launch_test_kit', '~> 1.0', '>= 1.0.2' spec.add_runtime_dependency 'tls_test_kit', '~> 1.0', '>= 1.0.2' spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8' spec.add_development_dependency 'factory_bot', '~> 6.1' @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| spec.metadata['inferno_test_kit'] = 'true' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/us-core-test-kit' - spec.files = `[ -d .git ] && git ls-files -z lib config/presets LICENSE`.split("\x0") + spec.files = `[ -d .git ] && git ls-files -z lib config/presets execution_scripts LICENSE`.split("\x0") spec.require_paths = ['lib'] end